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