mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
Init commit
This commit is contained in:
25
Core/externalexecuter.h
Normal file
25
Core/externalexecuter.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#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();
|
||||
void FindApp();
|
||||
~ExternalExecuter();
|
||||
|
||||
private:
|
||||
QString programPath;
|
||||
};
|
||||
|
||||
#endif // EXTERNALEXECUTER_H
|
||||
Reference in New Issue
Block a user