]> git.tdb.fi Git - builder.git/blobdiff - source/toolchain.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / toolchain.h
diff --git a/source/toolchain.h b/source/toolchain.h
deleted file mode 100644 (file)
index 2c0e3d2..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef TOOLCHAIN_H_
-#define TOOLCHAIN_H_
-
-#include <map>
-#include <string>
-
-class Tool;
-
-/**
-A container for tools.  Performs lookup based on tag or filename extension.
-*/
-class Toolchain
-{
-private:
-       typedef std::map<std::string, Tool *> ToolMap;
-
-       ToolMap tools;
-
-public:
-       ~Toolchain();
-
-       void add_tool(Tool *);
-       const Tool &get_tool(const std::string &) const;
-       const Tool *get_tool_for_suffix(const std::string &, bool = false) const;
-};
-
-#endif