tools/drawMapTest/main.cpp
author koda
Sat, 03 Nov 2012 19:16:05 +0100
changeset 7941 1e8b7fc8f90d
parent 4425 2314bb0c433d
permissions -rw-r--r--
this version of tremor requires a nil check on close_func https://svn.xiph.org/trunk/Tremor/vorbisfile.c

#include <QtGui/QApplication>
#include "mainwindow.h"

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