mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
26 lines
393 B
C++
26 lines
393 B
C++
#ifndef EXTERNALEXECUTER_H
|
|
#define EXTERNALEXECUTER_H
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QDir>
|
|
#include <QDirIterator>
|
|
#include <QProcess>
|
|
#include <QDebug>
|
|
|
|
class ExternalExecuter : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ExternalExecuter();
|
|
void CallApp();
|
|
bool FindApp();
|
|
~ExternalExecuter();
|
|
|
|
private:
|
|
QString programPath;
|
|
};
|
|
|
|
#endif // EXTERNALEXECUTER_H
|