diff options
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/CObjectQueue.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/T2DLL/CObjectQueue.h b/src/T2DLL/CObjectQueue.h new file mode 100644 index 0000000..9a87db2 --- /dev/null +++ b/src/T2DLL/CObjectQueue.h @@ -0,0 +1,12 @@ +#pragma once +#include "common.h" + +class CObjectQueue : public CList<void*, void*> { +public: + CObjectQueue(); + virtual ~CObjectQueue(); + virtual void AllClear(); + POSITION AddItem(void*); + virtual unsigned int GetItemCount(); + void RemoveItem(POSITION); +}; |