Initial Commit
This commit is contained in:
21
FileHandler.h
Normal file
21
FileHandler.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef FILEHANDLER_H
|
||||
#define FILEHANDLER_H
|
||||
|
||||
#include <QString>
|
||||
|
||||
class Logic;
|
||||
|
||||
class FileHandler
|
||||
{
|
||||
public:
|
||||
FileHandler(Logic* logic);
|
||||
|
||||
bool exists(QString filename);
|
||||
bool save(QString filename);
|
||||
bool open(QString filename);
|
||||
|
||||
private:
|
||||
Logic* m_logic;
|
||||
};
|
||||
|
||||
#endif // FILEHANDLER_H
|
||||
Reference in New Issue
Block a user