| 104 | |
| 105 | |
| 106 | Ref<LinearViewObject> LinearViewObject::GetPreviousChild(LinearViewObject* obj) |
| 107 | { |
| 108 | BNLinearViewObject* result = BNGetPreviousLinearViewObjectChild(m_object, obj->GetObject()); |
| 109 | if (result) |
| 110 | return new LinearViewObject(result); |
| 111 | return nullptr; |
| 112 | } |
| 113 | |
| 114 | |
| 115 | Ref<LinearViewObject> LinearViewObject::GetNextChild(LinearViewObject* obj) |