| ▼Ndata | Contains a set of classes to easy the handling of data and files, as well as the serialization |
| CBaseFile | This is a wrapper class for the FILE functions that provides all the functionality to handle files safely |
| CBaseStream | This template is used as the base for the input/output stream classes |
| CFileSegment | Identifies a data segment of a file |
| CInputOperator | This struct identifies a basic input operator to be applied to a File object |
| CInputStream | Specialization of the BaseStream for input serializations |
| CLockedAccess | Struct for wrapping the basic FILE locked functions for reading and writing defined in stdio.h |
| COutputOperator | This struct identifies a basic output operator to be applied to a File object |
| COutputStream | Specialization of the BaseStream for output serializations |
| CSerializer | This template class allows to define a "serializer" |
| CSerializer< bool > | Serializer for the bool type |
| CSerializer< int > | Serializer for the int type |
| CSerializer< multimap< string, int > > | Serializer for the multimap<string,int> class |
| CSerializer< string > | Serializer for the string class |
| CSerializer< uint64_t > | Serializer for the uint64_t type |
| CSerializer< vector< T > > | Serializer for the vector class |
| CUnlockedAccess | Struct for wrapping the basic FILE unlocked functions for reading and writing defined in stdio_exts.h |
| Cvint_vector | This class has been implemented with the same philosophy that the class STL vector, but specifically designed to store integers with a length in bytes that can be not multiple from 2 (e.g |
| ▼Nhttp | Contains the definition of a set of classes for working easily with the protocol HTTP |
| CHeader | Class used to handle a HTTP header |
| CHeaderBase | Template class used to identify a HTTP header |
| CHeaderBase< HeaderName::UNDEFINED > | Specialization of the HeaderBase template class with the HeaderName::UNDEFINED value |
| CHeaderName | Container for the strings associated to the most common HTTP headers, used for the specialization of the class HeaderBase |
| CProtocol | Class used to identify the HTTP protocol |
| CRequest | Class used to identify a HTTP request (GET or POST) |
| ▼CResponse | Class used to identify a HTTP response |
| CStatusCodesInitializer | Class used for the initializer |
| ▼Nipc | Contains classes for working with the IPC mechanisms available in Linux using the pthread library |
| CEvent | IPC object that offers the functionality of an event (Windows IPC object), implemented by means of a combination of the pthread mutex and conditional variables API |
| CIPCObject | Class base of all the IPC classes that has the basic operations (Init, Wait and Dispose) to be overloaded |
| CMutex | IPC object that offers the functionality of a mutex, implemented by means of the pthread mutex API |
| CRdWrLock | IPC object that offers the functionality of a read/write lock, implemented by means of the pthread rwlock API |
| ▼Njpeg2000 | Set of classes for handling (reading and indexing) image files with the format defined in the Part 1 and 2 of the JPEG2000 standard |
| CCodestreamIndex | Class used for indexing the information of a JPEG2000 codestream |
| CCodingParameters | Contains the coding parameters of a JPEG2000 image codestream |
| CFileManager | Manages the image files of a repository, allowing read their indexing information, with a caching mechanism for efficiency |
| CImageIndex | Contains the indexing information of a JPEG2000 image file that is managed by the index manager |
| CImageInfo | Contains the indexing information of a JPEG2000 image |
| CIndexManager | Manages the indexing information of a repository fo images |
| CMetadata | Contains the indexing information associated to the meta-data of a JPEG2000 image file |
| CPacket | Contains the information of a packet |
| CPacketIndex | Class used for indexing the packets of a codestream image |
| CPlaceHolder | Contains the information of a place-holder |
| CPoint | Represents a couple of integer values that can be used to identify a coordinate as well as a size |
| CRange | Represents a range of integer values, defined by two values, first and last, which are assumed to be included in the range |
| ▼Njpip | Set of classes related to the JPIP protocol, defined in the Part 9 of the JPEG2000 standard |
| ▼CCacheModel | The cache model of a JPIP client is handled using this class |
| CCodestream | Sub-class of the cache model class used to identify a codestream |
| CDataBinClass | Class that contains the definitions of all the data-bin classes defined for the JPIP protocol |
| CDataBinSelector | Template class that is specialized for allowing basic operations (add and get) with cache models depending on the data-bin classes |
| CDataBinSelector< DataBinClass::MAIN_HEADER > | |
| CDataBinSelector< DataBinClass::META_DATA > | |
| CDataBinSelector< DataBinClass::PRECINCT > | |
| CDataBinSelector< DataBinClass::TILE_HEADER > | |
| CDataBinServer | Contains the core functionality of a (JPIP) data-bin server, which maintains a cache model and is capable of generating data chunks of variable length; |
| CDataBinWriter | Class used to generate data-bin segments and write them into a memory buffer |
| CEOR | Class that contains all the definitions of the EOF messages defined for the JPIP protocol |
| ▼CRequest | Class derived from the HTTP Request class that contains the required code for properly analyzing a JPIP request, when this protocol is used over the HTTP |
| CParametersMask | Union used to control the presence of the different JPIP parameters in a request |
| CWOI | Class that identifies a WOI (Window Of Interest) |
| CWOIComposer | By means of this class it is possible to find out the which packets of an image are associated to a WOI |
| ▼Nnet | Contains classes to easy the utilization of sockets, specially implemented for UNIX systems |
| CAddress | Abstract base class to wrap the sockaddr derived structures |
| CInetAddress | Class to identify and handle an Internet address |
| CPollFD | Wrapper structure for the structure pollfd used by the kernel poll functions |
| CPollTable | This class allows to perfom polls easily over a vector of descriptors |
| CSocket | This class has been designed to work with UNIX sockets in an easy and object oriented way |
| CSocketBuffer | Class derived from the STL std::streambuf to allow streaming with sockets |
| CSocketStream | Class derived from std::iostream and SocketBuffer that represents a socket stream |
| CUnixAddress | Class to identify and handle an UNIX address |
| CAppConfig | Contains the configuration parameters of the application |
| ▼CAppInfo | Contains the run-time information of the application |
| CData | Contains the data block that is maintained in shared memory |
| CArgsParser | Class that allows to parse and handle the application command line parameters |
| Cbase | Contains a set of useful static methods used by the application |
| CClientInfo | Contains information of a connected client |
| CClientManager | Handles a client connection with a dedicated thread |
| CTraceSystem | Wrapper used by the application to handle the log/trace messages by means of the log4cpp library |
| Cui | |