blob: 2f04c5c7b902c7ca54b9d8f332937e2ae6b570cf (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef __SP_ATTRIBUTE_REL_SVG_H__
#define __SP_ATTRIBUTE_REL_SVG_H__
/*
* attribute-rel-svg.h
*
* Created on: Jul 25, 2011
* Author: abhishek
*/
#include <string>
#include <map>
#include <set>
#include <glibmm/ustring.h>
// This data structure stores the valid (element -> set of attributes) pair
typedef std::map<Glib::ustring, std::set<Glib::ustring> > hashList;
/*
* Utility class to check whether a combination of element and attribute
* is valid or not.
*/
class SPAttributeRelSVG {
public:
static bool isSVGElement(Glib::ustring element);
static bool findIfValid(Glib::ustring attribute, Glib::ustring element);
private:
SPAttributeRelSVG();
SPAttributeRelSVG(const SPAttributeRelSVG&) = delete;
SPAttributeRelSVG& operator= (const SPAttributeRelSVG&) = delete;
private:
static SPAttributeRelSVG *instance;
static bool foundFile;
hashList attributesOfElements;
};
#endif /* __SP_ATTRIBUTE_REL_SVG_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:fileencoding=utf-8:textwidth=99 :
|