~george-edison55/twistload/trunk

« back to all changes in this revision

Viewing changes to src/main.cpp

  • Committer: Nathan Osman
  • Date: 2014-05-18 22:39:42 UTC
  • Revision ID: git-v1:599a80382f9fa4338d2c6eec7027af5fc594c3c8
Moved source files and UI files to separate directories.

Show diffs side-by-side

added added

removed removed

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