The Tntnet project
C++ dynamite for the web
Overview
Tntnet
Cxxtools
Tntdb
Documentation
Start guide
Man pages
Api docs stable
Api docs master
Howto
Demos
Resources
FAQ
News
Downloads
References
Development
License
Contact
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
include
cxxtools
xml
namespace.h
Go to the documentation of this file.
1
/*
2
* This library is free software; you can redistribute it and/or
3
* modify it under the terms of the GNU Lesser General Public
4
* License as published by the Free Software Foundation; either
5
* version 2.1 of the License, or (at your option) any later version.
6
*
7
* As a special exception, you may use this file as part of a free
8
* software library without restriction. Specifically, if other files
9
* instantiate templates or use macros or inline functions from this
10
* file, or you compile this file and link it with other files to
11
* produce an executable, this file does not by itself cause the
12
* resulting executable to be covered by the GNU General Public
13
* License. This exception does not however invalidate any other
14
* reasons why the executable file might be covered by the GNU Library
15
* General Public License.
16
*
17
* This library is distributed in the hope that it will be useful,
18
* but WITHOUT ANY WARRANTY; without even the implied warranty of
19
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20
* Lesser General Public License for more details.
21
*
22
* You should have received a copy of the GNU Lesser General Public
23
* License along with this library; if not, write to the Free Software
24
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25
*/
26
#ifndef cxxtools_Xml_Namespace_h
27
#define cxxtools_Xml_Namespace_h
28
29
#include <
cxxtools/xml/api.h
>
30
#include <
cxxtools/string.h
>
31
32
#include <iosfwd>
33
34
namespace
cxxtools {
35
36
namespace
xml {
37
50
class
CXXTOOLS_XML_API
Namespace
{
51
public
:
59
Namespace
(
const
String
& namespaceUri,
const
String
& prefix)
60
: _prefix(prefix), _namespaceUri(namespaceUri)
61
{ }
62
71
const
String
& prefix()
const
72
{
return
_prefix; }
73
82
void
setPrefix(
const
String
& prefix)
83
{ _prefix = prefix; }
84
92
const
String
& namespaceUri()
const
93
{
return
_namespaceUri; }
94
102
void
setNamespaceUri(
const
String
& namespaceUri)
103
{ _namespaceUri = namespaceUri; }
104
111
bool
isDefaultNamespaceDeclaration();
112
113
private
:
115
String
_prefix;
116
118
String
_namespaceUri;
119
};
120
121
}
122
123
}
124
125
#endif