22 lines
413 B
C++
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__
|