stencet
v0.1.16
Build C++ web server modules that allow easy routing and deployment.
Main Page
Related Pages
Classes
Files
File List
stencet
QuickStart
Filters
Write Custom Filters
Tags
Writing Custom Tags
Classes
Files
File List
rikitiki
third
stencet
include
stencet
filters
tags
BlockTag.h
CommentTag.h
CycleTag.h
ExtendsTag.h
ForTag.h
IfTag.h
IncludeTag.h
NowTag.h
SpacelessTag.h
VerbatimTag.h
context.h
expression.h
factory.h
filter.h
parser.h
region.h
tag.h
template.h
variant.h
viewContext.h
viewModel.h
ExtendsTag.h
1
/* Copyright (C) 2012-2013 Justin Berger
2
The full license is available in the LICENSE file at the root of this project and is also available at http://opensource.org/licenses/MIT. */
3
4
#pragma once
5
#include <stencet/stencet>
6
7
namespace
stencet {
26
struct
ExtendsTag
:
public
BodyTag
{
27
Template
* extendThis = 0;
28
std::string extendThisName;
29
std::map<std::string, Template> sections;
30
31
virtual
void
render(std::ostream& out,
ViewContext
& vm)
const
;
32
ExtendsTag
(std::istream& stream,
const
std::string& content);
33
};
34
35
}
36
rikitiki
third
stencet
include
stencet
tags
ExtendsTag.h
Generated on Mon Apr 1 2013 17:50:01 for stencet by
1.8.3.1