comparison Sources/Autogenerated/sdk_OrthancPluginValueRepresentation.impl.h @ 1:fef9a239df5c

adding auto-generated files
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 26 Mar 2020 18:50:10 +0100
parents
children 23f3099bed47
comparison
equal deleted inserted replaced
0:7ed502b17b8f 1:fef9a239df5c
1 /**
2 * Python plugin for Orthanc
3 * Copyright (C) 2017-2020 Osimis S.A., Belgium
4 *
5 * This program is free software: you can redistribute it and/or
6 * modify it under the terms of the GNU Affero General Public License
7 * as published by the Free Software Foundation, either version 3 of
8 * the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 **/
18
19
20 typedef struct
21 {
22 PyObject_HEAD
23 } sdk_OrthancPluginValueRepresentation_Object;
24
25
26 /**
27 * Static global structure => the fields that are beyond the last
28 * initialized field are set to zero.
29 * https://stackoverflow.com/a/11152199/881731
30 **/
31 static PyTypeObject sdk_OrthancPluginValueRepresentation_Type = {
32 PyVarObject_HEAD_INIT(NULL, 0)
33 "orthanc.ValueRepresentation", /* tp_name */
34 sizeof(sdk_OrthancPluginValueRepresentation_Object), /* tp_basicsize */
35 };
36
37
38 void RegisterOrthancPluginValueRepresentationEnumeration(PyObject* module)
39 {
40 sdk_OrthancPluginValueRepresentation_Type.tp_new = PyType_GenericNew;
41 sdk_OrthancPluginValueRepresentation_Type.tp_flags = Py_TPFLAGS_DEFAULT;
42 sdk_OrthancPluginValueRepresentation_Type.tp_doc = "Generated from C enumeration OrthancPluginOrthancPluginValueRepresentation";
43
44 sdk_OrthancPluginValueRepresentation_Type.tp_dict = PyDict_New();
45
46 if (PyType_Ready(&sdk_OrthancPluginValueRepresentation_Type) < 0)
47 {
48 OrthancPlugins::LogError("Cannot register Python enumeration: OrthancPluginValueRepresentation");
49 ORTHANC_PLUGINS_THROW_EXCEPTION(InternalError);
50 }
51
52 /**
53 * Declare constants here (static members = class attributes)
54 * https://stackoverflow.com/a/8017906/881731
55 *
56 * "Static and class methods can be defined in tp_methods by adding
57 * METH_STATIC or METH_CLASS to the ml_flags field of the
58 * PyMethodDef structure. This is equivalent to @staticmethod and
59 * @classmethod decorators."
60 *
61 * "Class attributes can be added by setting the tp_dict to a
62 * dictionary with these attributes before calling PyType_Ready()
63 * (in your module initialization function)."
64 **/
65
66 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "AE", PyLong_FromLong(1));
67 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "AS", PyLong_FromLong(2));
68 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "AT", PyLong_FromLong(3));
69 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "CS", PyLong_FromLong(4));
70 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "DA", PyLong_FromLong(5));
71 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "DS", PyLong_FromLong(6));
72 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "DT", PyLong_FromLong(7));
73 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "FD", PyLong_FromLong(8));
74 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "FL", PyLong_FromLong(9));
75 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "IS", PyLong_FromLong(10));
76 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "LO", PyLong_FromLong(11));
77 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "LT", PyLong_FromLong(12));
78 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "OB", PyLong_FromLong(13));
79 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "OF", PyLong_FromLong(14));
80 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "OW", PyLong_FromLong(15));
81 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "PN", PyLong_FromLong(16));
82 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "SH", PyLong_FromLong(17));
83 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "SL", PyLong_FromLong(18));
84 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "SQ", PyLong_FromLong(19));
85 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "SS", PyLong_FromLong(20));
86 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "ST", PyLong_FromLong(21));
87 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "TM", PyLong_FromLong(22));
88 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "UI", PyLong_FromLong(23));
89 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "UL", PyLong_FromLong(24));
90 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "UN", PyLong_FromLong(25));
91 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "US", PyLong_FromLong(26));
92 PyDict_SetItemString(sdk_OrthancPluginValueRepresentation_Type.tp_dict, "UT", PyLong_FromLong(27));
93
94 Py_INCREF(&sdk_OrthancPluginValueRepresentation_Type);
95 if (PyModule_AddObject(module, "ValueRepresentation", (PyObject *)&sdk_OrthancPluginValueRepresentation_Type) < 0)
96 {
97 OrthancPlugins::LogError("Cannot register Python enumeration: OrthancPluginValueRepresentation");
98 Py_DECREF(&sdk_OrthancPluginValueRepresentation_Type);
99 ORTHANC_PLUGINS_THROW_EXCEPTION(InternalError);
100 }
101 }