]> git.tdb.fi Git - builder.git/blob - source/msvccompiler.h
Mark overridden virtual functions as such
[builder.git] / source / msvccompiler.h
1 #ifndef MSVCCOMPILER_H_
2 #define MSVCCOMPILER_H_
3
4 #include "tool.h"
5
6 class MicrosoftTools;
7
8 class MsvcCompiler: public Tool
9 {
10 private:
11         const MicrosoftTools &ms_tools;
12
13 public:
14         MsvcCompiler(Builder &, const Architecture &, const std::string &, const MicrosoftTools &);
15
16         Target *create_source(const Component &, const Msp::FS::Path &) const override;
17         Target *create_source(const Msp::FS::Path &) const override;
18         Target *create_target(const std::list<Target *> &, const std::string &) override;
19         std::string create_build_signature(const BuildInfo &) const override;
20
21 protected:
22         void do_prepare() override;
23
24 public:
25         Task *run(const Target &) const override;
26 };
27
28 #endif