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

0001 /*
0002     SPDX-FileCopyrightText: 2009 Milian Wolff <mail@milianw.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef QALCULATESYNTAXHELPOBJECT_H
0008 #define QALCULATESYNTAXHELPOBJECT_H
0009 
0010 #include <syntaxhelpobject.h>
0011 
0012 class QalculateSession;
0013 
0014 class QalculateSyntaxHelpObject : public Cantor::SyntaxHelpObject
0015 {
0016 public:
0017     QalculateSyntaxHelpObject( const QString& command, QalculateSession* session );
0018     QString answer();
0019 
0020 protected:
0021     void fetchInformation() override;
0022 
0023     void setPlotInformation();
0024     void setSaveVariablesInformation();
0025     void setLoadVariablesInformation();
0026 
0027     QString m_answer;
0028 };
0029 
0030 #endif // QALCULATESYNTAXHELPOBJECT_H