| 39 | void object::inc_ref() { ++m_ref_count; } |
| 40 | |
| 41 | void object::dec_ref() { SASSERT(m_ref_count > 0); if (--m_ref_count == 0) m_context.del_object(this); } |
| 42 | |
| 43 | unsigned context::add_object(api::object* o) { |
| 44 | flush_objects(); |
no test coverage detected