#include <statistics.h>
Public Member Functions | |
virtual | ~Statistics () |
Destructor. | |
Static Public Member Functions | |
static void | clear () |
static std::string | getStats () |
Returns the strings of the statistics. | |
Protected Member Functions | |
virtual std::string | getStat () const =0 |
Returns the statistics in string. | |
virtual Statistics & | operator= (const Statistics &) |
Equal Operator. | |
void | registerStats () |
Register a statistics. | |
Statistics () | |
The default constructor. | |
Statistics (const Statistics &) | |
Copy Constructor. | |
Static Private Attributes | |
static std::vector< Statistics * > | stat_vec_ |
Definition at line 48 of file statistics.h.
virtual Statistics::~Statistics | ( | ) | [inline, virtual] |
Destructor.
Definition at line 52 of file statistics.h.
Statistics::Statistics | ( | ) | [inline, protected] |
The default constructor.
Definition at line 67 of file statistics.h.
Statistics::Statistics | ( | const Statistics & | ) | [inline, protected] |
Copy Constructor.
Definition at line 72 of file statistics.h.
void Statistics::clear | ( | ) | [static] |
Reimplemented in Cloud, and Selection.
Definition at line 64 of file statistics.cpp.
virtual std::string Statistics::getStat | ( | ) | const [protected, pure virtual] |
Returns the statistics in string.
Implemented in Cloud, Selection, and CopyBuffer.
std::string Statistics::getStats | ( | ) | [static] |
Returns the strings of the statistics.
Definition at line 45 of file statistics.cpp.
virtual Statistics& Statistics::operator= | ( | const Statistics & | ) | [inline, protected, virtual] |
Equal Operator.
Definition at line 80 of file statistics.h.
void Statistics::registerStats | ( | ) | [protected] |
Register a statistics.
Definition at line 70 of file statistics.cpp.
std::vector< Statistics * > Statistics::stat_vec_ [static, private] |
Definition at line 95 of file statistics.h.