Older/WebApplication/VisitorRecordsPage.h

22 lines
413 B
C
Raw Normal View History

2024-11-27 23:50:04 +08:00
#ifndef __VISITORRECORDSPAGE_H__
#define __VISITORRECORDSPAGE_H__
2025-01-17 02:55:03 +08:00
#include <Wt/WTemplate.h>
2024-11-28 19:34:24 +08:00
class Session;
2024-11-29 20:01:10 +08:00
class VisitorRecordTableModel;
2024-11-27 23:50:04 +08:00
2024-11-28 19:34:24 +08:00
// https://infima.dev/
2025-01-17 02:55:03 +08:00
class VisitorRecordsPage : public Wt::WTemplate {
2024-11-28 19:34:24 +08:00
public:
VisitorRecordsPage(Session &session);
2024-11-29 20:01:10 +08:00
protected:
void onDeleteButtonClicked();
private:
std::shared_ptr<VisitorRecordTableModel> m_model;
2024-11-28 19:34:24 +08:00
};
2024-11-27 23:50:04 +08:00
#endif // __VISITORRECORDSPAGE_H__