#ifndef __WEBAPPLICATION_H__ #define __WEBAPPLICATION_H__ #include #include namespace Wt { class WServer; }; class WebApplication { public: WebApplication(); ~WebApplication(); protected: void run(); private: std::unique_ptr m_server; std::thread m_thread; }; #endif // __WEBAPPLICATION_H__