21 lines
342 B
C++
21 lines
342 B
C++
#ifndef CLIENTFILE_H
|
|
#define CLIENTFILE_H
|
|
|
|
#include <InfoDirFile.hpp>
|
|
#include <filesystem>
|
|
|
|
namespace fs = std::filesystem;
|
|
class ClientFile
|
|
{
|
|
public:
|
|
ClientFile();
|
|
|
|
public:
|
|
bool GetDirFiles(const std::wstring& path, DirFileInfoVec& vec);
|
|
wxString GetLastErr() const;
|
|
|
|
private:
|
|
wxString lastErr_;
|
|
};
|
|
|
|
#endif // CLIENTFILE_H
|