This commit is contained in:
Daniel Sipka 2015-04-10 12:56:08 +02:00
parent 3b4580186c
commit e31207b9cf
17 changed files with 160 additions and 93 deletions

View file

@ -3,13 +3,17 @@
using namespace mstch;
visitor::render_section::render_section(render_context& context, const std::string& section):
visitor::render_section::render_section(
render_context& context,
const std::string& section):
context(context),
section(section)
{
}
std::string visitor::render_section::operator()(const boost::blank& blank) const {
std::string visitor::render_section::operator()(
const boost::blank& blank) const
{
return "";
}