8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 03:23:03 +01:00
This commit is contained in:
dimitr 2007-09-05 07:07:06 +00:00
parent f91b73bb70
commit 1bd3885359

View File

@ -60,7 +60,6 @@ public:
~RuntimeStatistics() {}
void setParent(RuntimeStatistics*);
void bumpValue(size_t);
SINT64 getValue(size_t) const;
static void bumpValue(thread_db*, size_t);
@ -70,6 +69,8 @@ private:
RuntimeStatistics(const RuntimeStatistics&);
RuntimeStatistics& operator= (const RuntimeStatistics&);
void bumpValue(size_t);
RuntimeStatistics* parent;
Firebird::Array<SINT64> values;
};