]> git.zarvox.org Git - shareboard.git/blob - main.cpp
Merge branch 'master' of http://zarvox.org/~zarvox/shareboard
[shareboard.git] / main.cpp
1 #include <QApplication>
2 #include "mainwindow.h"
3
4 int main(int argc, char** argv) {
5         QApplication* app = new QApplication(argc, argv);
6         MainWindow* win = new MainWindow();
7         win->show();
8         return app->exec();
9 }