aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/language/resolvedfilecontext.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/language/resolvedfilecontext.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/language/resolvedfilecontext.h')
-rw-r--r--src/lib/corelib/language/resolvedfilecontext.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/corelib/language/resolvedfilecontext.h b/src/lib/corelib/language/resolvedfilecontext.h
index 6e6601c97..41b708676 100644
--- a/src/lib/corelib/language/resolvedfilecontext.h
+++ b/src/lib/corelib/language/resolvedfilecontext.h
@@ -42,6 +42,7 @@
#include "forward_decls.h"
#include "filecontextbase.h"
+#include <tools/persistence.h>
namespace qbs {
namespace Internal {
@@ -60,11 +61,16 @@ public:
}
void load(PersistentPool &pool);
- void store(PersistentPool &pool) const;
+ void store(PersistentPool &pool);
private:
ResolvedFileContext() {}
ResolvedFileContext(const FileContextBase &ctx);
+
+ template<PersistentPool::OpType opType> void serializationOp(PersistentPool &pool)
+ {
+ pool.serializationOp<opType>(m_filePath, m_jsExtensions, m_searchPaths, m_jsImports);
+ }
};
bool operator==(const ResolvedFileContext &a, const ResolvedFileContext &b);