| 22 | |
| 23 | |
| 24 | DebugAdapterType* DebugAdapterType::GetByName(const std::string& name) |
| 25 | { |
| 26 | BNDebugAdapterType* adapter = BNGetDebugAdapterTypeByName(name.c_str()); |
| 27 | if (!adapter) |
| 28 | return nullptr; |
| 29 | |
| 30 | return new DebugAdapterType(adapter); |
| 31 | } |
| 32 | |
| 33 | |
| 34 | DebugAdapterType::DebugAdapterType(BNDebugAdapterType* controller) |
nothing calls this directly
no test coverage detected