]> Creatis software - cpPlugins.git/blob - lib/mstch/state/outside_section.hpp
Moved to version 1.0
[cpPlugins.git] / lib / mstch / state / outside_section.hpp
1 #pragma once
2
3 #include "render_state.hpp"
4
5 namespace mstch {
6
7 class outside_section: public render_state {
8  public:
9   std::string render(render_context& context, const token& token) override;
10 };
11
12 }