no "using namespace std" in a header

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1314 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
hsc
2012-06-06 14:27:29 +00:00
parent c9c468fdbd
commit 7573010685
2 changed files with 6 additions and 8 deletions

View File

@ -2,7 +2,7 @@
using namespace std;
ProtoOStream::ProtoOStream(ostream* outfile) : m_outfile(outfile)
ProtoOStream::ProtoOStream(std::ostream *outfile) : m_outfile(outfile)
{
m_log.setDescription("ProtoStream");
m_log.showTime(false);
@ -26,7 +26,7 @@ bool ProtoOStream::writeMessage(google::protobuf::Message* m)
//PROTOISTREAM
ProtoIStream::ProtoIStream(istream* infile) : m_infile(infile)
ProtoIStream::ProtoIStream(std::istream *infile) : m_infile(infile)
{
m_log.setDescription("ProtoStream");
m_log.showTime(false);