18 lines
306 B
C++
18 lines
306 B
C++
#ifndef __HOMEPAGE_H__
|
|
#define __HOMEPAGE_H__
|
|
|
|
#include <Wt/WContainerWidget.h>
|
|
|
|
class HomePage : public Wt::WContainerWidget {
|
|
public:
|
|
HomePage();
|
|
|
|
protected:
|
|
void greet();
|
|
|
|
private:
|
|
Wt::WLineEdit *m_nameEdit = nullptr;
|
|
Wt::WText *m_greeting = nullptr;
|
|
};
|
|
|
|
#endif // __HOMEPAGE_H__
|