aboutsummaryrefslogtreecommitdiff
path: root/backend/LocationFactory.h
blob: 864962a128054a310a95d5f6c881c9e2a7430ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "Location.h"

class LocationFactory {
public:
	static Location * create_location(const String & name = "", const String & description = "");

private:
	LocationFactory() = delete;
};