summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2013-04-18 21:53:29 +0000
committerStijn Buys <ingar@osirion.org>2013-04-18 21:53:29 +0000
commit1bdd9ddbfdd021284201bd0a1f5da41be3dc9578 (patch)
tree00a8769924e32d6afbd9f67ab7d939ef36f55b15 /src/main.cc
parent96205403612c73f4c4a3247d7d96560d3d8f92e8 (diff)
Added ui menus, added solve() method.
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc
index 91525f7..c7b1fff 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -1,10 +1,18 @@
+#include "mainwindow.h"
+
#include <QApplication>
-#include "mainwindow.h"
+#include <cstdlib>
int main(int argc, char **argv)
{
+ // TODO initialize random seed
+ /*
+ unsigned int seed = THE_SEED;
+ srandom(seed);
+ */
+
QApplication application(argc, argv);
MainWindow mainwindow;