First version of ImageScaler Widget
[mussa.git] / mussagl.cxx
1 #include <QApplication>
2
3 #include "qui/PathWindow.h"
4
5 int main(int argc, char **argv)
6 {
7   QApplication app(argc, argv);
8
9   PathWindow win;
10   win.show();
11   app.exec();
12 }