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

#include "Location.h"

class LocationFactory {
public:
	Location * create_location(const char * name, const char * description);
};