| 33 | } |
| 34 | |
| 35 | int Integer::compare(const Integer& obj) const |
| 36 | { |
| 37 | if (m_value < obj.m_value) |
| 38 | return -1; |
| 39 | else if (m_value == obj.m_value) |
| 40 | return 0; |
| 41 | else |
| 42 | return 1; |
| 43 | } |
| 44 | |
| 45 | void Integer::printCount() |
| 46 | { |
nothing calls this directly
no outgoing calls
no test coverage detected