#include <string>
Go to the source code of this file.
Classes | |
class | TreeItem< PAYLOAD > |
Template class for tree items that can handle tree children in a generic way - firstChild(), next() and parent(). Each item stores one value of type 'PAYLOAD'. | |
class | SortedTreeItem< PAYLOAD > |
Template class for tree items that maintain sort order. | |
Functions | |
template<class ITEM, class PAYLOAD> | |
ITEM * | findDirectChild (ITEM *item, PAYLOAD searchVal) |
|
Find a direct child ( i.e., non-recursive ) with value "searchVal". Returns 0 if there is no such child. |