aboutsummaryrefslogtreecommitdiff
path: root/lib/mstch/src/state/outside_section.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mstch/src/state/outside_section.hpp')
-rw-r--r--lib/mstch/src/state/outside_section.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/mstch/src/state/outside_section.hpp b/lib/mstch/src/state/outside_section.hpp
new file mode 100644
index 0000000..8617dce
--- /dev/null
+++ b/lib/mstch/src/state/outside_section.hpp
@@ -0,0 +1,12 @@
+#pragma once
+
+#include "render_state.hpp"
+
+namespace mstch {
+
+class outside_section: public render_state {
+ public:
+ std::string render(render_context& context, const token& token) override;
+};
+
+}