QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgspythonrunner.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgspythonrunner.h
3  ---------------------
4  begin : May 2011
5  copyright : (C) 2011 by Martin Dobias
6  email : wonder dot sk at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 #ifndef QGSPYTHONRUNNER_H
16 #define QGSPYTHONRUNNER_H
17 
18 #include <QString>
19 #include "qgis_sip.h"
20 
21 #include "qgis_core.h"
22 
33 class CORE_EXPORT QgsPythonRunner
34 {
35  public:
36 
40  static bool isValid();
41 
43  static bool run( const QString &command, const QString &messageOnError = QString() );
44 
46  static bool eval( const QString &command, QString &result SIP_OUT );
47 
53  static void setInstance( QgsPythonRunner *runner SIP_TRANSFER );
54 
55  protected:
57  QgsPythonRunner() = default;
58  virtual ~QgsPythonRunner() = default;
59 
60  virtual bool runCommand( QString command, QString messageOnError = QString() ) = 0;
61 
62  virtual bool evalCommand( QString command, QString &result ) = 0;
63 
65 };
66 
67 #endif // QGSPYTHONRUNNER_H
SIP_OUT
#define SIP_OUT
Definition: qgis_sip.h:58
QgsPythonRunner::QgsPythonRunner
QgsPythonRunner()=default
Protected constructor: can be instantiated only from children.
QgsPythonRunner::runCommand
virtual bool runCommand(QString command, QString messageOnError=QString())=0
QgsPythonRunner
Utility class for running Python commands from various parts of QGIS.
Definition: qgspythonrunner.h:34
qgis_sip.h
SIP_TRANSFER
#define SIP_TRANSFER
Definition: qgis_sip.h:36
QgsPythonRunner::evalCommand
virtual bool evalCommand(QString command, QString &result)=0
QgsPythonRunner::~QgsPythonRunner
virtual ~QgsPythonRunner()=default
QgsPythonRunner::sInstance
static QgsPythonRunner * sInstance
Definition: qgspythonrunner.h:64