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