CLAM-Development
1.1
|
00001 /* 00002 * Copyright (c) 2001-2004 MUSIC TECHNOLOGY GROUP (MTG) 00003 * UNIVERSITAT POMPEU FABRA 00004 * 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 * 00020 */ 00021 00022 #ifndef _LibXmlDomWritingContext_hxx_ 00023 #define _LibXmlDomWritingContext_hxx_ 00024 00025 #include <libxml++/nodes/textnode.h> 00026 #include <libxml++/nodes/element.h> 00027 #include <libxml++/document.h> 00028 #include "LibXmlEncodings.hxx" 00029 00030 namespace CLAM 00031 { 00032 class LibXmlDomDocumentHandler; 00033 00038 class LibXmlDomWritingContext 00039 { 00040 xmlpp::Element * _currentElement; 00041 LibXmlDomWritingContext * _parent; 00042 public: 00043 LibXmlDomWritingContext(xmlpp::Element * element) 00044 { 00045 _parent = 0; 00046 _currentElement = element; 00047 } 00048 LibXmlDomWritingContext(LibXmlDomDocumentHandler & docHandler); 00049 00050 LibXmlDomWritingContext(LibXmlDomWritingContext * parent, const char * name) 00051 { 00052 _parent = parent; 00053 xmlpp::Element * parentElement = parent->_currentElement; 00054 _currentElement = parentElement->add_child(U(name)); 00055 } 00056 00057 LibXmlDomWritingContext * release() 00058 { 00059 return _parent; 00060 } 00061 00062 void addAttribute(const char * name, const char * value) 00063 { 00064 _currentElement->set_attribute(U(name),U(value)); 00065 } 00066 void addContent(const char * content) 00067 { 00068 _currentElement->add_child_text(U(content)); 00069 } 00070 }; 00071 00072 } 00073 00074 #endif//_LibXmlDomWritingContext_hxx_ 00075 00076