| 81 | } |
| 82 | |
| 83 | SelectionInfo::SelectionInfo() : |
| 84 | beginLine(0), endLine(0), count(0) |
| 85 | { |
| 86 | } |
| 87 | |
| 88 | SelectionInfo::SelectionInfo(int beginLine, int endLine, int count) : |
| 89 | beginLine(beginLine), endLine(endLine), count(count) |
nothing calls this directly
no outgoing calls
no test coverage detected