00001 /* 00002 * This library is free software; you can redistribute it and/or 00003 * modify it under the terms of the GNU Lesser General Public 00004 * License as published by the Free Software Foundation; either 00005 * version 2.1 of the License, or (at your option) any later version. 00006 * 00007 * As a special exception, you may use this file as part of a free 00008 * software library without restriction. Specifically, if other files 00009 * instantiate templates or use macros or inline functions from this 00010 * file, or you compile this file and link it with other files to 00011 * produce an executable, this file does not by itself cause the 00012 * resulting executable to be covered by the GNU General Public 00013 * License. This exception does not however invalidate any other 00014 * reasons why the executable file might be covered by the GNU Library 00015 * General Public License. 00016 * 00017 * This library is distributed in the hope that it will be useful, 00018 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00020 * Lesser General Public License for more details. 00021 * 00022 * You should have received a copy of the GNU Lesser General Public 00023 * License along with this library; if not, write to the Free Software 00024 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00025 */ 00026 #ifndef cxxtools_Xml_Namespace_h 00027 #define cxxtools_Xml_Namespace_h 00028 00029 #include <cxxtools/xml/api.h> 00030 #include <cxxtools/string.h> 00031 00032 #include <iosfwd> 00033 00034 namespace cxxtools { 00035 00036 namespace xml { 00037 00050 class CXXTOOLS_XML_API Namespace { 00051 public: 00059 Namespace(const String& namespaceUri, const String& prefix) 00060 : _prefix(prefix), _namespaceUri(namespaceUri) 00061 { } 00062 00071 const String& prefix() const 00072 { return _prefix; } 00073 00082 void setPrefix(const String& prefix) 00083 { _prefix = prefix; } 00084 00092 const String& namespaceUri() const 00093 { return _namespaceUri; } 00094 00102 void setNamespaceUri(const String& namespaceUri) 00103 { _namespaceUri = namespaceUri; } 00104 00111 bool isDefaultNamespaceDeclaration(); 00112 00113 private: 00115 String _prefix; 00116 00118 String _namespaceUri; 00119 }; 00120 00121 } 00122 00123 } 00124 00125 #endif