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