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