CAtomicEnvironmentSetter | Class allowing for multiple updates to the system environment within a single lock in a thread-safe way, can be used on the stack |
CAutoLocker | Safe and exception-safe way to hold locks in Qore, only to be used on the stack, cannot be dynamically allocated |
CAutoUnlocker | Safe and exception-safe way to release and re-acquire locks in Qore, only to be used on the stack, cannot be dynamically allocated |
CAutoVLock | AutoVLock is a container for safely managing global variable and object lock handovers, required for functions accessing global variables and object data where locking is necessary |
CBuiltinFunctionList | Interface to the global list of all builtin functions in the library |
►CConstHashIterator | Constant iterator class for QoreHashNode, to be only created on the stack |
CReverseConstHashIterator | Reverse constant iterator class for QoreHashNode, to be only created on the stack |
CConstListIterator | For use on the stack only: iterates through elements of a const QoreListNode |
CDatasource | Base class for accessing databases in Qore through a Qore DBI driver |
►CDateTime | Holds absolute and relative date/time values in Qore with precision to the microsecond |
CDateTimeNode | Qore's parse tree/value type for date-time values, reference-counted, dynamically-allocated only |
CDateTimeNodeValueHelper | Manages calls to AbstractQoreNode::getDateTimeRepresentation() when a DateTimeNode value is required |
CDateTimeValueHelper | Manages calls to AbstractQoreNode::getDateTimeRepresentation() when a simple DateTime value is required |
CDBIDriver | This class provides the internal link to the database driver for Qore's DBI layer |
CDBIDriverList | This class is used to register and find DBI drivers loaded in qore |
CExceptionSink | Container for holding Qore-language exception information and also for registering a "thread_exit" call |
CFeatureList | STL-like list containing all presently-loaded Qore features |
Cfree_ptr< T > | Functor template for calling free() on pointers |
CHashAssignmentHelper | Use this class to make assignments to hash keys from a pointer to the key value |
►CHashIterator | Iterator class for QoreHashNode, to be only created on the stack |
CReverseHashIterator | Reverse iterator class for QoreHashNode, to be only created on the stack |
CListIterator | For use on the stack only: iterates through a the elements of a QoreListNode |
Cltchar | For char less-than comparisons |
Cltcstrcase | For simple c-string case-insensitive less-than comparisons |
Cltstr | For simple c-string less-than comparisons |
Cltstrcase | For std::string case-insensitive less-than comparisons |
CModuleManager | Manages the loading of Qore modules from feature or path names. Also manages adding module changes into QoreProgram objects |
COptLocker | Safe and exception-safe way to hold optional locks in Qore, only to be used on the stack, cannot be dynamically allocated |
CParseOptionMap | Access to parse option information |
Cqore_dbi_method_list | This is the data structure Qore DBI drivers will use to pass the supported DBI methods |
Cqore_i2_u | Used to swap 2-byte integers |
Cqore_i4_u | Used to swap byte order of 4-byte values |
Cqore_i8_u | Used to swap byte order of 8-byte values |
Cqore_mod_api_compat_s | Element of qore_mod_api_list; |
Cqore_option_s | Definition of the elements in the qore_option_list |
Cqore_tm | For returning broken-down time information |
CQoreAddrInfo | Interface to getaddrinfo |
CQoreAutoRWReadLocker | Safe and exception-safe way to hold read locks in Qore, only to be used on the stack, cannot be dynamically allocated |
CQoreAutoRWWriteLocker | Safe and exception-safe way to hold write locks in Qore, only to be used on the stack, cannot be dynamically allocated |
CQoreClass | Defines a Qore-language class |
CQoreCondition | Thread condition class implementing a wrapper for pthread_cond_t |
CQoreCounter | Simple thread-safe counter object; objects can block on it until the counter reaches zero |
CQoreEncoding | Defines string encoding functions in Qore |
CQoreEncodingManager | Manages encodings in Qore |
CQoreFile | Controlled access to file data through Qore data structures |
CQoreForeignThreadHelper | Use this class to temporarily register and deregister a foreign thread to allow Qore code to be executed and the Qore library to be used from threads not created by the Qore library |
CQoreFtpClient | Thread-safe access to FTP servers through Qore data structures |
►CQoreHttpClientObject | Way to communicate with HTTP servers using Qore data structures |
CQoreHTTPClient | Way to communicate with HTTP servers using Qore data structures |
CQoreListNodeEvalOptionalRefHolder | For use on the stack only: manages result of the optional evaluation of a QoreListNode |
CQoreMethod | Method in a QoreClass |
CQoreMethodIterator | To be used to iterate through a class' normal (non-static) methods |
►CQoreNamespace | Constants, classes, and subnamespaces in QoreProgram objects |
CRootQoreNamespace | Root namespace of a QoreProgram object |
CQoreNodeAsStringHelper | Safely manages the return values to AbstractQoreNode::getAsString(), stack only, cannot be dynamically allocated |
CQoreNodeEvalOptionalRefHolder | This class manages reference counts for the optional evaluation of AbstractQoreNode objects |
CQoreProgramHelper | Safely manages QoreProgram objects; note the the destructor will block until all background threads in the qore library terminate and until the current QoreProgram terminates |
►CQoreReferenceCounter | Atomic reference counting to Qore objects |
►CAbstractPrivateData | Base class for all data to be used as private data of Qore objects |
CAbstractThreadResource | Base class for saving data using Qore's thread resource management system |
CQoreIteratorBase | Abstract base class for iterator private data |
CQoreProgram | Supports parsing and executing Qore-language code, reference counted, dynamically-allocated only |
CQoreSSLCertificate | X509 certificate, reference-counted, dynamically-allocated only |
CQoreSSLPrivateKey | Access to a private key data structure for SSL connections |
►CAbstractQoreNode | The base class for all value and parse types in Qore expression trees |
►CAbstractCallReferenceNode | Base class for call references, reference-counted, dynamically allocated only |
CResolvedCallReferenceNode | Base class for resolved call references |
CQoreHashNode | This is the hash or associative list container type in Qore, dynamically allocated only, reference counted |
CQoreListNode | This is the list container type in Qore, dynamically allocated only, reference counted |
CQoreObject | Implementation of Qore's object data type, reference counted, dynamically-allocated only |
CReferenceNode | Parse type: reference to a lvalue expression |
►CSimpleQoreNode | The base class for all types in Qore expression trees that cannot throw an exception when deleted |
►CSimpleValueQoreNode | Base class for simple value types |
CBinaryNode | Holds arbitrary binary data |
CDateTimeNode | Qore's parse tree/value type for date-time values, reference-counted, dynamically-allocated only |
CQoreBigIntNode | This class implements Qore's 64-bit integer data type, reference-counted, dynamically-allocated only |
CQoreFloatNode | Qore's floating-point value type, dynamically-allocated only, reference counted |
CQoreNumberNode | Qore's arbitrary-precision number value type, dynamically-allocated only, reference counted |
CQoreStringNode | Qore's string value type, reference counted, dynamically-allocated only |
►CUniqueValueQoreNode | This class is for value types that will exists only once in the Qore library, reference counting is disabled |
►CQoreBoolNode | Base class for Qore's 2 boolean classes: QoreBoolTrueNode and QoreBoolFalseNode |
CQoreBoolFalseNode | Qore's boolean "false" node, unique, not dynamically-allocated, not reference-counted |
CQoreBoolTrueNode | Qore's boolean "true" node, unique, not dynamically-allocated, not reference-counted |
CQoreNothingNode | Qore's "NOTHING" parse tree/value type, not-referenced counted, not dynamically allocated |
CQoreNullNode | Qore's SQL "NULL" parse tree/value type, not-referenced counted, not dynamically allocated |
CQoreRWLock | Simple POSIX-threads-based read-write lock |
CQoreSafeRWReadLocker | Safe and exception-safe way to hold read locks in Qore, only to be used on the stack, cannot be dynamically allocated |
CQoreSafeRWWriteLocker | Safe and exception-safe way to hold write locks in Qore, only to be used on the stack, cannot be dynamically allocated |
CQoreSocket | Access to sockets using Qore data structures |
►CQoreSSLBase | Offers static functions to help with translating openssl data structures to Qore data structures |
CQoreSSLCertificate | X509 certificate, reference-counted, dynamically-allocated only |
CQoreStaticMethodIterator | To be used to iterate through a class' static methods |
►CQoreString | Qore's string type supported by the QoreEncoding class |
CQoreStringNode | Qore's string value type, reference counted, dynamically-allocated only |
CQoreStringNodeValueHelper | This class is used to safely manage calls to AbstractQoreNode::getStringRepresentation() when a QoreStringNode value is needed, stack only, may not be dynamically allocated |
CQoreStringValueHelper | This class is used to safely manage calls to AbstractQoreNode::getStringRepresentation() when a simple QoreString value is needed, stack only, may not be dynamically allocated |
CQoreThreadLocalStorage< T > | Access to thread-local storage |
CQoreThreadLock | Mutually-exclusive thread lock |
►CQoreTypeInfoHelper | Helper type to allocate and manage QoreTypeInfo objects (not exported by the library) |
CAbstractQoreClassTypeInfoHelper | Note that the QoreClass object created by this class must be deleted externally |
CQoreTypeSafeReferenceHelper | Helper class to manage variable references passed to functions and class methods, stack only, cannot be dynamically allocated |
CQoreURL | Helps with parsing URLs and provides access to URL components through Qore data structures |
CReferenceArgumentHelper | Allows a reference to be passed as an argument to Qore code |
►CReferenceHolder< T > | Templated class to manage a reference count of an object that can throw a Qore-language exception when dereferenced |
CPrivateDataRefHolder< T > | Convenience class for holding AbstractPrivateData references |
CRefHolder< T > | Templated class for ScopeGuard to hold a c++ reference |
CSafeLocker | Exception-safe way to manage locks in Qore, only to be used on the stack, cannot be dynamically allocated |
►CScopeGuardImplBase | Scope guard class |
CObjScopeGuardImpl0< Obj, MemFun > | Scope guard class |
CObjScopeGuardImpl1< Obj, MemFun, P1 > | Scope guard class |
CObjScopeGuardImpl2< Obj, MemFun, P1, P2 > | Scope guard class |
CScopeGuardImpl0< F > | Scope guard class |
CScopeGuardImpl1< F, P1 > | Scope guard class |
CScopeGuardImpl2< F, P1, P2 > | Scope guard class |
CScopeGuardImpl3< F, P1, P2, P3 > | Scope guard class |
Csimple_delete< T > | Functor template for deleting elements |
Csimple_deref< T > | Functor template for dereferencing elements |
CSimpleRefHolder< T > | Manages a reference count of a pointer to a class that takes a simple "deref()" call with no arguments |
CSocketSource | Helper class for getting socket origination information |
CSQLStatement | This is the public class for DBI drivers supporting Qore's new prepared statement API |
CSystemEnvironment | Class used to safely manipulate the system environment |
CTempEncodingHelper | Use this class to manage strings where the character encoding must be specified and may be different than the actual encoding in the string |
CTempString | Class used to hold a possibly temporary QoreString pointer, stack only, cannot be dynamically allocated |
CThreadCleanupList | List of functions to be run when a thread ends; required for some external libraries that require explicit cleanup when a thread terminates |
►Cstd::vector< T > | STL class |
Ccstr_vector_t | Non-thread-safe vector for storing "char *" that you want to delete |