diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-05-12 12:47:58 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-05-12 12:47:58 +0200 |
commit | d55eb62bca39a4ef408ba3aceeb6f4c24699e8e8 (patch) | |
tree | 38cbe98725e63887423c88f8166301066ed74984 /src/project.h | |
parent | 8daea9831c1710a4f009a1837d86a5ed78d1ccb1 (diff) |
Add initial project serialisation/deserialisation.
Diffstat (limited to 'src/project.h')
-rw-r--r-- | src/project.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/project.h b/src/project.h index 02970c0..306bc17 100644 --- a/src/project.h +++ b/src/project.h @@ -60,10 +60,14 @@ public: QString getRawFileRoot() const; void setRawFileRoot(const QString& raw_file_root); + void reset(); + signals: void projectChanged(); private: + friend class ProjectSerialiser; + QString project_name; QString raw_file_root; |