lets go with datamanager

This commit is contained in:
Jan Schuffenhauer
2020-01-20 20:05:51 +01:00
parent 31553b2e94
commit ede3f512cd
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#include "IntelliDatamanager.h"
IntelliDatamanager::IntelliDatamanager()
{
}
void IntelliDatamanager::saveProject(PaintingArea* Canvas, QString filePath){
return;
}
void IntelliDatamanager::loadProject(PaintingArea* Canvas, QString filePath){
return;
}

View File

@@ -0,0 +1,17 @@
#ifndef INTELLIDATAMANAGER_H
#define INTELLIDATAMANAGER_H
#include "Layer/PaintingArea.h"
#include <QFile>
class IntelliDatamanager
{
private:
public:
void loadProject(PaintingArea* Canvas, QString filePath = "unnamed.idf");
void saveProject(PaintingArea* Canvas, QString filePath = "unnamed.idf");
IntelliDatamanager();
};
#endif // INTELLIDATAMANAGER_H

View File

@@ -22,6 +22,7 @@ SOURCES += \
Image/IntelliRasterImage.cpp \
Image/IntelliShapedImage.cpp \
IntelliHelper/IntelliColorPicker.cpp \
IntelliHelper/IntelliDatamanager.cpp \
IntelliHelper/IntelliRenderSettings.cpp \
IntelliHelper/IntelliToolsettings.cpp \
IntelliHelper/IntelliTriangulation.cpp \
@@ -43,6 +44,7 @@ HEADERS += \
Image/IntelliRasterImage.h \
Image/IntelliShapedImage.h \
IntelliHelper/IntelliColorPicker.h \
IntelliHelper/IntelliDatamanager.h \
IntelliHelper/IntelliRenderSettings.h \
IntelliHelper/IntelliToolsettings.h \
IntelliHelper/IntelliTriangulation.h \