C++ Utilities
4.17.0
Useful C++ classes and routines such as argument parser, IO and conversion utilities
|
▼NApplicationUtilities | Contains currently only ArgumentParser and related classes |
CArgument | Wrapper for command line argument information |
CArgumentCompletionInfo | The ArgumentCompletionInfo struct holds information internally used for shell completion and suggestions |
CArgumentOccurrence | The ArgumentOccurrence struct holds argument values for an occurrence of an argument |
CArgumentParser | Means for handling command line arguments |
CArgumentReader | Internally encapsulates the process of reading command line arguments |
CArgumentSuggestion | |
CConfigValueArgument | Argument where setCombinable() is true by default |
CFailure | Thrown by an ArgumentParser when a parsing error occurs |
CFakeQtConfigArguments | Arguments for the Qt GUI used when the application hasn't been built with Qt GUI support |
CHelpArgument | Prints help information for an argument parser when present (–help, -h) |
CIndentation | Allows printing indentation conveniently, eg |
CNoColorArgument | Allows to specify whether use of escape codes or similar technique to provide formatted output on the terminal should be enabled/disabled |
COperationArgument | Argument where denotesOperation() is true by default |
CTerminalSize | The TerminalSize struct describes a terminal size |
CWrapper | Internally used print text which might needs to be wrapped preserving the indentation |
▼NChronoUtilities | Contains classes providing a means for handling date and time information |
CDateTime | Represents an instant in time, typically expressed as a date and time of day |
CPeriod | Represents a period of time |
CTimeSpan | Represents a time interval |
▼NConversionUtilities | Contains several functions providing conversions between different data types |
CConversionException | Thrown by the various conversion functions of this library when a conversion error occurs |
CStringDataDeleter | The StringDataDeleter struct deletes the data of a StringData instance |
CWiden | Converts a std::string to a wide string using the specified locale |
▼NIoUtilities | Contains utility classes helping to read and write streams |
CBinaryReader | Reads primitive data types from a std::istream |
CBinaryWriter | Writes primitive data types to a std::ostream |
CBitReader | Bitwise reading of buffered data |
CCopyHelper | The CopyHelper class helps to copy bytes from one stream to another |
CIniFile | Parses and makes INI files |
▼NMiscUtilities | Contains various utilities such as computing Damerau–Levenshtein distance and N-dimensional arrays |
CArrayBasedMultiArray | The ArrayBasedMultiArray struct allows using a fixed size array as underlying container for the MultiArray class |
CMultiArray | The MultiArray class provides an N-dimensional array |
CNoneOwningMultiArray | The NoneOwningMultiArray struct allows using a caller-managed buffer array as underlying container for the MultiArray class |
CVectorBasedMultiArray | The VectorBasedMultiArray struct allows using an std::vector with custom allocator as underlying container for the MultiArray class |
CVectorBasedMultiArray< void > | The VectorBasedMultiArray struct allows using an std::vector as underlying container for the MultiArray class |
▼Nstd | STL namespace |
Chash< ChronoUtilities::DateTime > | |
Chash< ChronoUtilities::TimeSpan > | |
▼NTestUtilities | Contains classes and functions utilizing creating of test applications |
CAsHexNumber | The AsHexNumber class allows printing values asserted with cppunit (or similar test framework) using the hex system in the error case |
COutputCheck | The StandardOutputCheck class asserts whether the (standard) output written in the enclosing code block matches the expected output |
CTestApplication | Simplifies writing test applications that require opening test files |
▼NTraits | Contains traits for conveniently exploiting SFINAE |
CAll | Evaluates to Bool<true> if all specified conditions are true; otherwise evaluates to Bool<false> |
CAll< Head, Tail... > | Evaluates to Bool<true> if all specified conditions are true; otherwise evaluates to Bool<false> |
CAny | Evaluates to Bool<true> if at least one of the specified conditions is true; otherwise evaluates to Bool<false> |
CAny< Head, Tail... > | Evaluates to Bool<true> if at least one of the specified conditions is true; otherwise evaluates to Bool<false> |
CBool | Wraps a static boolean constant |
CIsAnyOf | Evaluates to Bool<true> if the specified type is any of the specified types; otherwise evaluates to Bool<false> |
CIsAnyOf< Type, OtherType, RemainingTypes... > | Evaluates to Bool<true> if the specified type is any of the specified types; otherwise evaluates to Bool<false> |
CIsComplete | Evaluates to Bool<true> if the specified type is complete; if the type is only forward-declared it evaluates to Bool<false> |
CIsComplete< T, decltype(void(sizeof(T)))> | Evaluates to Bool<true> if the specified type is complete; if the type is only forward-declared it evaluates to Bool<false> |
CIsCString | Evaluates to Bool<true> if the specified type is a C-string (char * or const char *); otherwise evaluates to Bool<false> |
CIsNoneOf | Evaluates to Bool<true> if the specified type is none of the specified types; otherwise evaluates to Bool<false> |
CIsNoneOf< Type, OtherType, RemainingTypes... > | Evaluates to Bool<true> if the specified type is none of the specified types; otherwise evaluates to Bool<false> |
CIsSpecializationOf | Evaluates to Bool<true> if the specified type is based on the specified |
CIsSpecializingAnyOf | Evaluates to Bool<true> if the specified type is based on one of the specified templates; otherwise evaluates to Bool<false> |
CIsSpecializingAnyOf< Type, TemplateType, RemainingTemplateTypes... > | Evaluates to Bool<true> if the specified type is based on one of the specified templates; otherwise evaluates to Bool<false> |
CIsString | Evaluates to Bool<true> if the specified type is a C-string (char * or const char *); otherwise evaluates to Bool<false> |
CNone | Evaluates to Bool<true> if none of the specified conditions are true; otherwise evaluates to Bool<false> |
CNone< Head, Tail... > | Evaluates to Bool<true> if none of the specified conditions are true; otherwise evaluates to Bool<false> |
CArgumentParserTests | Tests the ArgumentParser and Argument classes |
CChronoTests | Tests classes and methods of the ChronoUtilities namespace |
CConversionTests | Tests classes and methods of the ConversionUtilities namespace |
CCountableStruct | |
CIoTests | Tests classes and methods of the IoUtilities namespace |
CMathTests | Tests functions of the MathUtilities namespace |
CMiscTests | Tests misc functions and classes (mainly of files contained by the misc directory) |
CSomeStruct | |
CTraitsTest | Tests parts of the Traits namespace which can not be evaluated at compile-time |