X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvssolutiongenerator.h;h=ca332374f33875e04751fc1a5a28821897a723a2;hb=1ed833343bc83b83c5f61cbfd74423bbba677a04;hp=68d581f501d171a63cf9d9a2451d67df6dcd2c68;hpb=451ef4f33b5a57dcb56bd7cb671bed359ac86247;p=builder.git diff --git a/source/vssolutiongenerator.h b/source/vssolutiongenerator.h index 68d581f..ca33237 100644 --- a/source/vssolutiongenerator.h +++ b/source/vssolutiongenerator.h @@ -1,31 +1,19 @@ #ifndef VSSOLUTIONGENERATOR_H_ #define VSSOLUTIONGENERATOR_H_ -#include "internaltask.h" #include "tool.h" class VsSolutionFile; class VsSolutionGenerator: public Tool { -private: - class Worker: public InternalTask::Worker - { - private: - const VsSolutionFile ⌖ - - public: - Worker(const VsSolutionFile &t): target(t) { } - - private: - void main() override; - }; - public: - VsSolutionGenerator(Builder &b): Tool(b, "VSSG") { } + VsSolutionGenerator(Builder &); Target *create_target(const std::vector &, const std::string &) override; - Task *run(const Target &) const override; + +private: + static bool _run(const VsSolutionFile &); }; #endif