| 24 | namespace Dxf { |
| 25 | |
| 26 | SectionParser::SectionParser(Codes::iterator from, Codes::iterator to, Codes::iterator it, File* file) |
| 27 | : type(toType(*(from + 1))) |
| 28 | , from(from) |
| 29 | , to(to) |
| 30 | , it(it) |
| 31 | , file(file) |
| 32 | { |
| 33 | } |
| 34 | SectionParser::SectionParser(Codes::iterator from, Codes::iterator to, File* file) |
| 35 | : type(toType(*(from + 1))) |
| 36 | , from(from) |
nothing calls this directly
no outgoing calls
no test coverage detected