]> git.tdb.fi Git - builder.git/blob - source/vssolutiongenerator.h
Inline simple constructors
[builder.git] / source / vssolutiongenerator.h
1 #ifndef VSSOLUTIONGENERATOR_H_
2 #define VSSOLUTIONGENERATOR_H_
3
4 #include "internaltask.h"
5 #include "tool.h"
6
7 class VsSolutionFile;
8
9 class VsSolutionGenerator: public Tool
10 {
11 private:
12         class Worker: public InternalTask::Worker
13         {
14         private:
15                 const VsSolutionFile ⌖
16
17         public:
18                 Worker(const VsSolutionFile &t): target(t) { }
19
20         private:
21                 void main() override;
22         };
23
24 public:
25         VsSolutionGenerator(Builder &b): Tool(b, "VSSG") { }
26
27         Target *create_target(const std::vector<Target *> &, const std::string &) override;
28         Task *run(const Target &) const override;
29 };
30
31 #endif