IntelliPhoto  1
IntelliDatamanager.h
Go to the documentation of this file.
1  #ifndef INTELLIDATAMANAGER_H
2 #define INTELLIDATAMANAGER_H
3 
4 #include <QFile>
5 #include <QDebug>
6 
7 class PaintingArea;
8 
9 namespace IntelliDatamanager {
10 
17 bool loadProject(PaintingArea* Canvas, QString filePath = "unnamed.idf");
18 
25 bool saveProject(PaintingArea* Canvas, QString filePath = "unnamed.idf");
26 
27 }
28 
29 #endif // INTELLIDATAMANAGER_H
IntelliDatamanager
Definition: IntelliDatamanager.h:9
IntelliDatamanager::loadProject
bool loadProject(PaintingArea *Canvas, QString filePath="unnamed.idf")
loadProject loads a project from a file, closes current project.
Definition: IntelliDatamanager.cpp:50
PaintingArea
The PaintingArea class manages the methods and stores information about the current painting area,...
Definition: PaintingArea.h:57
IntelliDatamanager::saveProject
bool saveProject(PaintingArea *Canvas, QString filePath="unnamed.idf")
saveProject saves the current project to a file.
Definition: IntelliDatamanager.cpp:4