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:
Wladimir J. van der Laan
2014-06-16 16:30:38 +02:00
parent 807691ca96
commit 09eb201b1b
9 changed files with 21 additions and 13 deletions

View File

@@ -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;