Krita Source Code Documentation
Loading...
Searching...
No Matches
SvgShape.cpp
Go to the documentation of this file.
1/* This file is part of the KDE project
2 * SPDX-FileCopyrightText: 2011 Jan Hambrecht <jaham@gmx.net>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6
7#include "SvgShape.h"
8
9
13
15{
16 return false;
17}
18
19bool SvgShape::loadSvg(const QDomElement &/*element*/, SvgLoadingContext &/*context*/)
20{
21 return false;
22}
Contains data used for loading svg.
Context for saving svg files.
virtual bool loadSvg(const QDomElement &element, SvgLoadingContext &context)
Loads data from specified svg element.
Definition SvgShape.cpp:19
virtual bool saveSvg(SvgSavingContext &context)
Saves data utilizing specified svg saving context.
Definition SvgShape.cpp:14
virtual ~SvgShape()
Definition SvgShape.cpp:10