File indexing completed on 2024-05-12 16:01:43

0001 /*
0002  *  SPDX-FileCopyrightText: 2010 Cyrille Berger <cberger@cberger.net>
0003  *  SPDX-FileCopyrightText: 2010 Dmitry Kazakov <dimula73@gmail.com>
0004  *
0005  *  SPDX-License-Identifier: GPL-2.0-or-later
0006  */
0007 
0008 #ifndef KIS_UI_TYPES_H_
0009 #define KIS_UI_TYPES_H_
0010 
0011 template<class T>
0012 class KisWeakSharedPtr;
0013 template<class T>
0014 class KisSharedPtr;
0015 
0016 class KisPrescaledProjection;
0017 typedef KisSharedPtr<KisPrescaledProjection> KisPrescaledProjectionSP;
0018 
0019 class KisUpdateInfo;
0020 class KisPPUpdateInfo;
0021 typedef KisSharedPtr<KisUpdateInfo> KisUpdateInfoSP;
0022 typedef KisSharedPtr<KisPPUpdateInfo> KisPPUpdateInfoSP;
0023 
0024 #endif