Guest User

Untitled

a guest
May 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. my_app_imp.h
  2. ----------------------------------------------------------
  3. AppWindow::AppWindow(){
  4. QTextBrowser *b = new QTextBrowser;
  5. b->setSource(QString("./index.html"));
  6. }
  7.  
  8. main.cpp
  9. ----------------------------------------------------------
  10.  
  11. #include <QApplication>
  12. #include "my_app_imp.h"
  13.  
  14. int main(int argc, char *argv[]){
  15. QApplication app(argc, argv);
  16. AppWindow *ap = new AppWindow;
  17. ap->show();
  18. return app.exec();
  19. }
Add Comment
Please, Sign In to add comment