UCommon
Data Structures | Namespaces | Typedefs
linked.h File Reference

Linked objects, lists, templates, and containers. More...

#include <ucommon/platform.h>
#include <ucommon/object.h>
Include dependency graph for linked.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

class  ucommon::DLinkedObject
 A double linked list object. More...
 
class  ucommon::linked_pointer< T >
 A smart pointer template for iterating linked lists. More...
 
class  ucommon::linked_value< T, O >
 Template value class to embed data structure into a linked list. More...
 
class  ucommon::LinkedObject
 Common base class for all objects that can be formed into a linked list. More...
 
class  ucommon::NamedObject
 A linked object base class with members found by name. More...
 
class  ucommon::NamedTree
 The named tree class is used to form a tree oriented list of associated objects. More...
 
class  ucommon::OrderedIndex
 An index container for maintaining an ordered list of objects. More...
 
class  ucommon::OrderedObject
 A linked object base class for ordered objects. More...
 
class  ucommon::ReusableObject
 Reusable objects for forming private heaps. More...
 
class  ucommon::treemap< T >
 Embed data objects into a tree structured memory database. More...
 

Namespaces

 ucommon
 Common namespace for all ucommon objects.
 

Typedefs

typedef LinkedObject * ucommon::LinkedIndex
 Convenience typedef for root pointers of single linked lists.
 
typedef DLinkedObject ucommon::LinkedList
 

Detailed Description

Linked objects, lists, templates, and containers.

Common support for objects that might be organized as single and double linked lists, rings and queues, and tree oriented data structures. These generic classes may be used to help form anything from callback registration systems and indexed memory hashes to xml parsed tree nodes.

Definition in file linked.h.