| 783 | virtual ~RemotePlugin(); |
| 784 | |
| 785 | inline bool isRunning() |
| 786 | { |
| 787 | #ifdef DEBUG_REMOTE_PLUGIN |
| 788 | return true; |
| 789 | #else |
| 790 | return m_process.state() != QProcess::NotRunning; |
| 791 | #endif |
| 792 | } |
| 793 | |
| 794 | bool init( const QString &pluginExecutable, bool waitForInitDoneMsg, QStringList extraArgs = {} ); |
| 795 |