41 lines
851 B
C++
41 lines
851 B
C++
#ifndef __WEBAPPLICATION_H__
|
|
#define __WEBAPPLICATION_H__
|
|
|
|
#include <memory>
|
|
#include "Singleton.h"
|
|
|
|
namespace Wt {
|
|
class WServer;
|
|
|
|
namespace Dbo {
|
|
class SqlConnectionPool;
|
|
}
|
|
|
|
namespace Auth {
|
|
class AuthService;
|
|
class PasswordService;
|
|
} // namespace Auth
|
|
|
|
}; // namespace Wt
|
|
|
|
class WebApplication {
|
|
friend class Amass::Singleton<WebApplication>;
|
|
public:
|
|
~WebApplication();
|
|
|
|
void initializeAuthenticationService();
|
|
const Wt::Auth::AuthService &authService();
|
|
const Wt::Auth::PasswordService &passwordService();
|
|
|
|
protected:
|
|
WebApplication();
|
|
|
|
private:
|
|
std::unique_ptr<Wt::WServer> m_server;
|
|
std::unique_ptr<Wt::Dbo::SqlConnectionPool> m_blogSqlConnectionPool;
|
|
|
|
std::unique_ptr<Wt::Auth::AuthService> m_authService;
|
|
std::unique_ptr<Wt::Auth::PasswordService> m_passwordService;
|
|
};
|
|
|
|
#endif // __WEBAPPLICATION_H__
|