-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathxml-serializer.h
More file actions
34 lines (26 loc) · 1 KB
/
xml-serializer.h
File metadata and controls
34 lines (26 loc) · 1 KB
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
*!* XML-Serializer
*!* Definitions for .SetOption() and .GetOption() methods
#DEFINE XMLSERIAL_WHITESPACE "WhiteSpace"
#DEFINE XMLSERIAL_PROCESSINGINSTRUCTIONS "ProcessingInstructions"
#DEFINE XMLSERIAL_COMMENTS "Comments"
#DEFINE XMLSERIAL_DTD "DTD"
*!* VFP node names, or part names, for encoding or exporting
#DEFINE XML_SIMPLEATTR UPPER(XML_ATTRIBUTE)
#DEFINE XML_SIMPLETEXT "_value_"
#DEFINE XML_NFATTR "_attr_"
#DEFINE XML_NFTEXT "_nodetext_"
*!* processed XML nodes as VFP nodes, other than elements (always arrayed)
#DEFINE XML_PI "xmlprocessinginstruction"
#DEFINE XML_COMMENT "xmlcomment"
#DEFINE XML_DTD "xmldtd"
#DEFINE XML_ORPHANTEXT "xmlorphantext"
*!* name of serialized VFP properties
#DEFINE XMLP_NAME "xmlname"
#DEFINE XMLP_TEXT "xmltext"
#DEFINE XMLP_NS "xmlns"
#DEFINE XMLP_PREFIXES "xmlprefixes"
#DEFINE XMLP_POSITION "xmlposition"
#DEFINE XMLP_COUNT "xmlcount"
#DEFINE XMLP_ATTRIBUTES "xmlattributes"
#DEFINE XMLP_QNAME "xmlqname"
#DEFINE XMLP_SOURCE "xmlsource"