| 53 | KeyValueIdentifier::KeyValueIdentifier(const boost::regex& re) : m_re(re) {} |
| 54 | |
| 55 | StringVector KeyValueIdentifier::names() const { |
| 56 | return m_names; |
| 57 | } |
| 58 | |
| 59 | boost::optional<boost::regex> KeyValueIdentifier::regex() const { |
| 60 | if (!m_names.empty()) { |
no outgoing calls
no test coverage detected