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

#include <cppcms/view.h>

#include <string>

namespace content {

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

}

#endif