added a method that is useful for debugging
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2219 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -114,6 +114,14 @@ public:
|
||||
return _Get(item_iter, v);
|
||||
}
|
||||
|
||||
bool GetCurrentKey(key **k)
|
||||
{
|
||||
if (item_iter < 0 || item_iter >= item_count)
|
||||
return false;
|
||||
*k = &items[item_iter]->k;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool RemoveCurrent()
|
||||
{
|
||||
return _Remove(item_iter);
|
||||
|
||||
Reference in New Issue
Block a user