Ariles
Loading...
Searching...
No Matches
jsonnet.h
Go to the documentation of this file.
1/**
2 @file
3 @author Alexander Sherikov
4 @copyright 2018-2020 Alexander Sherikov, Licensed under the Apache License, Version 2.0.
5 (see @ref LICENSE or http://www.apache.org/licenses/LICENSE-2.0)
6 @brief
7*/
8
9/**
10@defgroup jsonnet Jsonnet
11@ingroup config
12
13@brief Preprocessing wrapper for json visitors, see https://jsonnet.org/.
14*/
15
16
17#pragma once
18
19#define ARILES2_VISITOR_INCLUDED_jsonnet
20
21
24
25#include "./jsonnet/reader.h"
26
27
28namespace ariles2
29{
30 /**
31 * @brief Jsonnet visitor wrapper.
32 * @ingroup jsonnet
33 */
34 template <class t_ParentVisitor>
40} // namespace ariles2
Jsonnet visitor wrapper.
Definition jsonnet.h:36