mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
18 lines
222 B
C++
18 lines
222 B
C++
/*
|
|
* 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();
|
|
}
|