]> git.tdb.fi Git - builder.git/blobdiff - source/vssolutiongenerator.h
Redesign how tools are run
[builder.git] / source / vssolutiongenerator.h
index 14eae5fd7ee10207f5218d7af4703d6811b2b110..ca332374f33875e04751fc1a5a28821897a723a2 100644 (file)
@@ -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 &);
-
-       private:
-               void main() override;
-       };
-
 public:
        VsSolutionGenerator(Builder &);
 
        Target *create_target(const std::vector<Target *> &, const std::string &) override;
-       Task *run(const Target &) const override;
+
+private:
+       static bool _run(const VsSolutionFile &);
 };
 
 #endif