15 lines
286 B
C++
15 lines
286 B
C++
#ifndef __VISITORRECORDSPAGE_H__
|
|
#define __VISITORRECORDSPAGE_H__
|
|
|
|
#include <Wt/WContainerWidget.h>
|
|
|
|
class Session;
|
|
|
|
// https://infima.dev/
|
|
|
|
class VisitorRecordsPage : public Wt::WContainerWidget {
|
|
public:
|
|
VisitorRecordsPage(Session &session);
|
|
};
|
|
|
|
#endif // __VISITORRECORDSPAGE_H__
|