~etulfetulf/aubrowser/test2

« back to all changes in this revision

Viewing changes to main.cpp

  • Committer: Nathan Osman
  • Date: 2010-11-13 04:41:57 UTC
  • Revision ID: admin@quickmediasolutions.com-20101113044157-8ck4patetw9umd09
Added more skeleton code and license information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <QtGui/QApplication>
2
 
#include "CMainWindow.h"
3
 
 
4
 
int main(int argc, char *argv[])
5
 
{
6
 
    QApplication a(argc, argv);
7
 
    CMainWindow w;
8
 
    w.show();
9
 
 
10
 
    return a.exec();
11
 
}