This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---------------------------------------------- | |
| // Open Notepad on Windows using QProcess | |
| // Asynchronously using std::async and | |
| // Wait for it to exit with std::future | |
| // ---------------------------------------------- | |
| #include <QProcess> // QProcess | |
| #include <QDebug> // qDebug(), qCritical(), ... | |
| #include <future> |
NewerOlder