aboutsummaryrefslogtreecommitdiff
path: root/src/app/app.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/app.hpp')
-rw-r--r--src/app/app.hpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/app/app.hpp b/src/app/app.hpp
index d02c405..cafb864 100644
--- a/src/app/app.hpp
+++ b/src/app/app.hpp
@@ -2,4 +2,13 @@
#include "app/options.hpp"
-void app_start(const AppOptions &app_options);
+class App
+{
+public:
+ explicit App(const AppOptions &options);
+
+ void run();
+
+private:
+ const AppOptions &_options;
+};