onion-wownero-blockchain-ex.../ext/mstch/src/state/render_state.hpp

18 lines
241 B
C++
Raw Normal View History

2016-04-06 06:53:37 +00:00
#pragma once
#include <memory>
#include "token.hpp"
namespace mstch {
class render_context;
class render_state {
public:
virtual ~render_state() {}
virtual std::string render(render_context& context, const token& token) = 0;
};
}