]> git.tdb.fi Git - builder.git/blobdiff - source/datacollection.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / datacollection.h
diff --git a/source/datacollection.h b/source/datacollection.h
deleted file mode 100644 (file)
index aeb270f..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef DATACOLLECTION_H_
-#define DATACOLLECTION_H_
-
-#include "filetarget.h"
-
-class DataTransform;
-
-class DataCollection: public FileTarget
-{
-private:
-       DataTransform &source;
-
-public:
-       DataCollection(Builder &, const Component &, DataTransform &);
-private:
-       static Msp::FS::Path generate_target_path(const Component &, const Msp::FS::Path &);
-
-public:
-       const char *get_type() const override { return "DataCollection"; }
-       DataTransform &get_source() const { return source; }
-
-private:
-       void find_dependencies() override;
-};
-
-#endif