diff options
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2OuterObjList.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/T2DLL/T2OuterObjList.h b/src/T2DLL/T2OuterObjList.h new file mode 100644 index 0000000..0ee652f --- /dev/null +++ b/src/T2DLL/T2OuterObjList.h @@ -0,0 +1,11 @@ +#pragma once +#include "common.h" + +class T2OuterObjList { +public: + ~T2OuterObjList(); + + T2OuterObjList() {} + T2OuterObjList(const T2OuterObjList&) {} + T2OuterObjList& operator=(const T2OuterObjList&) {} +}; |