/*MT* MediaTomb - http://www.mediatomb.cc/ element.h - this file is part of MediaTomb. Copyright (C) 2005 Gena Batyan , Sergey 'Jin' Bostandzhyan Copyright (C) 2006-2007 Gena Batyan , Sergey 'Jin' Bostandzhyan , Leonhard Wimmer MediaTomb is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. MediaTomb is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License version 2 along with MediaTomb; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. $Id: element.h 1124 2007-02-17 21:49:15Z lww $ */ /// \file element.h #ifndef __MXML_ELEMENT_H__ #define __MXML_ELEMENT_H__ #include "zmmf/zmmf.h" #include "mxml.h" namespace mxml { class Element : public zmm::Object { public: zmm::String name; zmm::String text; zmm::Ref > attributes; zmm::Ref > children; zmm::Ref context; public: Element(zmm::String name); Element(zmm::String name, zmm::Ref context); zmm::String getAttribute(zmm::String name); void addAttribute(zmm::Ref attr); void addAttribute(zmm::String name, zmm::String value); void setAttribute(zmm::String name, zmm::String value); zmm::String getText(); zmm::String getName(); void setName(zmm::String name); int childCount(); int attributeCount(); zmm::Ref getChild(int index); zmm::Ref getAttribute(int index); zmm::Ref getFirstChild(); void appendChild(zmm::Ref child); void setText(zmm::String text); void appendTextChild(zmm::String name, zmm::String text); zmm::String print(); zmm::Ref getChild(zmm::String name); zmm::String getChildText(zmm::String name); protected: void print(zmm::Ref buf, int indent); static zmm::String escape(zmm::String str); }; } // namespace #endif // __MXML_ELEMENT_H__