#ifndef INSTALLDEB_H #define INSTALLDEB_H #include #include #include class InstallDEB { public: InstallDEB(QTermWidget *terminal, QMainWindow *mainWindow = NULL); void AddCommand(QString command); void RunCommand(); QStringList commandList; private: QTermWidget *terminal; QMainWindow *mainWindow = NULL; bool runStatus; }; #endif // INSTALLDEB_H