MCPcopy Create free account
hub / github.com/Bwar/CJsonObject / IsEmpty

Method IsEmpty

CJsonObject.cpp:558–569  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

556}
557
558bool 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
571bool CJsonObject::IsArray() const
572{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected