Remove using std::XXX from headers
This is a bad practice to have using in headers because it pollutes the
namespace of any user of that header.
diff --git a/parameter/Subsystem.cpp b/parameter/Subsystem.cpp
index 9a550d5..28faa01 100644
--- a/parameter/Subsystem.cpp
+++ b/parameter/Subsystem.cpp
@@ -40,6 +40,10 @@
#define base CConfigurableElementWithMapping
+using std::string;
+using std::list;
+using std::ostringstream;
+
CSubsystem::CSubsystem(const string& strName) : base(strName), _pComponentLibrary(new CComponentLibrary), _pInstanceDefinition(new CInstanceDefinition), _bBigEndian(false), _pMappingData(NULL)
{
// Note: A subsystem contains instance components
@@ -240,7 +244,7 @@
string& strMappingValue) const
{
// Find creator to get key name
- vector<CSubsystemObjectCreator*>::const_iterator it;
+ std::vector<CSubsystemObjectCreator*>::const_iterator it;
for (it = _subsystemObjectCreatorArray.begin();
it != _subsystemObjectCreatorArray.end(); ++it) {