]> git.tdb.fi Git - builder.git/blob - source/bootstrap/bootstrap.h
Update the bootstrap to work with recent changes
[builder.git] / source / bootstrap / bootstrap.h
1 #ifndef BOOTSTRAP_H_
2 #define BOOTSTRAP_H_
3
4 #include <msp/builder/builder.h>
5 #include <msp/core/application.h>
6
7 class Bootstrap: public Msp::RegisteredApplication<Bootstrap>
8 {
9 private:
10         Logger logger;
11         Builder builder;
12
13 public:
14         Bootstrap(int, char **);
15
16         int main() override;
17 };
18
19 #endif