#pragma once namespace Jenga{ namespace Common{ class Directory { std::string path; public: Directory( const std::string &path, bool isMake = false ); std::string GetFullPath( const std::string &relationPath ); }; }}