| 556 | } |
| 557 | |
| 558 | bool CJsonObject::IsEmpty() const |
| 559 | { |
| 560 | if (m_pJsonData != NULL) |
| 561 | { |
| 562 | return(false); |
| 563 | } |
| 564 | else if (m_pExternJsonDataRef != NULL) |
| 565 | { |
| 566 | return(false); |
| 567 | } |
| 568 | return(true); |
| 569 | } |
| 570 | |
| 571 | bool CJsonObject::IsArray() const |
| 572 | { |
nothing calls this directly
no outgoing calls
no test coverage detected