/
zOMGdev
/
cppcms
Обзор
Документация
Войти
/
zOMGdev
/
cppcms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.0.5
src/base_view.cpp
48 строк
1 KB
Artyom Beilis
- Update copyright notice,
03 янв 2012, 17:58
03 янв 2012, 17:58
068d3f9
Код
Авторство
О чём код?
/////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com> // // See accompanying file COPYING.TXT file for licensing details. // /////////////////////////////////////////////////////////////////////////////// #define CPPCMS_SOURCE #include <cppcms/base_view.h> #include <cppcms/util.h> #include <cppcms/cppcms_error.h> #include <vector> #include <cppcms/config.h> #ifdef CPPCMS_USE_EXTERNAL_BOOST # include <boost/format.hpp> #else // Internal Boost # include <cppcms_boost/format.hpp> namespace boost = cppcms_boost; #endif namespace cppcms { struct base_view::_data { std::ostream *out; }; base_view::base_view(std::ostream &out) : d(new _data) { d->out=&out; } std::ostream &base_view::out() { return *d->out; } base_view::~base_view() { } void base_view::render() { } }// cppcms