diff options
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2Name.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/T2DLL/T2Name.h b/src/T2DLL/T2Name.h new file mode 100644 index 0000000..290f842 --- /dev/null +++ b/src/T2DLL/T2Name.h @@ -0,0 +1,25 @@ +#pragma once +#include "common.h" + +class T2Name { +public: + T2Name(); + T2Name(T2Archive&); + T2Name(CString, T2Tenant*, int); + T2Name(CString, T2People*, int); + T2Name(CString, T2Mover*, int); + T2Name(CString, T2MoverModule*, int); + virtual ~T2Name(); + short GetName(CString&, unsigned int&); + void SetName(CString); + void MakeFullName(T2TowerDoc*, CString&); + int operator==(const CString&) const; + void Write(T2Archive&) const; + + int GetSortKey() {} + int GetType() {} + unsigned int GetID() {} + int IsFavorite() const {} + T2Name(const T2Name&) {} + T2Name& operator=(const T2Name&) {} +}; |