]> git.tdb.fi Git - builder.git/blobdiff - source/datacollection.h
Mark overridden virtual functions as such
[builder.git] / source / datacollection.h
index 2f61b5f24b3167e62c72e85512f3e39e56c16031..aeb270f4f11b3a92c73e51102c781d3f70c58c71 100644 (file)
@@ -16,8 +16,11 @@ private:
        static Msp::FS::Path generate_target_path(const Component &, const Msp::FS::Path &);
 
 public:
-       virtual const char *get_type() const { return "DataCollection"; }
+       const char *get_type() const override { return "DataCollection"; }
        DataTransform &get_source() const { return source; }
+
+private:
+       void find_dependencies() override;
 };
 
 #endif