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