projects
/
shareboard.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
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
}