File indexing completed on 2024-11-24 04:48:12

0001 /*
0002    SPDX-FileCopyrightText: 2014-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #pragma once
0007 #include "knotes_export.h"
0008 #include <QObject>
0009 class KNOTES_EXPORT KNoteInterface
0010 {
0011 public:
0012     KNoteInterface();
0013     void setBlockSave(bool b);
0014 
0015 protected:
0016     bool mBlockSave = false;
0017 };