// QT includes #include #include #include "QtWrapper.h" #include #include #include //flatbuf sending #include // ssdp discover #include using namespace commandline; // save the image as screenshot void saveScreenshot(QString filename, const Image & image) { // store as PNG QImage pngImage((const uint8_t *) image.memptr(), image.width(), image.height(), 3*image.width(), QImage::Format_RGB888); pngImage.save(filename); } int main(int argc, char ** argv) { //QCoreApplication app(argc, argv); QGuiApplication app(argc, argv); try { // create the option parser and initialize all parameters Parser parser("Qt interface capture application for Hyperion"); Option & argDisplay = parser.add