mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-13 11:50:31 +02:00
lets go with datamanager
This commit is contained in:
16
src/IntelliHelper/IntelliDatamanager.cpp
Normal file
16
src/IntelliHelper/IntelliDatamanager.cpp
Normal 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;
|
||||
}
|
||||
17
src/IntelliHelper/IntelliDatamanager.h
Normal file
17
src/IntelliHelper/IntelliDatamanager.h
Normal 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
|
||||
@@ -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 \
|
||||
|
||||
Reference in New Issue
Block a user