blob: 233016c9f5e2f797454ffbbeaa48a3d9a304de08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2017 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
/** @file
* @brief Key-value pair representing an attribute
*/
#ifndef SEEN_XML_SP_REPR_ATTR_H
#define SEEN_XML_SP_REPR_ATTR_H
#include <glib.h>
#include "inkgc/gc-managed.h"
#include "util/share.h"
#define SP_REPR_ATTRIBUTE_KEY(a) g_quark_to_string((a)->key)
#define SP_REPR_ATTRIBUTE_VALUE(a) ((a)->value)
namespace Inkscape {
namespace XML {
/**
* @brief Key-value pair representing an attribute
*
* Internally, the attributes of each node in the XML tree are
* represented by this structure.
*/
class AttributeRecord : public Inkscape::GC::Managed<> {
public:
AttributeRecord(GQuark k, Inkscape::Util::ptr_shared v)
: key(k), value(v) {}
/** @brief GQuark corresponding to the name of the attribute */
GQuark key;
/** @brief Shared pointer to the value of the attribute */
Inkscape::Util::ptr_shared value;
bool operator== (const AttributeRecord &o) const {return key==o.key && value==o.value;}
// accept default copy constructor and assignment operator
};
}
}
#endif /* !SEEN_XML_SP_REPR_ATTR_H */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
|