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
66
67
|
/** Generated by xsd2c*/
#ifndef __Enumeration_H__
#define __Enumeration_H__
#ifndef _DESERIALIZER_DISABLE_
#include <libxml/parser.h>
#endif
#define TO_ENUMERATION(derived) (derived->__base)
#ifdef __cplusplus
extern "C" {
#endif
struct Enumeration_value_List {
char* value;
struct Enumeration_value_List* next;
};
/**
* OBJECT: Enumeration
*/
struct Enumeration
{
struct Enumeration_value_List* value_head;
struct Enumeration_value_List* value_tail;
};
/**
* LIST: Enumeration_List
*/
struct Enumeration_List
{
struct Enumeration* value;
struct Enumeration_List* next;
};
struct Enumeration* Enumeration_Create();
void Enumeration_Free(struct Enumeration* obj);
void Enumeration_Sax_Serialize(struct Enumeration* obj,
const char *root_element_name,
void (*OnStartElement)(const char* element_name, int attr_count, char **keys, char **values, void* userData),
void (*OnCharacters)(const char* element_name, const char* chars, void* userData),
void (*OnEndElement)(const char* element_name, void* userData),
void* userData);
#ifndef _DESERIALIZER_DISABLE_
struct Enumeration* Enumeration_Deserialize(xmlNodePtr xmlRoot);
#endif
void Enumeration_Add_value(struct Enumeration* obj, const char* value);
struct Enumeration_value_List* Enumeration_Get_value(struct Enumeration* obj);
#ifdef __cplusplus
};
#endif /*__cplusplus*/
#endif
|