-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclassdesc_epilogue.h
65 lines (50 loc) · 1.25 KB
/
classdesc_epilogue.h
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
@copyright Russell Standish 2000-2013
@author Russell Standish
This file is part of Classdesc
Open source licensed under the MIT license. See LICENSE for details.
*/
/*
This file includes the relevant epilogue files for any descriptors
used so far
*/
/** \file
\brief Epilogue header for Classdesc
This file needs to be included after all .cd files have been processed
*/
#ifndef CLASSDESC_EPILOGUE_H
#define CLASSDESC_EPILOGUE_H
// satisfy linkage requirements for classdesc_epilogue_not_included check
namespace
{
int classdesc_epilogue_not_included() {return 1;}
}
#include "typeName_epilogue.h"
#ifdef CLASSDESC_PACK_BASE_H
#include "pack_epilogue.h"
#endif
#ifdef CLASSDESC_XML_COMMON_H
#include "xml_pack_epilogue.h"
#endif
#ifdef CLASSDESC_XSD_GENERATE_BASE_H
#include "xsd_generate-allCDs.h"
#endif
#ifdef CLASSDESC_DUMP_BASE_H
#include "dump_epilogue.h"
#endif
#ifdef CLASSDESC_JAVACLASS_BASE_H
#include "javaClass_epilogue.h"
#endif
#ifdef CLASSDESC_JSON_PACK_BASE_H
#include "json_pack_epilogue.h"
#endif
#ifdef CLASSDESC_RANDOM_INIT_BASE_H
#include "random_init_epilogue.h"
#endif
#ifdef CLASSDESC_PYTHON_BASE_H
#include "python_epilogue.h"
#endif
#ifdef CLASSDESC_RESTPROCESS_BASE_H
#include "RESTProcess_epilogue.h"
#endif
#endif