You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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;
|
|
};
|
|
|
|
}
|