| 25 | using namespace WireAttributesHelper; |
| 26 | |
| 27 | bool WireAttributes::has_attribute(const std::string& name) const { |
| 28 | AttrMap::const_iterator itr = m_attr_map.find(name); |
| 29 | return itr != m_attr_map.end(); |
| 30 | } |
| 31 | |
| 32 | const MatrixFr& WireAttributes::get_attribute(const std::string& name) const { |
| 33 | AttrMap::const_iterator itr = m_attr_map.find(name); |