summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2RemoveFavoriteDialog.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2RemoveFavoriteDialog.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/T2DLL/T2RemoveFavoriteDialog.h b/src/T2DLL/T2RemoveFavoriteDialog.h
new file mode 100644
index 0000000..fbcebd3
--- /dev/null
+++ b/src/T2DLL/T2RemoveFavoriteDialog.h
@@ -0,0 +1,16 @@
+#pragma once
+#include "common.h"
+
+class T2RemoveFavoriteDialog {
+public:
+ T2RemoveFavoriteDialog();
+ virtual ~T2RemoveFavoriteDialog();
+protected:
+ virtual void OnT2Create();
+ virtual void CreateDlgItem(CTokenizer&, T2Dialog::T2DialogDef&);
+ virtual void OnT2Destroy();
+ virtual int OnT2DialogCommand(unsigned int, long);
+public:
+ void InitializeForRemovePeople(T2TowerDoc*);
+ void InitializeForRemoveTenant(T2TowerDoc*);
+};