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:
Ingo Weinhold 2005-12-27 21:08:02 +00:00
parent 447308b363
commit 9897917b9c

View File

@ -65,6 +65,9 @@ public:
void PopFront();
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, const Iterator &iterator);