| 36 | } |
| 37 | |
| 38 | std::string CompositeId::ToString() const |
| 39 | { |
| 40 | std::stringstream stream; |
| 41 | stream.exceptions(std::ios::failbit); |
| 42 | stream << m_mainId << " " << m_additionalId; |
| 43 | return stream.str(); |
| 44 | } |
| 45 | |
| 46 | std::string DebugPrint(CompositeId const & id) |
| 47 | { |
no outgoing calls
no test coverage detected