summaryrefslogtreecommitdiff
path: root/src/user.hpp
blob: 99a0894283176f509b3471bb560792b048acf859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef USER_CONTENT_HPP
#define USER_CONTENT_HPP

#include <cppcms/view.h>

#include <string>

namespace content {

struct user : public cppcms::base_content {
	std::string title;
};

}

#endif