File indexing completed on 2024-04-28 11:20:35

0001 /*
0002     SPDX-FileCopyrightText: 2010 Miha Čančula <miha.cancula@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef OCTAVEHIGHLIGHTER_H
0008 #define OCTAVEHIGHLIGHTER_H
0009 
0010 #include "defaulthighlighter.h"
0011 
0012 namespace Cantor
0013 {
0014     class Expression;
0015     class Session;
0016 }
0017 
0018 class OctaveHighlighter : public Cantor::DefaultHighlighter
0019 {
0020     Q_OBJECT
0021 
0022     public:
0023         OctaveHighlighter(QObject* parent, Cantor::Session* session);
0024         ~OctaveHighlighter() override = default;
0025 };
0026 
0027 #endif // OCTAVEHIGHLIGHTER_H