mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-13 03:40:31 +02:00
17 lines
338 B
C++
17 lines
338 B
C++
#ifndef INTELLIDATAMANAGER_H
|
|
#define INTELLIDATAMANAGER_H
|
|
|
|
#include <QFile>
|
|
#include <QDebug>
|
|
|
|
class PaintingArea;
|
|
|
|
namespace IntelliDatamanager{
|
|
|
|
bool loadProject(PaintingArea* Canvas, QString filePath = "unnamed.idf");
|
|
bool saveProject(PaintingArea* Canvas, QString filePath = "unnamed.idf");
|
|
|
|
}
|
|
|
|
#endif // INTELLIDATAMANAGER_H
|