Advertisement
ejjoman

main.cpp

Feb 10th, 2015
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <QtCore/QCoreApplication>
  2. #include <QCommandLineParser>
  3.  
  4. // Qt Creator cannot find this header
  5. #include "notificationmanager.h"
  6.  
  7. int main(int argc, char *argv[])
  8. {
  9.     QCoreApplication a(argc, argv);
  10.  
  11.     NotificationManager *m = NotificationManager::instance();
  12.  
  13.     return a.exec();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement