-
Notifications
You must be signed in to change notification settings - Fork 21
/
registry.h.tmpl
42 lines (32 loc) · 1.08 KB
/
registry.h.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*************************************************************************
* odil - Copyright (C) Universite de Strasbourg
* Distributed under the terms of the CeCILL-B license, as published by
* the CEA-CNRS-INRIA. Refer to the LICENSE file or to
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
* for details.
************************************************************************/
#ifndef _afc7b2d7_0869_4fea_9a9b_7fe6228baca9
#define _afc7b2d7_0869_4fea_9a9b_7fe6228baca9
#include <map>
#include <string>
#include "odil/odil.h"
#include "odil/ElementsDictionary.h"
#include "odil/Tag.h"
#include "odil/UIDsDictionary.h"
{% for group in groups %}
#include "odil/registry_{{ group }}.h"
{% endfor %}
namespace odil
{
namespace registry
{
{% for entry in uids %}
std::string const {{ entry[2] }}("{{ entry[0] }}");
{% endfor %}
extern ODIL_API ElementsDictionary public_dictionary;
extern ODIL_API std::map<std::string, Tag> public_tags;
extern ODIL_API UIDsDictionary uids_dictionary;
extern ODIL_API bool const dummy;
}
}
#endif // _afc7b2d7_0869_4fea_9a9b_7fe6228baca9