Commit de3bd82f by IOWA\vhorosewski

Removed the "using namespace std" line from this header as it pollutes the…

Removed the "using namespace std" line from this header as it pollutes the global namespace in all files which include it; string's, vector's, and such are now prefixed with "std::" and the using directive has been moved to the implementation file, as necessary.
parent f94b51c1
/////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////
// //
// $Id: DaqIoLib.h,v 1.2 2005/03/14 23:05:04 yiannis Exp $ // $Id: DaqIoLib.h,v 1.3 2013/04/29 17:20:22 IOWA\vhorosewski Exp $
// Date: March 2005 // Date: March 2005
// Author: Yiannis Papelis // Author: Yiannis Papelis
// //
...@@ -14,7 +14,6 @@ ...@@ -14,7 +14,6 @@
#include <vector> #include <vector>
#include <map> #include <map>
using namespace std;
#include "DaqIoLibDefines.h" #include "DaqIoLibDefines.h"
#include "DaqBuffer.h" #include "DaqBuffer.h"
#include "DaqChannelInfo.h" #include "DaqChannelInfo.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment