00001 00030 #ifndef COUNTER_H 00031 #define COUNTER_H 00032 00033 class Counter { 00034 int fCount, fMult; 00035 public: 00036 Counter(); 00037 00039 bool Add(); 00040 00042 void Reset(int count = 0); 00043 00045 int GetCount(); 00046 }; 00047 00048 00049 #endif // COUNTER_H
1.3.9.1