BPLightContraption
 All Classes Namespaces Files Functions Variables Macros Pages
main.cpp
Go to the documentation of this file.
1 /*! \file
2  * \brief Main file for the BPLightContraption project
3  * \author Benjamin Pritchard (ben@bennyp.org)
4  * \copyright 2013 Benjamin Pritchard. Released under the MIT License
5  */
6 
7 #include "triaclight.h"
8 #include "powerunit.h"
9 
10 #include <QApplication>
11 #include <QMessageBox>
12 
13 int main(int argc, char *argv[])
14 {
15  QApplication a(argc, argv);
16 
18  w.show();
19 
20  return a.exec();
21 }
22