21 lines
341 B
C
21 lines
341 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::string& path, DirFileInfoVec& vec);
|
||
|
wxString GetLastErr() const;
|
||
|
|
||
|
private:
|
||
|
wxString lastErr_;
|
||
|
};
|
||
|
|
||
|
#endif // CLIENTFILE_H
|