#include "LocationFactory.h" Location * LocationFactory::create_location(const char * name, const char * description) { return new Location(name, description); }