/
zOMGdev
/
cppcms
Обзор
Документация
Войти
/
zOMGdev
/
cppcms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/templates_inheritance/content.h
21 строка
422 B
Artyom Beilis
Some examples updated
14 фев 2012, 08:46
14 фев 2012, 08:46
5575d63
Код
Авторство
О чём код?
#ifndef CONTENT_H #define CONTENT_H #include <cppcms/view.h> #include <string> namespace content { struct master : public cppcms::base_content { std::string title; }; struct page : public master { std::string page_title, page_content; }; struct news : public master { std::list<std::string> news_list; }; } #endif // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4