|
| BError | open (BString filename) |
| |
| BError | getNextId (int &id) |
| |
| BError | find (int id, BStringList &csvList) |
| |
| BError | write (int id, BStringList &csvList) |
| |
| | BList () |
| |
| | BList (const BList< BStringList > &l) |
| |
| virtual | ~BList () |
| |
| void | start (BIter &i) const |
| | Iterator to start of list.
|
| |
| BIter | begin () const |
| | Iterator for start of list.
|
| |
| BIter | end () const |
| | Iterator for end of list.
|
| |
| BIter | end (BIter &i) const |
| | Iterator for end of list.
|
| |
| void | next (BIter &i) const |
| | Iterator for next item in list.
|
| |
| void | prev (BIter &i) |
| | Iterator for previous item in list.
|
| |
| BIter | goTo (int pos) const |
| | Iterator for pos item in list.
|
| |
| int | position (BIter i) |
| | Postition in list item with iterator i.
|
| |
| unsigned int | number () const |
| | Number of items in list.
|
| |
| unsigned int | size () const |
| | Number of items in list.
|
| |
| int | isEnd (BIter &i) const |
| | True if iterator refers to last item.
|
| |
| BStringList & | front () |
| | Get first item in list.
|
| |
| BStringList & | rear () |
| | Get last item in list.
|
| |
| BStringList & | get (BIter i) |
| | Get item specified by iterator in list.
|
| |
| const BStringList & | get (BIter i) const |
| | Get item specified by iterator in list.
|
| |
| void | append (const BStringList &item) |
| | Append item to list.
|
| |
| void | append (const BList< BStringList > &l) |
| | Append list to list.
|
| |
| virtual void | insert (BIter &i, const BStringList &item) |
| | Insert item before item.
|
| |
| void | insertAfter (BIter &i, const BStringList &item) |
| | Insert item after item.
|
| |
| virtual void | clear () |
| | Clear the list.
|
| |
| virtual void | del (BIter &i) |
| | Delete specified item.
|
| |
| void | deleteLast () |
| | Delete last item.
|
| |
| void | deleteFirst () |
| | Delete fisrt item.
|
| |
| void | push (const BStringList &i) |
| | Push item onto list.
|
| |
| BStringList | pop () |
| | Pop item from list deleteing item.
|
| |
| void | queueAdd (const BStringList &i) |
| | Add item to end of list.
|
| |
| BStringList | queueGet () |
| | Get item from front of list deleteing item.
|
| |
| int | has (const BStringList &i) const |
| | Checks if the item is in the list.
|
| |
| void | swap (BIter i1, BIter i2) |
| | Swap two items in list.
|
| |
| void | sort () |
| | Sort list based on get(i) values.
|
| |
| void | sort (SortFunc func) |
| | Sort list based on Sort func.
|
| |
| BList< BStringList > & | operator= (const BList< BStringList > &l) |
| |
| BStringList & | operator[] (int i) |
| |
| const BStringList & | operator[] (int i) const |
| |
| BStringList & | operator[] (BIter i) |
| |
| const BStringList & | operator[] (const BIter &i) const |
| |
| BList< BStringList > | operator+ (const BList< BStringList > &l) const |
| |