Remove using namespace std
from header file
It's considered bad form to import things into the global namespace in a header. Put it in the cpp files where it is needed instead.
This commit is contained in:
parent
807691ca96
commit
09eb201b1b
9 changed files with 21 additions and 13 deletions
|
@ -12,6 +12,7 @@
|
|||
|
||||
#include <boost/filesystem/operations.hpp>
|
||||
|
||||
using namespace std;
|
||||
using namespace boost;
|
||||
using namespace boost::asio;
|
||||
using namespace json_spirit;
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
|
||||
#include <boost/assign/list_of.hpp>
|
||||
|
||||
using namespace std;
|
||||
using namespace boost::assign;
|
||||
|
||||
//
|
||||
|
|
|
@ -12,13 +12,11 @@
|
|||
|
||||
#include <vector>
|
||||
|
||||
using namespace std;
|
||||
|
||||
typedef unsigned char MessageStartChars[MESSAGE_START_SIZE];
|
||||
|
||||
struct CDNSSeedData {
|
||||
string name, host;
|
||||
CDNSSeedData(const string &strName, const string &strHost) : name(strName), host(strHost) {}
|
||||
std::string name, host;
|
||||
CDNSSeedData(const std::string &strName, const std::string &strHost) : name(strName), host(strHost) {}
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -51,7 +49,7 @@ public:
|
|||
|
||||
const uint256& HashGenesisBlock() const { return hashGenesisBlock; }
|
||||
const MessageStartChars& MessageStart() const { return pchMessageStart; }
|
||||
const vector<unsigned char>& AlertKey() const { return vAlertPubKey; }
|
||||
const std::vector<unsigned char>& AlertKey() const { return vAlertPubKey; }
|
||||
int GetDefaultPort() const { return nDefaultPort; }
|
||||
const uint256& ProofOfWorkLimit() const { return bnProofOfWorkLimit; }
|
||||
int SubsidyHalvingInterval() const { return nSubsidyHalvingInterval; }
|
||||
|
@ -74,16 +72,16 @@ public:
|
|||
bool RequireStandard() const { return fRequireStandard; }
|
||||
/* Make standard checks */
|
||||
bool RPCisTestNet() const { return fRPCisTestNet; }
|
||||
const string& DataDir() const { return strDataDir; }
|
||||
const std::string& DataDir() const { return strDataDir; }
|
||||
/* Make miner stop after a block is found. In RPC, don't return
|
||||
* until nGenProcLimit blocks are generated */
|
||||
bool MineBlocksOnDemand() const { return fMineBlocksOnDemand; }
|
||||
Network NetworkID() const { return networkID; }
|
||||
/* Return the BIP70 network string (main, test or regtest) */
|
||||
std::string NetworkIDString() const { return strNetworkID; }
|
||||
const vector<CDNSSeedData>& DNSSeeds() const { return vSeeds; }
|
||||
const std::vector<CDNSSeedData>& DNSSeeds() const { return vSeeds; }
|
||||
const std::vector<unsigned char>& Base58Prefix(Base58Type type) const { return base58Prefixes[type]; }
|
||||
const vector<CAddress>& FixedSeeds() const { return vFixedSeeds; }
|
||||
const std::vector<CAddress>& FixedSeeds() const { return vFixedSeeds; }
|
||||
int RPCPort() const { return nRPCPort; }
|
||||
protected:
|
||||
CChainParams() {}
|
||||
|
@ -91,7 +89,7 @@ protected:
|
|||
uint256 hashGenesisBlock;
|
||||
MessageStartChars pchMessageStart;
|
||||
// Raw pub key bytes for the broadcast alert signing key.
|
||||
vector<unsigned char> vAlertPubKey;
|
||||
std::vector<unsigned char> vAlertPubKey;
|
||||
int nDefaultPort;
|
||||
int nRPCPort;
|
||||
uint256 bnProofOfWorkLimit;
|
||||
|
@ -99,14 +97,14 @@ protected:
|
|||
int nEnforceBlockUpgradeMajority;
|
||||
int nRejectBlockOutdatedMajority;
|
||||
int nToCheckBlockUpgradeMajority;
|
||||
string strDataDir;
|
||||
std::string strDataDir;
|
||||
int nMinerThreads;
|
||||
vector<CDNSSeedData> vSeeds;
|
||||
std::vector<CDNSSeedData> vSeeds;
|
||||
std::vector<unsigned char> base58Prefixes[MAX_BASE58_TYPES];
|
||||
Network networkID;
|
||||
std::string strNetworkID;
|
||||
CBlock genesis;
|
||||
vector<CAddress> vFixedSeeds;
|
||||
std::vector<CAddress> vFixedSeeds;
|
||||
bool fRequireRPCPassword;
|
||||
bool fMiningRequiresPeers;
|
||||
bool fDefaultCheckMemPool;
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
#ifdef ENABLE_WALLET
|
||||
#include "wallet.h"
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// BitcoinMiner
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
#include <QDebug>
|
||||
#include <QSslCertificate>
|
||||
|
||||
using namespace std;
|
||||
|
||||
class SSLVerifyError : public std::runtime_error
|
||||
{
|
||||
|
|
|
@ -24,7 +24,7 @@ public:
|
|||
PaymentRequestPlus() { }
|
||||
|
||||
bool parse(const QByteArray& data);
|
||||
bool SerializeToString(string* output) const;
|
||||
bool SerializeToString(std::string* output) const;
|
||||
|
||||
bool IsInitialized() const;
|
||||
QString getPKIType() const;
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
#include <QUrlQuery>
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
using namespace boost;
|
||||
|
||||
const int BITCOIN_IPC_CONNECT_TIMEOUT = 1000; // milliseconds
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#include <stdint.h>
|
||||
#include <string>
|
||||
|
||||
using namespace std;
|
||||
|
||||
QString TransactionDesc::FormatTxStatus(const CWalletTx& wtx)
|
||||
{
|
||||
AssertLockHeld(cs_main);
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
#include <QSet>
|
||||
#include <QTimer>
|
||||
|
||||
using namespace std;
|
||||
|
||||
WalletModel::WalletModel(CWallet *wallet, OptionsModel *optionsModel, QObject *parent) :
|
||||
QObject(parent), wallet(wallet), optionsModel(optionsModel), addressTableModel(0),
|
||||
transactionTableModel(0),
|
||||
|
|
Loading…
Reference in a new issue