mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 22:55:39 +00:00
15 lines
200 B
C
15 lines
200 B
C
|
#ifndef _FILEDATA_H_
|
||
|
#define _FILEDATA_H_
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
class FileData
|
||
|
{
|
||
|
public:
|
||
|
virtual bool isFolder() = 0;
|
||
|
virtual std::string getName() = 0;
|
||
|
virtual std::string getPath() = 0;
|
||
|
};
|
||
|
|
||
|
#endif
|