#ifndef CLIENTFILE_H #define CLIENTFILE_H #include #include namespace fs = std::filesystem; class ClientFile { public: ClientFile(); public: bool GetDirFiles(const std::string& path, DirFileInfoVec& vec); wxString GetLastErr() const; private: wxString lastErr_; }; #endif // CLIENTFILE_H