]> git.tdb.fi Git - builder.git/blobdiff - source/tool.h
Have SubTool automatically pass calls to the parent tool
[builder.git] / source / tool.h
index 2f8c25b4f56aedc10a45090215995c64f5ba7410..41b8c5f24dd92387ae4bf454653c3984d34694b5 100644 (file)
@@ -134,6 +134,13 @@ protected:
        Tool &parent;
 
        SubTool(Tool &);
+
+public:
+       virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
+       virtual Target *create_source(const Msp::FS::Path &) const;
+       virtual Target *create_target(const std::list<Target *> &, const std::string & = std::string());
+       virtual Target *create_install(Target &) const;
+       virtual std::string create_build_signature(const BuildInfo &) const;
 };