aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/rawscanneddependency.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-02-12 14:53:42 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2018-02-16 11:34:20 +0000
commitbca41151f08e2b198bd6ac1da1603d6933c9166a (patch)
tree3d835697679d793ee5bc4434bf760929d50641fa /src/lib/corelib/buildgraph/rawscanneddependency.h
parent21c5ea0f79ad0e89eaa29ab5b91387b8454c4e3e (diff)
Get rid of redundancies between load() and store() methods
It's silly that we have to mention each serializable data member in both the load and the store methods. Instead, whenever possible, forward these methods to a template that calls the right function in the persistence backend based on its parameter. Change-Id: I00e2dee8cdf55405f447cee27190bc97df8673e3 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/lib/corelib/buildgraph/rawscanneddependency.h')
-rw-r--r--src/lib/corelib/buildgraph/rawscanneddependency.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/rawscanneddependency.h b/src/lib/corelib/buildgraph/rawscanneddependency.h
index ce0cab3b7..0cce8c55d 100644
--- a/src/lib/corelib/buildgraph/rawscanneddependency.h
+++ b/src/lib/corelib/buildgraph/rawscanneddependency.h
@@ -40,6 +40,8 @@
#ifndef QBS_RAWSCANNEDDEPENDENCY_H
#define QBS_RAWSCANNEDDEPENDENCY_H
+#include <tools/persistence.h>
+
#include <QString>
namespace qbs {
@@ -59,10 +61,14 @@ public:
bool isValid() const { return !m_fileName.isEmpty(); }
void load(PersistentPool &pool);
- void store(PersistentPool &pool) const;
+ void store(PersistentPool &pool);
private:
void setClean();
+ template<PersistentPool::OpType opType> void serializationOp(PersistentPool &pool)
+ {
+ pool.serializationOp<opType>(m_dirPath, m_fileName);
+ }
QString m_dirPath;
QString m_fileName;