interospectionRegistry: removed test code

This commit is contained in:
Matej Sekoranja
2014-06-19 21:48:47 +02:00
parent ba4102639e
commit fb97570707
2 changed files with 0 additions and 14 deletions

View File

@@ -68,19 +68,6 @@ int16 IntrospectionRegistry::registerIntrospectionInterface(FieldConstPtr const
return key;
}
void IntrospectionRegistry::printKeysAndValues(string name)
{
cout << "############## print of all key/values of " << name.c_str() << " registry : ###################" << endl;
for(registryMap_t::iterator registryIter = _registry.begin(); registryIter != _registry.end(); registryIter++)
{
cout << "\t" << "Key: "<< registryIter->first << endl;
cout << "\t" << "Value: " << registryIter->second << endl;
cout << "\t" << "References: " << registryIter->second << endl;
cout << "\t" << "Value: " << *(registryIter->second) << endl;
}
}
// TODO slow !!!!
bool IntrospectionRegistry::registryContainsValue(FieldConstPtr const & field, int16& key)
{

View File

@@ -47,7 +47,6 @@ typedef std::map<const short,epics::pvData::FieldConstPtr> registryMap_t;
IntrospectionRegistry();
virtual ~IntrospectionRegistry();
void printKeysAndValues(std::string name);
/**
* Resets registry, i.e. must be done when transport is changed (server restarted).
*/