IsInstanceOfClassExact (inline)
Syntax
// // Strong typing definition // static inline bool IsInstanceOfClassExact( OwlInstance owlInstance, const char * name ) { return GetInstanceClass(owlInstance) == GetClassByName(GetModel(owlInstance), name); } // // Weak typing definition // static inline bool IsInstanceOfClassExact( int64_t owlInstance, const char * name ) { return GetInstanceClass(owlInstance) == GetClassByName(GetModel(owlInstance), name); }