Older/WebApplication/VisitorRecordsPage.h
amass f3d211a109
All checks were successful
Deploy / Build (push) Successful in 6m12s
add search for record.
2025-01-17 02:55:03 +08:00

22 lines
413 B
C++

#ifndef __VISITORRECORDSPAGE_H__
#define __VISITORRECORDSPAGE_H__
#include <Wt/WTemplate.h>
class Session;
class VisitorRecordTableModel;
// https://infima.dev/
class VisitorRecordsPage : public Wt::WTemplate {
public:
VisitorRecordsPage(Session &session);
protected:
void onDeleteButtonClicked();
private:
std::shared_ptr<VisitorRecordTableModel> m_model;
};
#endif // __VISITORRECORDSPAGE_H__