I will be, but not yet. Right now this IngestorGUI object is created in main along with a QApplication. The QApplication is then executed. Here is the main code:
Qt Code:
  1. int main(int argc, char *argv[])
  2. {
  3. QApplication app(argc, argv);
  4.  
  5. IngestorGUI window;
  6.  
  7. return app.exec();
  8. }
To copy to clipboard, switch view to plain text mode