From 2f2f94667b43d011d8d2953cf4c942eaa4dd3d6f Mon Sep 17 00:00:00 2001 From: stasysp Date: Wed, 22 Nov 2017 01:23:54 +0300 Subject: [PATCH] fix #include the same reason https://github.com/stasysp/InitialProject/pull/1 --- MainListener.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 MainListener.hpp diff --git a/MainListener.hpp b/MainListener.hpp new file mode 100644 index 0000000..37d7370 --- /dev/null +++ b/MainListener.hpp @@ -0,0 +1,13 @@ +#ifndef HIGHLOADCUP_MAINLISTENER_H +#define HIGHLOADCUP_MAINLISTENER_H + +#include +#include +#include + +class MainListener final : public Poco::Util::ServerApplication { + virtual int main(const std::vector& args) override; +}; + + +#endif // HIGHLOADCUP_MAINLISTENER_H