#ifndef __APPLICATION_H__ #define __APPLICATION_H__ #include #include namespace Core { class IoContext; } namespace Older { class Settings; class Application { public: Application(); boost::asio::io_context &ioContext(); int exec(); private: std::shared_ptr m_settings; std::shared_ptr m_ioContext; }; } // namespace Older #endif // __APPLICATION_H__