Ariles
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
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 
28 namespace ariles2
29 {
30  /**
31  * @brief Jsonnet visitor wrapper.
32  * @ingroup jsonnet
33  */
34  template <class t_ParentVisitor>
35  struct jsonnet
36  {
39  };
40 } // namespace ariles2
Definition: basic.h:17
Jsonnet visitor wrapper.
Definition: jsonnet.h:36