#ifndef __HELLO_H__ #define __HELLO_H__ #include class Session; class Hello : public Wt::WApplication { public: Hello(const Wt::WEnvironment &env, bool embedded); ~Hello(); protected: void greet(); void authEvent(); private: Wt::WLineEdit *m_nameEdit = nullptr; Wt::WText *m_greeting = nullptr; std::unique_ptr m_session; }; #endif // __HELLO_H__