| 16 | namespace embedx { |
| 17 | |
| 18 | bool EmbedInstanceReader::InitGraphClient(const GraphClient* graph_client) { |
| 19 | if (graph_client == nullptr) { |
| 20 | DXERROR("Graph_client is nullptr."); |
| 21 | return false; |
| 22 | } |
| 23 | graph_client_ = graph_client; |
| 24 | return true; |
| 25 | } |
| 26 | |
| 27 | bool EmbedInstanceReader::InitDeepClient(const DeepClient* deep_client) { |
| 28 | if (deep_client == nullptr) { |
no outgoing calls
no test coverage detected