14 lines
197 B
C++
14 lines
197 B
C++
#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;
|
|
};
|
|
}
|