5 projects tagged "C++ Library"
The libQtCassandra library is an advanced C++ library used to access Cassandra servers. Unlike the basic Cassadra server interface, this C++ library provides separate objects that handle each level of the server data, i.e. the cluster, contexts, table, rows, and cells. It uses Qt and the Qt style for all the classes, which makes it very easy to use if you already know Qt.
The libQtSerialization library is a Qt extension that makes it easy to serialize your data in a forward and backward compatible way. The library is composed of QWriter and QReader. The writer is straightforward - all you have to do is call a writeTag() function and the data is serialized. The reader is a little more complex as it supports special cases, such as sub-classes (so you can save a tree of classes) and arrays of classes (your tree may be composed of multiple instances of a given object).
safe numerics provides safe integer operations for C++ integers. Arithmetic operations in C++ are not guaranteed to yield the correct mathematical result. The feature is inherited from the early days of C, when the behavior of int, unsigned int, and others were designed to map closely to the underlying hardware. These types can silently overflow or change sign. This library contains drop-in replacements for the standard C types which throw exceptions whenever invalid operations occur.