aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/artifact.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/buildgraph/artifact.h')
-rw-r--r--src/lib/corelib/buildgraph/artifact.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/corelib/buildgraph/artifact.h b/src/lib/corelib/buildgraph/artifact.h
index 2572a3b52..fce34b6ef 100644
--- a/src/lib/corelib/buildgraph/artifact.h
+++ b/src/lib/corelib/buildgraph/artifact.h
@@ -50,6 +50,7 @@
#include <QtCore/qstring.h>
+#include <functional>
#include <utility>
#include <vector>
@@ -123,8 +124,12 @@ public:
void load(PersistentPool &pool) override;
void store(PersistentPool &pool) override;
+ using Deregister = std::function<void(const Artifact *)>;
+ void setDeregister(const Deregister &deregister) { m_deregister = deregister; }
+
private:
FileTags m_fileTags;
+ Deregister m_deregister;
};
template<> inline QString Set<Artifact *>::toString(Artifact * const &artifact) const