| 54 | namespace OpenOrienteering { |
| 55 | |
| 56 | MapPart::MapPart(const QString& name, Map* map) |
| 57 | : name(name) |
| 58 | , map(map) |
| 59 | { |
| 60 | Q_ASSERT(map); |
| 61 | ; // nothing else |
| 62 | } |
| 63 | |
| 64 | MapPart::~MapPart() |
| 65 | { |
nothing calls this directly
no outgoing calls
no test coverage detected