| 26 | } |
| 27 | |
| 28 | GeomType TypeFromString(std::string type) |
| 29 | { |
| 30 | if (type == "Point") |
| 31 | return GeomType::Point; |
| 32 | else if (type == "Line") |
| 33 | return GeomType::Line; |
| 34 | else if (type == "Area") |
| 35 | return GeomType::Area; |
| 36 | else |
| 37 | return GeomType::Undefined; |
| 38 | } |
| 39 | } // namespace feature |
| 40 | |
| 41 | std::string DebugPrint(FeatureID const & id) |
no outgoing calls
no test coverage detected