From cca66b9ec4e494c1d919bff0f71a820d8afab1fa Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:24:48 +0200 Subject: Adding upstream version 1.2.2. Signed-off-by: Daniel Baumann --- src/attribute-rel-svg.h | 60 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/attribute-rel-svg.h (limited to 'src/attribute-rel-svg.h') diff --git a/src/attribute-rel-svg.h b/src/attribute-rel-svg.h new file mode 100644 index 0000000..2f04c5c --- /dev/null +++ b/src/attribute-rel-svg.h @@ -0,0 +1,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 +#include +#include +#include + +// This data structure stores the valid (element -> set of attributes) pair +typedef std::map > 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 : -- cgit v1.2.3