X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftoolchain.h;h=8449680409884d12d2801dc760212fa70e8db886;hb=HEAD;hp=2c0e3d2a84977933113c0447b00a5a5daae50c60;hpb=1dbeace0c44127bee08a3a8b231f4c8dcf707b2c;p=builder.git diff --git a/source/toolchain.h b/source/toolchain.h deleted file mode 100644 index 2c0e3d2..0000000 --- a/source/toolchain.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef TOOLCHAIN_H_ -#define TOOLCHAIN_H_ - -#include -#include - -class Tool; - -/** -A container for tools. Performs lookup based on tag or filename extension. -*/ -class Toolchain -{ -private: - typedef std::map 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