12345678910111213141516171819202122 |
- // MyTimer.h: interface for the MyTimer class.
- //
- //////////////////////////////////////////////////////////////////////
- class MyTimer
- {
- public:
- MyTimer(int id, int nTime);
- int m_id;
- int m_time;
- virtual ~MyTimer();
- };
|