X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fruntime.hpp;fp=src%2Fruntime.hpp;h=0000000000000000000000000000000000000000;hb=b7d09e1e35ef90282c97509e0020b20db3c7ea9f;hp=014cd3224239aa5c28fa0d537e6ef9446523b31b;hpb=e53a0e2e711a7d8bd9b0ddacd1360aa14370643f;p=blank.git diff --git a/src/runtime.hpp b/src/runtime.hpp deleted file mode 100644 index 014cd32..0000000 --- a/src/runtime.hpp +++ /dev/null @@ -1,39 +0,0 @@ -#ifndef BLANK_RUNTIME_HPP_ -#define BLANK_RUNTIME_HPP_ - -#include "app.hpp" - -#include - - -namespace blank { - -class Runtime { - -public: - enum Mode { - NORMAL, - FRAME_LIMIT, - TIME_LIMIT, - FIXED_FRAME_LIMIT, - ERROR, - }; - - Runtime() noexcept; - - void ReadArgs(int argc, const char *const *argv); - - int Execute(); - -private: - const char *name; - Mode mode; - std::size_t n; - std::size_t t; - Application::Config config; - -}; - -} - -#endif