Advertisement
Mark2020H

Part 4 main.cpp QT GUI SSH Generator

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