Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ost_typemanager(3) [debian man page]

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

NAME
ost::TypeManager - This class manages the types for generation of the persistent objects. SYNOPSIS
#include <persist.h> Classes class Registration This manages a registration to the typemanager - attempting to remove problems with the optimisers. Public Types typedef std::map< String, NewBaseObjectFunction > StringFunctionMap" Static Public Member Functions static void add (const char *name, NewBaseObjectFunction construction) This adds a new construction function to the type manager. static void remove (const char *name) And this one removes a type from the managers lists. static BaseObject * createInstanceOf (const char *name) This function creates a new object of the required type and returns a pointer to it. Detailed Description This class manages the types for generation of the persistent objects. Its data structures are managed automatically by the system. They are implicitly filled by the constructors who declare classes to the system. Author: Daniel Silverstone Type manager for persistence engine. Member Typedef Documentation typedef std::map<String,NewBaseObjectFunction> ost::TypeManager::StringFunctionMap Member Function Documentation static void ost::TypeManager::add (const char *name, NewBaseObjectFunctionconstruction) [static] This adds a new construction function to the type manager. static BaseObject* ost::TypeManager::createInstanceOf (const char *name) [static] This function creates a new object of the required type and returns a pointer to it. NULL is returned if we couldn't find the type static void ost::TypeManager::remove (const char *name) [static] And this one removes a type from the managers lists. Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::TypeManager(3)

Check Out this Related Man Page

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

NAME
ost::ChecksumDigest - A simple checksum digest function. SYNOPSIS
#include <digest.h> Inherits ost::Digest. Public Member Functions ChecksumDigest () void initDigest (void) unsigned getSize (void) unsigned getDigest (unsigned char *buffer) void putDigest (const unsigned char *buffer, unsigned length) Protected Member Functions int overflow (int c) std::ostream & strDigest (std::ostream &os) Detailed Description A simple checksum digest function. Author: David Sugar dyfet@ostel.com checksum hash function. Constructor &; Destructor Documentation ost::ChecksumDigest::ChecksumDigest () Member Function Documentation unsigned ost::ChecksumDigest::getDigest (unsigned char *buffer) [virtual] Implements ost::Digest. unsigned ost::ChecksumDigest::getSize (void) [inline], [virtual] Implements ost::Digest. void ost::ChecksumDigest::initDigest (void) [inline], [virtual] Implements ost::Digest. int ost::ChecksumDigest::overflow (intc) [protected] void ost::ChecksumDigest::putDigest (const unsigned char *buffer, unsignedlength) [virtual] Implements ost::Digest. std::ostream& ost::ChecksumDigest::strDigest (std::ostream &os) [protected], [virtual] Implements ost::Digest. Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::ChecksumDigest(3)
Man Page