| 60 | |
| 61 | |
| 62 | std::string Component::GetGuid() |
| 63 | { |
| 64 | char* result = BNComponentGetGuid(m_object); |
| 65 | string stringResult = result; |
| 66 | BNFreeString(result); |
| 67 | return stringResult; |
| 68 | } |
| 69 | |
| 70 | |
| 71 | bool Component::AddFunction(Ref<Function> func) |
no outgoing calls
no test coverage detected