Notation.h
1 /*
2  * Copyright (C) 2013 Marc Boris Duerner
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * As a special exception, you may use this file as part of a free
10  * software library without restriction. Specifically, if other files
11  * instantiate templates or use macros or inline functions from this
12  * file, or you compile this file and link it with other files to
13  * produce an executable, this file does not by itself cause the
14  * resulting executable to be covered by the GNU General Public
15  * License. This exception does not however invalidate any other
16  * reasons why the executable file might be covered by the GNU Library
17  * General Public License.
18  *
19  * This library is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22  * Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public
25  * License along with this library; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27  */
28 
29 #ifndef Pt_Xml_Notation_h
30 #define Pt_Xml_Notation_h
31 
32 #include <Pt/Xml/Api.h>
33 #include <Pt/String.h>
34 
35 namespace Pt {
36 
37 namespace Xml {
38 
41 class Notation
42 {
43  public:
46  explicit Notation(const Pt::String& name)
47  : _name(name)
48  { }
49 
52  const Pt::String& name() const
53  { return _name; }
54 
57  const Pt::String& publicId() const
58  { return _publicId; }
59 
62  void setPublicId(const Pt::String& pubId)
63  { _publicId = pubId; }
64 
67  const Pt::String& systemId() const
68  { return _systemId; }
69 
72  void setSystemId(const Pt::String& sysId)
73  { _systemId = sysId; }
74 
75  private:
76  Pt::String _name;
77  Pt::String _publicId;
78  Pt::String _systemId;
79 };
80 
81 } // namespace Xml
82 
83 } // namespace Pt
84 
85 #endif // Pt_Xml_Notation_h
const Pt::String & systemId() const
Returns the system ID of the notation.
Definition: Notation.h:67
void setPublicId(const Pt::String &pubId)
Sets the public ID of the notation.
Definition: Notation.h:62
const Pt::String & publicId() const
Returns the public ID of the notation.
Definition: Notation.h:57
Unicode capable basic_string.
Definition: String.h:42
const Pt::String & name() const
Returns the name of the notation.
Definition: Notation.h:52
Notation(const Pt::String &name)
Constructs with notation name.
Definition: Notation.h:46
void setSystemId(const Pt::String &sysId)
Sets the system ID of the notation.
Definition: Notation.h:72
A notation declaration in a DTD.
Definition: Notation.h:41