![]() |
BSHA3
0.17.99
P2P Blockchain, based on Bitcoin
|
#include <qt/bitcoingui.h>
#include <chainparams.h>
#include <qt/clientmodel.h>
#include <fs.h>
#include <qt/guiconstants.h>
#include <qt/guiutil.h>
#include <qt/intro.h>
#include <qt/networkstyle.h>
#include <qt/optionsmodel.h>
#include <qt/platformstyle.h>
#include <qt/splashscreen.h>
#include <qt/utilitydialog.h>
#include <qt/winshutdownmonitor.h>
#include <interfaces/handler.h>
#include <interfaces/node.h>
#include <noui.h>
#include <rpc/server.h>
#include <ui_interface.h>
#include <uint256.h>
#include <util.h>
#include <warnings.h>
#include <walletinitinterface.h>
#include <memory>
#include <stdint.h>
#include <boost/thread.hpp>
#include <QApplication>
#include <QDebug>
#include <QLibraryInfo>
#include <QLocale>
#include <QMessageBox>
#include <QSettings>
#include <QThread>
#include <QTimer>
#include <QTranslator>
#include <qt/bitcoin.moc>
Go to the source code of this file.
Classes | |
class | BitcoinCore |
Class encapsulating Bitcoin Core startup and shutdown. More... | |
class | BitcoinApplication |
Main Bitcoin application object. More... | |
Functions | |
void | DebugMessageHandler (QtMsgType type, const QMessageLogContext &context, const QString &msg) |
int | main (int argc, char *argv[]) |
Variables | |
const std::function< std::string(const char *)> | G_TRANSLATION_FUN |
Translate string to current locale using Qt. More... | |
void DebugMessageHandler | ( | QtMsgType | type, |
const QMessageLogContext & | context, | ||
const QString & | msg | ||
) |
Definition at line 138 of file bitcoin.cpp.
int main | ( | int | argc, |
char * | argv[] | ||
) |
Definition at line 556 of file bitcoin.cpp.
const std::function<std::string(const char*)> G_TRANSLATION_FUN |
Translate string to current locale using Qt.
Translate a message to the native language of the user.
Definition at line 80 of file bitcoin.cpp.