Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Timer enabled Image Viewer Part4 of 5
- // Mark Harrington the main.cpp
- // Links for others who may be interested can be found on git hub at this address
- // https://github.com/markh2016/QT_Timer_Imageviewer.git
- /* 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 */
- #include "imagedialog.h"
- #include <QApplication>
- int main(int argc, char *argv[])
- {
- QApplication a(argc, argv);
- ImageDialog w;
- w.show();
- return a.exec();
- }
Add Comment
Please, Sign In to add comment