1 2 3 4 5 6
#include "LocationFactory.h" Location * LocationFactory::create_location(const String & name, const String & description) { return new Location(name, description); }