File indexing completed on 2024-05-05 11:55:52

0001 /*
0002     SPDX-License-Identifier: GPL-2.0-or-later
0003     SPDX-FileCopyrightText: 2018 Sirgienko Nikita <warquark@gmail.com>
0004 */
0005 
0006 #ifndef _OCTAVEKEYWORDS_H
0007 #define _OCTAVEKEYWORDS_H
0008 
0009 #include <QStringList>
0010 
0011 class OctaveKeywords
0012 {
0013     public:
0014         static OctaveKeywords* instance();
0015 
0016         const QStringList& functions() const;
0017         const QStringList& keywords() const;
0018 
0019     private:
0020         OctaveKeywords();
0021         ~OctaveKeywords() = default;
0022         QStringList m_functions;
0023         QStringList m_keywords;
0024 };
0025 #endif /* _OCTAVEKEYWORDS_H */