aboutsummaryrefslogtreecommitdiff
path: root/backend/LocationFactory.h
blob: 2da590e0b10803bc122fb724cdd6e5687cf4c219 (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 char * name, const char * description);

private:
	LocationFactory() = delete;
};