sptk2 logo
SPTK Home Page
Attributes.h
1/*
2╔══════════════════════════════════════════════════════════════════════════════╗
3║ SIMPLY POWERFUL TOOLKIT (SPTK) ║
4╟──────────────────────────────────────────────────────────────────────────────╢
5║ copyright © 1999-2022 Alexey Parshin. All rights reserved. ║
6║ email alexeyp@gmail.com ║
7╚══════════════════════════════════════════════════════════════════════════════╝
8┌──────────────────────────────────────────────────────────────────────────────┐
9│ This library is free software; you can redistribute it and/or modify it │
10│ under the terms of the GNU Library General Public License as published by │
11│ the Free Software Foundation; either version 2 of the License, or (at your │
12│ option) any later version. │
13│ │
14│ This library is distributed in the hope that it will be useful, but │
15│ WITHOUT ANY WARRANTY; without even the implied warranty of │
16│ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library │
17│ General Public License for more details. │
18│ │
19│ You should have received a copy of the GNU Library General Public License │
20│ along with this library; if not, write to the Free Software Foundation, │
21│ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. │
22│ │
23│ Please report all bugs and problems to alexeyp@gmail.com. │
24└──────────────────────────────────────────────────────────────────────────────┘
25*/
26
27#include <sptk5/String.h>
28#include <vector>
29
30#pragma once
31
32namespace sptk::xdoc {
33
34class SP_EXPORT Attributes
35{
36public:
37 using AttributeVector = std::vector<std::pair<String, String>>;
38
39 using iterator = AttributeVector::iterator;
40 using const_iterator = AttributeVector::const_iterator;
41
42 iterator begin()
43 {
44 return m_items.begin();
45 }
46
47 const_iterator begin() const
48 {
49 return m_items.begin();
50 }
51
52 iterator end()
53 {
54 return m_items.end();
55 }
56
57 const_iterator end() const
58 {
59 return m_items.end();
60 }
61
62 void clear()
63 {
64 m_items.clear();
65 }
66
67 String get(const String& name, const String& defaultValue = "") const;
68
69 bool have(const String& name) const;
70
71 Attributes& set(const String& name, const String& value);
72
73 bool empty() const
74 {
75 return m_items.empty();
76 }
77
78 size_t size() const
79 {
80 return m_items.size();
81 }
82
83private:
84 AttributeVector m_items;
85};
86
87} // namespace sptk::xdoc
Definition: String.h:49
Definition: Attributes.h:35

Fri Oct 14 2022 09:58:32: SPTK 5.4.1