Line data Source code
1 : // Copyright (c) 2018-2020 The Bitcoin Core developers 2 : // Distributed under the MIT software license, see the accompanying 3 : // file COPYING or http://www.opensource.org/licenses/mit-license.php. 4 : 5 : #include <qt/bitcoin.h> 6 : 7 : #include <util/translation.h> 8 : #include <util/url.h> 9 : 10 : #include <QCoreApplication> 11 : 12 : #include <functional> 13 : #include <string> 14 : 15 : /** Translate string to current locale using Qt. */ 16 0 : extern const std::function<std::string(const char*)> G_TRANSLATION_FUN = [](const char* psz) { 17 0 : return QCoreApplication::translate("bitcoin-core", psz).toStdString(); 18 0 : }; 19 : UrlDecodeFn* const URL_DECODE = urlDecode; 20 : 21 0 : int main(int argc, char* argv[]) { return GuiMain(argc, argv); }