aboutsummaryrefslogtreecommitdiff
path: root/bitcoin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bitcoin.cpp')
-rw-r--r--bitcoin.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/bitcoin.cpp b/bitcoin.cpp
new file mode 100644
index 0000000000..d43befd41d
--- /dev/null
+++ b/bitcoin.cpp
@@ -0,0 +1,17 @@
+/*
+ * W.J. van der Laan 2011
+ */
+#include "BitcoinGUI.h"
+
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication app(argc, argv);
+
+ BitcoinGUI window;
+
+ window.show();
+
+ return app.exec();
+}