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