00001 #ifndef _IT_BUS_PDK_SIMPLE_CONTENT_XML_NODE_H_
00002 #define _IT_BUS_PDK_SIMPLE_CONTENT_XML_NODE_H_
00003
00004
00005
00006
00007 #include <it_bus_pdk/xml_node.h>
00008
00009 namespace IT_Bus
00010 {
00011 class IT_BUS_XML_API SimpleContentXMLNode : public XMLNode
00012 {
00013 public:
00014
00015 SimpleContentXMLNode();
00016
00017 virtual ~SimpleContentXMLNode();
00018
00019 virtual void
00020 sax_accept_characters(
00021 const String::UChar* uchars,
00022 size_t n = String::npos
00023 );
00024
00025 const String &
00026 get_simple_content_value() const;
00027
00028 private:
00029
00030 String m_value;
00031 };
00032 }
00033
00034 #endif