summaryrefslogtreecommitdiff
path: root/src/Plugins/Hotel
diff options
context:
space:
mode:
Diffstat (limited to 'src/Plugins/Hotel')
-rw-r--r--src/Plugins/Hotel/Front/Front.cpp7
-rw-r--r--src/Plugins/Hotel/Front/Front.h5
-rw-r--r--src/Plugins/Hotel/Front/FrontDef.cpp7
-rw-r--r--src/Plugins/Hotel/Front/FrontDef.h5
-rw-r--r--src/Plugins/Hotel/Front/FrontInfoDialog.cpp7
-rw-r--r--src/Plugins/Hotel/Front/FrontInfoDialog.h5
-rw-r--r--src/Plugins/Hotel/Front/FrontPlugin.cpp7
-rw-r--r--src/Plugins/Hotel/Front/FrontPlugin.h5
-rw-r--r--src/Plugins/Hotel/Kobeya/Kobeya.cpp7
-rw-r--r--src/Plugins/Hotel/Kobeya/Kobeya.h5
-rw-r--r--src/Plugins/Hotel/Kobeya/KobeyaDef.cpp7
-rw-r--r--src/Plugins/Hotel/Kobeya/KobeyaDef.h5
-rw-r--r--src/Plugins/Hotel/Kobeya/KobeyaPlugin.cpp7
-rw-r--r--src/Plugins/Hotel/Kobeya/KobeyaPlugin.h5
-rw-r--r--src/Plugins/Hotel/Mente/Mente.cpp7
-rw-r--r--src/Plugins/Hotel/Mente/Mente.h5
-rw-r--r--src/Plugins/Hotel/Mente/MenteDef.cpp7
-rw-r--r--src/Plugins/Hotel/Mente/MenteDef.h5
-rw-r--r--src/Plugins/Hotel/Mente/MentePlugin.cpp7
-rw-r--r--src/Plugins/Hotel/Mente/MentePlugin.h5
-rw-r--r--src/Plugins/Hotel/Obeya/Obeya.cpp7
-rw-r--r--src/Plugins/Hotel/Obeya/Obeya.h5
-rw-r--r--src/Plugins/Hotel/Obeya/ObeyaDef.cpp7
-rw-r--r--src/Plugins/Hotel/Obeya/ObeyaDef.h5
-rw-r--r--src/Plugins/Hotel/Obeya/ObeyaPlugin.cpp7
-rw-r--r--src/Plugins/Hotel/Obeya/ObeyaPlugin.h5
-rw-r--r--src/Plugins/Hotel/RMente/RMente.cpp7
-rw-r--r--src/Plugins/Hotel/RMente/RMente.h5
-rw-r--r--src/Plugins/Hotel/RMente/RMenteDef.cpp7
-rw-r--r--src/Plugins/Hotel/RMente/RMenteDef.h5
-rw-r--r--src/Plugins/Hotel/RMente/RMentePlugin.cpp7
-rw-r--r--src/Plugins/Hotel/RMente/RMentePlugin.h5
-rw-r--r--src/Plugins/Hotel/Single/Single.cpp7
-rw-r--r--src/Plugins/Hotel/Single/Single.h5
-rw-r--r--src/Plugins/Hotel/Single/SinglePlugin.cpp7
-rw-r--r--src/Plugins/Hotel/Single/SinglePlugin.h5
-rw-r--r--src/Plugins/Hotel/Suite/Suite.cpp7
-rw-r--r--src/Plugins/Hotel/Suite/Suite.h5
-rw-r--r--src/Plugins/Hotel/Suite/SuiteDef.cpp7
-rw-r--r--src/Plugins/Hotel/Suite/SuiteDef.h5
-rw-r--r--src/Plugins/Hotel/Suite/SuitePlugin.cpp7
-rw-r--r--src/Plugins/Hotel/Suite/SuitePlugin.h5
-rw-r--r--src/Plugins/Hotel/Twin/Twin.cpp7
-rw-r--r--src/Plugins/Hotel/Twin/Twin.h5
-rw-r--r--src/Plugins/Hotel/Twin/TwinDef.cpp7
-rw-r--r--src/Plugins/Hotel/Twin/TwinDef.h5
-rw-r--r--src/Plugins/Hotel/Twin/TwinPlugin.cpp7
-rw-r--r--src/Plugins/Hotel/Twin/TwinPlugin.h5
48 files changed, 288 insertions, 0 deletions
diff --git a/src/Plugins/Hotel/Front/Front.cpp b/src/Plugins/Hotel/Front/Front.cpp
new file mode 100644
index 0000000..b526da5
--- /dev/null
+++ b/src/Plugins/Hotel/Front/Front.cpp
@@ -0,0 +1,7 @@
+#include "Front.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Front/Front.h b/src/Plugins/Hotel/Front/Front.h
new file mode 100644
index 0000000..07d21fa
--- /dev/null
+++ b/src/Plugins/Hotel/Front/Front.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Front {
+};
diff --git a/src/Plugins/Hotel/Front/FrontDef.cpp b/src/Plugins/Hotel/Front/FrontDef.cpp
new file mode 100644
index 0000000..a2ca2b1
--- /dev/null
+++ b/src/Plugins/Hotel/Front/FrontDef.cpp
@@ -0,0 +1,7 @@
+#include "FrontDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Front/FrontDef.h b/src/Plugins/Hotel/Front/FrontDef.h
new file mode 100644
index 0000000..6e7efea
--- /dev/null
+++ b/src/Plugins/Hotel/Front/FrontDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class FrontDef {
+};
diff --git a/src/Plugins/Hotel/Front/FrontInfoDialog.cpp b/src/Plugins/Hotel/Front/FrontInfoDialog.cpp
new file mode 100644
index 0000000..35dbe2e
--- /dev/null
+++ b/src/Plugins/Hotel/Front/FrontInfoDialog.cpp
@@ -0,0 +1,7 @@
+#include "FrontInfoDialog.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Front/FrontInfoDialog.h b/src/Plugins/Hotel/Front/FrontInfoDialog.h
new file mode 100644
index 0000000..b5324d5
--- /dev/null
+++ b/src/Plugins/Hotel/Front/FrontInfoDialog.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class FrontInfoDialog {
+};
diff --git a/src/Plugins/Hotel/Front/FrontPlugin.cpp b/src/Plugins/Hotel/Front/FrontPlugin.cpp
new file mode 100644
index 0000000..5a0db52
--- /dev/null
+++ b/src/Plugins/Hotel/Front/FrontPlugin.cpp
@@ -0,0 +1,7 @@
+#include "FrontPlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Front/FrontPlugin.h b/src/Plugins/Hotel/Front/FrontPlugin.h
new file mode 100644
index 0000000..d078419
--- /dev/null
+++ b/src/Plugins/Hotel/Front/FrontPlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class FrontPlugin {
+};
diff --git a/src/Plugins/Hotel/Kobeya/Kobeya.cpp b/src/Plugins/Hotel/Kobeya/Kobeya.cpp
new file mode 100644
index 0000000..be6029d
--- /dev/null
+++ b/src/Plugins/Hotel/Kobeya/Kobeya.cpp
@@ -0,0 +1,7 @@
+#include "Kobeya.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Kobeya/Kobeya.h b/src/Plugins/Hotel/Kobeya/Kobeya.h
new file mode 100644
index 0000000..5949d41
--- /dev/null
+++ b/src/Plugins/Hotel/Kobeya/Kobeya.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Kobeya {
+};
diff --git a/src/Plugins/Hotel/Kobeya/KobeyaDef.cpp b/src/Plugins/Hotel/Kobeya/KobeyaDef.cpp
new file mode 100644
index 0000000..c0cdf58
--- /dev/null
+++ b/src/Plugins/Hotel/Kobeya/KobeyaDef.cpp
@@ -0,0 +1,7 @@
+#include "KobeyaDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Kobeya/KobeyaDef.h b/src/Plugins/Hotel/Kobeya/KobeyaDef.h
new file mode 100644
index 0000000..99ab512
--- /dev/null
+++ b/src/Plugins/Hotel/Kobeya/KobeyaDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class KobeyaDef {
+};
diff --git a/src/Plugins/Hotel/Kobeya/KobeyaPlugin.cpp b/src/Plugins/Hotel/Kobeya/KobeyaPlugin.cpp
new file mode 100644
index 0000000..e5a3b1d
--- /dev/null
+++ b/src/Plugins/Hotel/Kobeya/KobeyaPlugin.cpp
@@ -0,0 +1,7 @@
+#include "KobeyaPlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Kobeya/KobeyaPlugin.h b/src/Plugins/Hotel/Kobeya/KobeyaPlugin.h
new file mode 100644
index 0000000..b68c2a9
--- /dev/null
+++ b/src/Plugins/Hotel/Kobeya/KobeyaPlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class KobeyaPlugin {
+};
diff --git a/src/Plugins/Hotel/Mente/Mente.cpp b/src/Plugins/Hotel/Mente/Mente.cpp
new file mode 100644
index 0000000..cc536db
--- /dev/null
+++ b/src/Plugins/Hotel/Mente/Mente.cpp
@@ -0,0 +1,7 @@
+#include "Mente.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Mente/Mente.h b/src/Plugins/Hotel/Mente/Mente.h
new file mode 100644
index 0000000..2e0f942
--- /dev/null
+++ b/src/Plugins/Hotel/Mente/Mente.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Mente {
+};
diff --git a/src/Plugins/Hotel/Mente/MenteDef.cpp b/src/Plugins/Hotel/Mente/MenteDef.cpp
new file mode 100644
index 0000000..de7ee45
--- /dev/null
+++ b/src/Plugins/Hotel/Mente/MenteDef.cpp
@@ -0,0 +1,7 @@
+#include "MenteDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Mente/MenteDef.h b/src/Plugins/Hotel/Mente/MenteDef.h
new file mode 100644
index 0000000..d0db32e
--- /dev/null
+++ b/src/Plugins/Hotel/Mente/MenteDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class MenteDef {
+};
diff --git a/src/Plugins/Hotel/Mente/MentePlugin.cpp b/src/Plugins/Hotel/Mente/MentePlugin.cpp
new file mode 100644
index 0000000..f01a683
--- /dev/null
+++ b/src/Plugins/Hotel/Mente/MentePlugin.cpp
@@ -0,0 +1,7 @@
+#include "MentePlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Mente/MentePlugin.h b/src/Plugins/Hotel/Mente/MentePlugin.h
new file mode 100644
index 0000000..69678ab
--- /dev/null
+++ b/src/Plugins/Hotel/Mente/MentePlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class MentePlugin {
+};
diff --git a/src/Plugins/Hotel/Obeya/Obeya.cpp b/src/Plugins/Hotel/Obeya/Obeya.cpp
new file mode 100644
index 0000000..e7e234b
--- /dev/null
+++ b/src/Plugins/Hotel/Obeya/Obeya.cpp
@@ -0,0 +1,7 @@
+#include "Obeya.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Obeya/Obeya.h b/src/Plugins/Hotel/Obeya/Obeya.h
new file mode 100644
index 0000000..2378c9c
--- /dev/null
+++ b/src/Plugins/Hotel/Obeya/Obeya.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Obeya {
+};
diff --git a/src/Plugins/Hotel/Obeya/ObeyaDef.cpp b/src/Plugins/Hotel/Obeya/ObeyaDef.cpp
new file mode 100644
index 0000000..6ed0668
--- /dev/null
+++ b/src/Plugins/Hotel/Obeya/ObeyaDef.cpp
@@ -0,0 +1,7 @@
+#include "ObeyaDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Obeya/ObeyaDef.h b/src/Plugins/Hotel/Obeya/ObeyaDef.h
new file mode 100644
index 0000000..32663eb
--- /dev/null
+++ b/src/Plugins/Hotel/Obeya/ObeyaDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class ObeyaDef {
+};
diff --git a/src/Plugins/Hotel/Obeya/ObeyaPlugin.cpp b/src/Plugins/Hotel/Obeya/ObeyaPlugin.cpp
new file mode 100644
index 0000000..fceaddb
--- /dev/null
+++ b/src/Plugins/Hotel/Obeya/ObeyaPlugin.cpp
@@ -0,0 +1,7 @@
+#include "ObeyaPlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Obeya/ObeyaPlugin.h b/src/Plugins/Hotel/Obeya/ObeyaPlugin.h
new file mode 100644
index 0000000..a45510d
--- /dev/null
+++ b/src/Plugins/Hotel/Obeya/ObeyaPlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class ObeyaPlugin {
+};
diff --git a/src/Plugins/Hotel/RMente/RMente.cpp b/src/Plugins/Hotel/RMente/RMente.cpp
new file mode 100644
index 0000000..a7cc23b
--- /dev/null
+++ b/src/Plugins/Hotel/RMente/RMente.cpp
@@ -0,0 +1,7 @@
+#include "RMente.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/RMente/RMente.h b/src/Plugins/Hotel/RMente/RMente.h
new file mode 100644
index 0000000..d22554d
--- /dev/null
+++ b/src/Plugins/Hotel/RMente/RMente.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class RMente {
+};
diff --git a/src/Plugins/Hotel/RMente/RMenteDef.cpp b/src/Plugins/Hotel/RMente/RMenteDef.cpp
new file mode 100644
index 0000000..897056a
--- /dev/null
+++ b/src/Plugins/Hotel/RMente/RMenteDef.cpp
@@ -0,0 +1,7 @@
+#include "RMenteDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/RMente/RMenteDef.h b/src/Plugins/Hotel/RMente/RMenteDef.h
new file mode 100644
index 0000000..8ce9bd0
--- /dev/null
+++ b/src/Plugins/Hotel/RMente/RMenteDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class RMenteDef {
+};
diff --git a/src/Plugins/Hotel/RMente/RMentePlugin.cpp b/src/Plugins/Hotel/RMente/RMentePlugin.cpp
new file mode 100644
index 0000000..725e5b3
--- /dev/null
+++ b/src/Plugins/Hotel/RMente/RMentePlugin.cpp
@@ -0,0 +1,7 @@
+#include "RMentePlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/RMente/RMentePlugin.h b/src/Plugins/Hotel/RMente/RMentePlugin.h
new file mode 100644
index 0000000..255fefb
--- /dev/null
+++ b/src/Plugins/Hotel/RMente/RMentePlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class RMentePlugin {
+};
diff --git a/src/Plugins/Hotel/Single/Single.cpp b/src/Plugins/Hotel/Single/Single.cpp
new file mode 100644
index 0000000..ce450f9
--- /dev/null
+++ b/src/Plugins/Hotel/Single/Single.cpp
@@ -0,0 +1,7 @@
+#include "Single.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Single/Single.h b/src/Plugins/Hotel/Single/Single.h
new file mode 100644
index 0000000..fa32ae8
--- /dev/null
+++ b/src/Plugins/Hotel/Single/Single.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Single {
+};
diff --git a/src/Plugins/Hotel/Single/SinglePlugin.cpp b/src/Plugins/Hotel/Single/SinglePlugin.cpp
new file mode 100644
index 0000000..ed293c6
--- /dev/null
+++ b/src/Plugins/Hotel/Single/SinglePlugin.cpp
@@ -0,0 +1,7 @@
+#include "SinglePlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Single/SinglePlugin.h b/src/Plugins/Hotel/Single/SinglePlugin.h
new file mode 100644
index 0000000..8b56f0d
--- /dev/null
+++ b/src/Plugins/Hotel/Single/SinglePlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class SinglePlugin {
+};
diff --git a/src/Plugins/Hotel/Suite/Suite.cpp b/src/Plugins/Hotel/Suite/Suite.cpp
new file mode 100644
index 0000000..7d00a10
--- /dev/null
+++ b/src/Plugins/Hotel/Suite/Suite.cpp
@@ -0,0 +1,7 @@
+#include "Suite.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Suite/Suite.h b/src/Plugins/Hotel/Suite/Suite.h
new file mode 100644
index 0000000..e346913
--- /dev/null
+++ b/src/Plugins/Hotel/Suite/Suite.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Suite {
+};
diff --git a/src/Plugins/Hotel/Suite/SuiteDef.cpp b/src/Plugins/Hotel/Suite/SuiteDef.cpp
new file mode 100644
index 0000000..2322165
--- /dev/null
+++ b/src/Plugins/Hotel/Suite/SuiteDef.cpp
@@ -0,0 +1,7 @@
+#include "SuiteDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Suite/SuiteDef.h b/src/Plugins/Hotel/Suite/SuiteDef.h
new file mode 100644
index 0000000..e8ac37d
--- /dev/null
+++ b/src/Plugins/Hotel/Suite/SuiteDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class SuiteDef {
+};
diff --git a/src/Plugins/Hotel/Suite/SuitePlugin.cpp b/src/Plugins/Hotel/Suite/SuitePlugin.cpp
new file mode 100644
index 0000000..e5f15a0
--- /dev/null
+++ b/src/Plugins/Hotel/Suite/SuitePlugin.cpp
@@ -0,0 +1,7 @@
+#include "SuitePlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Suite/SuitePlugin.h b/src/Plugins/Hotel/Suite/SuitePlugin.h
new file mode 100644
index 0000000..0f94d7a
--- /dev/null
+++ b/src/Plugins/Hotel/Suite/SuitePlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class SuitePlugin {
+};
diff --git a/src/Plugins/Hotel/Twin/Twin.cpp b/src/Plugins/Hotel/Twin/Twin.cpp
new file mode 100644
index 0000000..d52bb84
--- /dev/null
+++ b/src/Plugins/Hotel/Twin/Twin.cpp
@@ -0,0 +1,7 @@
+#include "Twin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Twin/Twin.h b/src/Plugins/Hotel/Twin/Twin.h
new file mode 100644
index 0000000..e3b0d6e
--- /dev/null
+++ b/src/Plugins/Hotel/Twin/Twin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class Twin {
+};
diff --git a/src/Plugins/Hotel/Twin/TwinDef.cpp b/src/Plugins/Hotel/Twin/TwinDef.cpp
new file mode 100644
index 0000000..e338d3f
--- /dev/null
+++ b/src/Plugins/Hotel/Twin/TwinDef.cpp
@@ -0,0 +1,7 @@
+#include "TwinDef.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Twin/TwinDef.h b/src/Plugins/Hotel/Twin/TwinDef.h
new file mode 100644
index 0000000..c2deb51
--- /dev/null
+++ b/src/Plugins/Hotel/Twin/TwinDef.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class TwinDef {
+};
diff --git a/src/Plugins/Hotel/Twin/TwinPlugin.cpp b/src/Plugins/Hotel/Twin/TwinPlugin.cpp
new file mode 100644
index 0000000..f1101d1
--- /dev/null
+++ b/src/Plugins/Hotel/Twin/TwinPlugin.cpp
@@ -0,0 +1,7 @@
+#include "TwinPlugin.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#undef THIS_FILE
+static char THIS_FILE[] = __FILE__;
+#endif
diff --git a/src/Plugins/Hotel/Twin/TwinPlugin.h b/src/Plugins/Hotel/Twin/TwinPlugin.h
new file mode 100644
index 0000000..9f55bb8
--- /dev/null
+++ b/src/Plugins/Hotel/Twin/TwinPlugin.h
@@ -0,0 +1,5 @@
+#pragma once
+#include "common.h"
+
+class TwinPlugin {
+};