2011-05-07 17:13:39 -03:00
|
|
|
/*
|
|
|
|
* W.J. van der Laan 2011
|
|
|
|
*/
|
2011-05-12 08:49:42 -04:00
|
|
|
#include "bitcoingui.h"
|
2011-05-07 17:13:39 -03:00
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
|
|
|
BitcoinGUI window;
|
|
|
|
|
|
|
|
window.show();
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|