X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fruntime.hpp;h=014cd3224239aa5c28fa0d537e6ef9446523b31b;hb=e53a0e2e711a7d8bd9b0ddacd1360aa14370643f;hp=01f6cdd2c9b51df11afd0c453bc3d3a1e76939c4;hpb=bd6bd2c875f4b6baef913e5315aa9f7e7cd7da7a;p=blank.git diff --git a/src/runtime.hpp b/src/runtime.hpp index 01f6cdd..014cd32 100644 --- a/src/runtime.hpp +++ b/src/runtime.hpp @@ -1,6 +1,8 @@ #ifndef BLANK_RUNTIME_HPP_ #define BLANK_RUNTIME_HPP_ +#include "app.hpp" + #include @@ -17,7 +19,7 @@ public: ERROR, }; - Runtime(); + Runtime() noexcept; void ReadArgs(int argc, const char *const *argv); @@ -28,7 +30,7 @@ private: Mode mode; std::size_t n; std::size_t t; - unsigned int seed; + Application::Config config; };