#pragma once #pragma warning(disable : 4996) #include #include #include #include namespace Jenga{ namespace Common{ using namespace std; class Directory { string path; public: Directory( const string &path ) : path( path ) { } string GetFullPath( const string &relationPath ); string GetRelationalPath( const string &fullPath ) { } }; }}