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

0001 /* SPDX-FileCopyrightText: 2011-2024 Laurent Montel <montel@kde.org>
0002  *
0003  * SPDX-License-Identifier: LGPL-2.0-or-later
0004  */
0005 
0006 #include "templatestextedit.h"
0007 #include "templatestexteditor.h"
0008 
0009 using namespace TemplateParser;
0010 
0011 TemplatesTextEdit::TemplatesTextEdit(QWidget *parent)
0012     : TextCustomEditor::PlainTextEditorWidget(new TemplatesTextEditor, parent)
0013 {
0014 }
0015 
0016 TemplatesTextEdit::~TemplatesTextEdit() = default;
0017 
0018 #include "moc_templatestextedit.cpp"