aboutsummaryrefslogtreecommitdiff
path: root/backend/LocationFactory.cpp
blob: 106867d836b530faeee6326f1ae9381834f5d188 (plain)
1
2
3
4
5
6
#include "LocationFactory.h"

Location * LocationFactory::create_location(const String & name, const String & description) {
	return new Location(name, description);
}