00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00029 #ifndef _RTXMLCPPENCFUNCS_H_
00030 #define _RTXMLCPPENCFUNCS_H_
00031
00032 #include "rtxmlsrc/osrtxml.h"
00033 #include "rtxsrc/rtxCppDList.h"
00034 #ifdef HAS_STL
00035 #include "rtxsrc/rtxCppXmlSTLString.h"
00036 #endif
00037
00038 class OSXSDAnyTypeClass;
00039 class OSRTObjListClass;
00040
00051 EXTERNXML int rtXmlCppEncAnyAttr
00052 (OSCTXT* pctxt, OSRTObjListClass* pAnyAttrList);
00053
00071 EXTERNXML int rtXmlEncAny
00072 (OSCTXT* pctxt, OSXMLStringClass* pxmlstr,
00073 const OSUTF8CHAR* elemName, OSXMLNamespace* pNS);
00074
00075 #ifdef HAS_STL
00076
00093 EXTERNXML int rtXmlEncAny
00094 (OSCTXT* pctxt, OSXMLSTLStringClass* pxmlstr,
00095 const OSUTF8CHAR* elemName, OSXMLNamespace* pNS);
00096 #endif
00097
00111 EXTERNXML int rtXmlCppEncAnyTypeValue
00112 (OSCTXT* pctxt, OSXSDAnyTypeClass* pvalue);
00113
00130 EXTERNXML int rtXmlCppEncStartElement (OSCTXT* pctxt,
00131 const OSUTF8CHAR* elemName,
00132 OSXMLNamespace* pNS,
00133 OSRTDListClass* pNSAttrs,
00134 OSBOOL terminate);
00135
00149 EXTERNXML int rtXmlEncString
00150 (OSCTXT* pctxt, OSXMLStringClass* pxmlstr,
00151 const OSUTF8CHAR* elemName, OSXMLNamespace* pNS);
00152
00153 #ifdef HAS_STL
00154
00167 EXTERNXML int rtXmlEncString
00168 (OSCTXT* pctxt, OSXMLSTLStringClass* pxmlstlstr,
00169 const OSUTF8CHAR* elemName, OSXMLNamespace* pNS);
00170 #endif
00171 #endif