.

Dependents:  

Unwrapper.h

Committer:
altb
Date:
2019-02-25
Revision:
11:78e723ede0c6
Parent:
0:d784b08f51ff

File content as of revision 11:78e723ede0c6:

/*  
*/

using namespace std;

class Unwrapper
{
public:

    Unwrapper(double);
    
    double operator()(short inc) {
        return doStep(inc);
    }
    
    virtual     ~Unwrapper();
    
    void        reset(void);
    double       doStep(short inc);

private:

    long last_value;
    double inc2rad;

};