#ifndef _TIMESTAMP_
#define _TIMESTAMP_

#include "sys/sys"

class Timestamp {
public:
    Timestamp();
    Timestamp(int sec_since_epoch);
    double elapsed() const;
    string desc() const;

private:
    struct timeval tv;
};

#endif
