Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ost_objlist(3) [debian man page]

ost::objList< T, K >(3) 				     Library Functions Manual					   ost::objList< T, K >(3)

NAME
ost::objList< T, K > - Used to create and manage a single linked list of objects of a common type. SYNOPSIS
#include <objlink.h> Static Public Member Functions static T * getObject (const K &key) Protected Member Functions objList (const K key) Protected Attributes T * objNext const K objKey Static Protected Attributes static T * objFirst = NULL Detailed Description template<class T, typename K>class ost::objList< T, K > Used to create and manage a single linked list of objects of a common type. The list of created objects can be examined to find a key by an identifier. Author: David Sugar dyfet@gnutelephony.org single linked list searchable template chain. Constructor &; Destructor Documentation template<class T , typename K > ost::objList< T, K >::objList (const Kkey) [inline], [protected] References ost::objList< T, K >::objFirst, ost::objList< T, K >::objKey, and ost::objList< T, K >::objNext. Member Function Documentation template<class T , typename K > T * ost::objList< T, K >::getObject (const K &key) [static] References ost::objList< T, K >::objNext. Member Data Documentation template<class T , typename K > T * ost::objList< T, K >::objFirst = NULL [static], [protected] Referenced by ost::objList< T, K >::objList(). template<class T , typename K > const K ost::objList< T, K >::objKey [protected] Referenced by ost::objList< T, K >::objList(). template<class T , typename K > T* ost::objList< T, K >::objNext [protected] Referenced by ost::objList< T, K >::getObject(), and ost::objList< T, K >::objList(). Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::objList< T, K >(3)

Check Out this Related Man Page

ost::Dir(3)						     Library Functions Manual						       ost::Dir(3)

NAME
ost::Dir - A low level portable directory class. SYNOPSIS
#include <file.h> Inherits ost::File. Public Member Functions Dir (const char *name=NULL) void open (const char *name) void close (void) virtual ~Dir () const char * getName (void) const char * operator++ () const char * operator++ (int) const char * operator* () bool rewind (void) bool operator! () bool isValid (void) Static Public Member Functions static bool create (const char *path, Attr attr=attrGroup) static bool remove (const char *path) static bool setPrefix (const char *path) static bool getPrefix (char *path, size_t size=256) Additional Inherited Members Detailed Description A low level portable directory class. Used to support ccstd Directory container. This provides a basic mechanism for allocating and accessing file entries. Author: David Sugar dyfet@ostel.com low level directory access class. Constructor &; Destructor Documentation ost::Dir::Dir (const char *name = NULL) virtual ost::Dir::~Dir () [virtual] Member Function Documentation void ost::Dir::close (void) static bool ost::Dir::create (const char *path, Attrattr = attrGroup) [static] const char* ost::Dir::getName (void) static bool ost::Dir::getPrefix (char *path, size_tsize = 256) [static] bool ost::Dir::isValid (void) void ost::Dir::open (const char *name) bool ost::Dir::operator! () [inline] const char* ost::Dir::operator* () const char* ost::Dir::operator++ () [inline] const char* ost::Dir::operator++ (int) [inline] static bool ost::Dir::remove (const char *path) [static] bool ost::Dir::rewind (void) static bool ost::Dir::setPrefix (const char *path) [static] Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::Dir(3)
Man Page