]> git.tdb.fi Git - builder.git/blob - source/compilecommandsjson.h
Mark overridden virtual functions as such
[builder.git] / source / compilecommandsjson.h
1 #ifndef COMPILECOMMANDSJSON_H_
2 #define COMPILECOMMANDSJSON_H_
3
4 #include "sourcepackage.h"
5 #include "filetarget.h"
6
7 class CompileCommandsJson: public FileTarget
8 {
9 private:
10         
11 public:
12         CompileCommandsJson(Builder &, const SourcePackage &);
13
14         const char *get_type() const override { return "CompileCommandsJson"; }
15
16 protected:
17         void find_dependencies() override;
18 };
19
20 #endif