-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
27 lines (20 loc) · 765 Bytes
/
main.cpp
File metadata and controls
27 lines (20 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "bitcoinserver.h"
#include <QApplication>
#include "log4cxx/logger.h"
#include "log4cxx/basicconfigurator.h"
#include "log4cxx/propertyconfigurator.h"
#include "log4cxx/helpers/exception.h"
using namespace log4cxx;
using namespace log4cxx::helpers;
LoggerPtr g_logger(Logger::getLogger("BitcoinLogger"));
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
log4cxx::PropertyConfigurator::configure("bitCoinserver.log4cxx");
LOG4CXX_INFO(g_logger, std::string("==================================================================\n\t\t") +
"Wellcome to BITNet \n" +
"==================================================================");
BitcoinServer w;
w.show();
return a.exec();
}