summaryrefslogtreecommitdiff
path: root/tikzit/src/main.cpp
blob: b6762115d2bdc7d116a831f8530b0f88b043d7f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "tikzit.h"

#include <QApplication>
#include <QMenuBar>


int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    a.setQuitOnLastWindowClosed(false);
    tikzit = new Tikzit();

    return a.exec();
}