1#pragma once 2using namespace std; 3 4class ConsoleSavePath 5{ 6private: 7 wstring path; 8 9public: 10 ConsoleSavePath( const wstring &newPath ) { path = newPath; } 11 12 wstring getName() const { return path; } 13 14 wstring operator+( wstring &b ) { return path + b; } 15};