1 #ifndef DATACOLLECTION_H_
2 #define DATACOLLECTION_H_
4 #include "filetarget.h"
8 class DataCollection: public FileTarget
11 DataTransform &source;
14 DataCollection(Builder &, const Component &, DataTransform &);
16 static Msp::FS::Path generate_target_path(const Component &, const Msp::FS::Path &);
19 virtual const char *get_type() const { return "DataCollection"; }
20 DataTransform &get_source() const { return source; }
23 virtual void find_dependencies();