All pastes #2108909 Raw Edit

main.cpp

public text v1 · immutable
#2108909 ·published 2012-02-02 02:09 UTC
rendered paste body
#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    
    return a.exec();
}