summaryrefslogtreecommitdiffstats
path: root/FoldingCodeExample/main.cpp
blob: 6e1583d7e3af2119459377e60674f02bf3d54399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

#include <QtGui>
#include "editor.h"

int main(int argc, char **args)
{
    QApplication app(argc, args);

    Editor editor;
    editor.show();

    return app.exec();
}