Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* This code is delivered in 4 or more parts and provides a GUI mechanism for generating ssh keys using QT C++
- * For Debian 12 65 bit The entire project can also be downloaded via GIT-HUB for this whom want to know more and would
- * Like to re compile or gain ideas as to how to do some of this
- * All instructions plus pre compiled code for Debian 12 are available at git-hub
- * @ this address https://github.com/markh2016/GUISSHGenerator.git
- * This is Part 4 The main.cpp file MD Harrington London UK 22/05/2023
- */
- #include "dialog.h"
- #include <QApplication>
- int main(int argc, char *argv[])
- {
- QApplication a(argc, argv);
- Dialog w;
- w.show();
- return a.exec();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement