00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _VALUE_TO_XML_H
00014
00015 #define _VALUE_TO_XML_H
00016
00017 #include <support/IByteStream.h>
00018
00019 #if _SUPPORTS_NAMESPACE
00020 namespace palmos {
00021 namespace xml {
00022 #endif
00023
00024 status_t ValueToXML (const BNS(::palmos::support::)sptr<BNS(palmos::support::) IByteOutput>& stream,
00025 const BNS(palmos::support::) SValue &value);
00026
00027 status_t XMLToValue (const BNS(::palmos::support::)sptr<BNS(palmos::support::) IByteInput>& stream,
00028 BNS(palmos::support::) SValue &value);
00029
00030 #if _SUPPORTS_NAMESPACE
00031 } }
00032 #endif
00033
00034 #endif