Added bool operator to my::Json

This commit is contained in:
Alex Zolotarev 2011-09-26 22:07:08 +03:00 committed by Alex Zolotarev
parent fbfd424932
commit 95d4168b9b

View file

@ -62,6 +62,11 @@ public:
return m_pJson;
}
operator bool () const
{
return m_pJson != 0;
}
private:
json_t * m_pJson;
};