Advertisement
tasuku

Untitled

Mar 9th, 2012
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include <QtGui/QApplication>
  2. #include "qmlapplicationviewer.h"
  3.  
  4. #include <twitter4qml.h>
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8.     QApplication app(argc, argv);
  9.  
  10.     Twitter4QML t4q;
  11.  
  12.     QmlApplicationViewer viewer;
  13.     viewer.setMainQmlFile(QLatin1String("qml/userstream/main.qml"));
  14.     viewer.show();
  15.  
  16.     return app.exec();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement