예제 #1
0
Variant Object::o_get(CStrRef propName, bool error /* = true */,
                      CStrRef context /* = null_string */) const {
    if (UNLIKELY(!m_px)) return warn_non_object();
    return m_px->o_get(propName, error, context);
}
예제 #2
0
Variant Object::o_getPublic(CStrRef propName, bool error /* = true */) const {
    if (UNLIKELY(!m_px)) return warn_non_object();
    return m_px->o_getPublic(propName, error);
}
예제 #3
0
Variant Object::o_get(const String& propName, bool error /* = true */,
                      const String& context /* = null_string */) const {
  if (UNLIKELY(!m_obj)) return warn_non_object();
  return m_obj->o_get(propName, error, context);
}