// -*- c++-mode -*- #ifndef OPERATION_H #define OPERATION_H #include using namespace std; class Operation { public: double start_time, end_time; enum type_enum { GET, SET }; type_enum type; string key; // string value; double time() const { return (end_time - start_time) * 1000000; } }; #endif // OPERATION_H