Mark2020H

Timer enabled Image Viewer Part4 of 5

Nov 4th, 2020 (edited)
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.64 KB | None | 0 0
  1. // Timer enabled Image Viewer Part4 of 5
  2. // Mark Harrington the main.cpp
  3.  
  4. // Links for others who may be interested can be found on  git hub at this address
  5. // https://github.com/markh2016/QT_Timer_Imageviewer.git
  6.  
  7. /* Special word of thanks to Brian  Cairns  Voidrealms  facebook who put tutorials together for us whom  cant afford much  right now  Working version   / desktop  recording  available  at this link https://www.facebook.com/groups/1400884323467285 */
  8.  
  9. #include "imagedialog.h"
  10.  
  11. #include <QApplication>
  12.  
  13. int main(int argc, char *argv[])
  14. {
  15.     QApplication a(argc, argv);
  16.     ImageDialog w;
  17.     w.show();
  18.     return a.exec();
  19. }
Add Comment
Please, Sign In to add comment