aboutsummaryrefslogtreecommitdiff
path: root/backend/ObjectFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'backend/ObjectFactory.h')
-rw-r--r--backend/ObjectFactory.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/backend/ObjectFactory.h b/backend/ObjectFactory.h
new file mode 100644
index 0000000..f9a7301
--- /dev/null
+++ b/backend/ObjectFactory.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include "Object.h"
+
+class ObjectFactory {
+public:
+ static Object * create_object();
+
+private:
+ ObjectFactory() = delete;
+};
+