17 lines
No EOL
516 B
C++
17 lines
No EOL
516 B
C++
|
||
#pragma once
|
||
|
||
class CSessionWatcher
|
||
{
|
||
public:
|
||
CSessionWatcher();
|
||
~CSessionWatcher();
|
||
|
||
bool CheckWatchingItems();
|
||
bool AddWatchingItem();
|
||
bool DelWatchingItem();
|
||
|
||
private:
|
||
std::list <ULONG> m_WatchingList;
|
||
ULONG m_nLastAddingTime;
|
||
}; |