]> git.zarvox.org Git - shareboard.git/blob - main.cpp
Implement image insertion and placement, tool selection, and eraser.
[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 }