File indexing completed on 2025-02-16 04:57:41

0001 /*
0002  * SPDX-FileCopyrightText: 2006 Dmitry Morozhnikov <dmiceman@mail.ru>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-or-later
0005  *
0006  */
0007 
0008 #pragma once
0009 
0010 #include "templateparser_export.h"
0011 #include <QString>
0012 
0013 namespace TemplateParser
0014 {
0015 /** Default new/reply/forward templates. */
0016 namespace DefaultTemplates
0017 {
0018 [[nodiscard]] TEMPLATEPARSER_EXPORT QString defaultNewMessage();
0019 [[nodiscard]] TEMPLATEPARSER_EXPORT QString defaultReply();
0020 [[nodiscard]] TEMPLATEPARSER_EXPORT QString defaultReplyAll();
0021 [[nodiscard]] TEMPLATEPARSER_EXPORT QString defaultForward();
0022 [[nodiscard]] TEMPLATEPARSER_EXPORT QString defaultQuoteString();
0023 }
0024 }