| 569 | } |
| 570 | |
| 571 | bool CJsonObject::IsEmpty() const |
| 572 | { |
| 573 | if (m_pJsonData != NULL) |
| 574 | { |
| 575 | return(false); |
| 576 | } |
| 577 | else if (m_pExternJsonDataRef != NULL) |
| 578 | { |
| 579 | return(false); |
| 580 | } |
| 581 | return(true); |
| 582 | } |
| 583 | |
| 584 | bool CJsonObject::IsArray() const |
| 585 | { |
nothing calls this directly
no outgoing calls
no test coverage detected