1 /*
2    SPDX-FileCopyrightText: 2013-2021 Laurent Montel <montel@kde.org>
3 
4    SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 #pragma once
7 
8 #include "noteshared_export.h"
9 class QTextCursor;
10 class QTextEdit;
11 namespace NoteShared
12 {
13 class NOTESHARED_EXPORT NoteEditorUtils
14 {
15 public:
16     NoteEditorUtils();
17     void addCheckmark(QTextCursor &cursor);
18     void insertDate(QTextEdit *editor);
19 };
20 }
21