#pragma once #include "Location.h" class LocationFactory { public: static Location * create_location(const char * name = "", const char * description = ""); private: LocationFactory() = delete; };