| 63 | } |
| 64 | |
| 65 | std::string EUnwrapMethod_enumToString(EUnwrapMethod method) |
| 66 | { |
| 67 | switch (method) |
| 68 | { |
| 69 | case EUnwrapMethod::Basic: |
| 70 | return "Basic"; |
| 71 | case EUnwrapMethod::ABF: |
| 72 | return "ABF"; |
| 73 | case EUnwrapMethod::LSCM: |
| 74 | return "LSCM"; |
| 75 | } |
| 76 | throw std::out_of_range("Unrecognized EUnwrapMethod"); |
| 77 | } |
| 78 | |
| 79 | EVisibilityRemappingMethod EVisibilityRemappingMethod_stringToEnum(const std::string& method) |
| 80 | { |
no outgoing calls
no test coverage detected