File indexing completed on 2024-05-12 15:58:40

0001 /*
0002  *  SPDX-FileCopyrightText: 2019 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef KIS_RUNNABLE_WITH_DEBUG_NAME_H
0008 #define KIS_RUNNABLE_WITH_DEBUG_NAME_H
0009 
0010 #include "kis_runnable.h"
0011 #include <QString>
0012 
0013 class KRITAIMAGE_EXPORT KisRunnableWithDebugName : public KisRunnable
0014 {
0015 public:
0016     virtual QString debugName() const = 0;
0017 };
0018 
0019 #endif // KIS_RUNNABLE_WITH_DEBUG_NAME_H