mutilate/AgentStats.h
Jacob Leverich 386320d266 Initial check-in.
This is extracted from another git repo.  This is the first release, and
the prior commit history is not terribly interesting, so I'm not going
to bother using filter-branch to try to cleanly isolate the history for
this tool.

Cheers.
2012-08-23 14:30:32 -07:00

14 lines
204 B
C++

/* -*- c++ -*- */
#ifndef AGENTSTATS_H
#define AGENTSTATS_H
class AgentStats {
public:
uint64_t rx_bytes, tx_bytes;
uint64_t gets, sets, get_misses;
double start, stop;
};
#endif // AGENTSTATS_H