|
degate 0.1.1
|
#include <degate.h>#include <Module.h>#include <boost/foreach.hpp>#include <boost/algorithm/string.hpp>Go to the source code of this file.
Functions | |
| std::string | gate_port_already_named (degate::Module::port_collection const &ports, degate::GatePort_shptr gate_port) |
| std::string gate_port_already_named | ( | degate::Module::port_collection const & | ports, |
| degate::GatePort_shptr | gate_port | ||
| ) |
Definition at line 230 of file Module.cc.
Referenced by degate::Module::determine_module_ports().
{
for(Module::port_collection::const_iterator iter = ports.begin(); iter != ports.end(); ++iter) {
if(iter->second == gate_port) return iter->first;
}
return "";
}

1.7.4