17 lines
297 B
C++
17 lines
297 B
C++
#ifndef __DATASTRUCTURE_H__
|
|
#define __DATASTRUCTURE_H__
|
|
|
|
#include <string>
|
|
|
|
struct VisitorStats{
|
|
std::string url;
|
|
int visitorCount=0;
|
|
int totalViews =0;
|
|
int64_t lastViewTime =0;
|
|
};
|
|
|
|
struct SiteStats{
|
|
int totalViews =0;
|
|
int totalVisitors =0;
|
|
};
|
|
#endif // __DATASTRUCTURE_H__
|