File indexing completed on 2024-05-12 15:56:41

0001 /*
0002  *  SPDX-FileCopyrightText: 2016 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef KOFLAKETYPES_H
0008 #define KOFLAKETYPES_H
0009 
0010 class KoShapeStroke;
0011 class KoShapeStrokeModel;
0012 
0013 template<class T> class QSharedPointer;
0014 
0015 typedef QSharedPointer<KoShapeStrokeModel> KoShapeStrokeModelSP;
0016 typedef QSharedPointer<KoShapeStroke> KoShapeStrokeSP;
0017 
0018 #endif // KOFLAKETYPES_H
0019