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