]> git.tdb.fi Git - builder.git/blob - source/clangtools.h
Use priorities to determine the default toolchain
[builder.git] / source / clangtools.h
1 #ifndef CLANGTOOLS_H_
2 #define CLANGTOOLS_H_
3
4 #include "toolchain.h"
5
6 class Architecture;
7 class Builder;
8
9 class ClangTools: public Toolchain
10 {
11 public:
12         ClangTools(Builder &, const Architecture &);
13
14         static int get_priority(const Architecture &);
15 };
16
17 #endif