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