Older/WebApplication/HomePage.h

18 lines
306 B
C
Raw Normal View History

2024-12-02 01:18:57 +08:00
#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__