aboutsummaryrefslogtreecommitdiff
path: root/lib/mstch/src/state/outside_section.hpp
blob: 8617dcebb1e9907353ed0e33b4c3818f2e745e8e (plain)
1
2
3
4
5
6
7
8
9
10
11
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;
};

}