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.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/artifact.h b/src/lib/corelib/buildgraph/artifact.h
index ca62daea7..1f7bbb520 100644
--- a/src/lib/corelib/buildgraph/artifact.h
+++ b/src/lib/corelib/buildgraph/artifact.h
@@ -62,9 +62,13 @@ public:
void accept(BuildGraphVisitor *visitor);
QString toString() const;
+ void addFileTag(const FileTag &t);
+ void removeFileTag(const FileTag &t);
+ void setFileTags(const FileTags &newFileTags);
+ const FileTags &fileTags() const { return m_fileTags; }
+
ArtifactSet childrenAddedByScanner;
QSet<FileDependency *> fileDependencies;
- FileTags fileTags;
TransformerPtr transformer;
PropertyMapPtr properties;
@@ -89,6 +93,8 @@ public:
private:
void load(PersistentPool &pool);
void store(PersistentPool &pool) const;
+
+ FileTags m_fileTags;
};
// debugging helper