Molecule Viewer
 All Classes Functions Variables Enumerations Pages
main.cpp
1 
2 #include "MainWindow.hpp"
3 #include "widget.h"
4 #include <QApplication>
5 #include <io.h>
6 #include <sys/stat.h>
7 #include <fcntl.h>
8 
26 
27 
28 int main(int argc, char *argv[])
29 {
30 
31  QApplication a(argc, argv);
32  MainWindow w;
33  w.show();
34  a.exec();
35 
36 }