]> git.tdb.fi Git - builder.git/blobdiff - source/bootstrap/bootstrap.h
Update the bootstrap to work with recent changes
[builder.git] / source / bootstrap / bootstrap.h
diff --git a/source/bootstrap/bootstrap.h b/source/bootstrap/bootstrap.h
new file mode 100644 (file)
index 0000000..0b46621
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef BOOTSTRAP_H_
+#define BOOTSTRAP_H_
+
+#include <msp/builder/builder.h>
+#include <msp/core/application.h>
+
+class Bootstrap: public Msp::RegisteredApplication<Bootstrap>
+{
+private:
+       Logger logger;
+       Builder builder;
+
+public:
+       Bootstrap(int, char **);
+
+       int main() override;
+};
+
+#endif