Krita Source Code Documentation
Loading...
Searching...
No Matches
KoShapeUserData.h
Go to the documentation of this file.
1/* This file is part of the KDE project
2 * SPDX-FileCopyrightText: 2006 Thomas Zander <zander@kde.org>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6
7#ifndef KOSHAPEUSERDATA_H
8#define KOSHAPEUSERDATA_H
9
10#include <QObject>
11
12#include "kritaflake_export.h"
13
32class KRITAFLAKE_EXPORT KoShapeUserData : public QObject
33{
34 Q_OBJECT
35public:
37 explicit KoShapeUserData(QObject *parent = 0);
38 ~KoShapeUserData() override;
39
40 virtual KoShapeUserData* clone() const = 0;
41
42protected:
44};
45
46#endif
virtual KoShapeUserData * clone() const =0