gui: add basic gui code.
This commit is contained in:
20
Util/LocalFile.h
Normal file
20
Util/LocalFile.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef LOCALFILE_H
|
||||
#define LOCALFILE_H
|
||||
|
||||
#include <InfoDirFile.h>
|
||||
|
||||
#include "Util.h"
|
||||
|
||||
class LocalFile : public DirFileHelper
|
||||
{
|
||||
public:
|
||||
LocalFile() = default;
|
||||
~LocalFile() override = default;
|
||||
|
||||
public:
|
||||
bool GetHome() override;
|
||||
bool GetDirFile(const QString& dir) override;
|
||||
bool GetDirFile(const QString& dir, DirFileInfoVec& vec);
|
||||
};
|
||||
|
||||
#endif // LOCALFILE_H
|
||||
Reference in New Issue
Block a user