aboutsummaryrefslogtreecommitdiff
path: root/bitcoin.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2011-05-07 22:13:39 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2011-05-07 22:13:39 +0200
commitaaa1c3c4001d4931299d674ef4146d8201dae634 (patch)
tree615551684c7ece09272db223dd6e5a89ec453100 /bitcoin.cpp
downloadbitcoin-aaa1c3c4001d4931299d674ef4146d8201dae634.tar.xz
initial commit
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();
+}