aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-30 14:48:02 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-30 14:48:02 +0100
commit6dfa3fb34fb0a2ea028fd46e77296e26b092fb99 (patch)
tree51257e54561550c91dbec262fe143d4dbe41f059 /backend
parent862186ae7cbbd922057fa5f6b49509c36f9ade36 (diff)
use string instead of argument vector for commands
Diffstat (limited to 'backend')
-rw-r--r--backend/LocationFactory.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/backend/LocationFactory.h b/backend/LocationFactory.h
index ba34ff3..2da590e 100644
--- a/backend/LocationFactory.h
+++ b/backend/LocationFactory.h
@@ -5,5 +5,8 @@
class LocationFactory {
public:
static Location * create_location(const char * name, const char * description);
+
+private:
+ LocationFactory() = delete;
};