Added (more Be-ish) Add() methods.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15682 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -65,6 +65,9 @@ public:
|
|||||||
void PopFront();
|
void PopFront();
|
||||||
void PopBack();
|
void PopBack();
|
||||||
|
|
||||||
|
status_t Add(const Value &value) { return PushBack(value); }
|
||||||
|
status_t Add(const Value &value, int32 index) { return Insert(value, index); }
|
||||||
|
|
||||||
status_t Insert(const Value &value, int32 index);
|
status_t Insert(const Value &value, int32 index);
|
||||||
status_t Insert(const Value &value, const Iterator &iterator);
|
status_t Insert(const Value &value, const Iterator &iterator);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user