1 // NodeKey.cpp 2 3 #include "NodeKey.h" 4 #include "ImportContext.h" 5 6 #include <cctype> 7 8 __USE_CORTEX_NAMESPACE 9 10 const char* const NodeKey::s_element = "node_key"; 11 12 // -------------------------------------------------------- // 13 // EXPORT 14 // -------------------------------------------------------- // 15 16 void NodeKey::xmlExportBegin( 17 ExportContext& context) const { 18 19 context.beginElement(s_element); 20 } 21 22 void NodeKey::xmlExportAttributes( 23 ExportContext& context) const {} 24 25 void NodeKey::xmlExportContent( 26 ExportContext& context) const { 27 context.beginContent(); 28 context.writeString(content); 29 } 30 31 void NodeKey::xmlExportEnd( 32 ExportContext& context) const { 33 context.endElement(); 34 } 35 36 // END -- NodeKey.cpp --