C++ Utilities
4.17.0
Useful C++ classes and routines such as argument parser, IO and conversion utilities
|
▼CApplicationUtilities::Argument | Wrapper for command line argument information |
CApplicationUtilities::ConfigValueArgument | Argument where setCombinable() is true by default |
CApplicationUtilities::HelpArgument | Prints help information for an argument parser when present (–help, -h) |
CApplicationUtilities::NoColorArgument | Allows to specify whether use of escape codes or similar technique to provide formatted output on the terminal should be enabled/disabled |
CApplicationUtilities::OperationArgument | Argument where denotesOperation() is true by default |
CApplicationUtilities::ArgumentCompletionInfo | The ArgumentCompletionInfo struct holds information internally used for shell completion and suggestions |
CApplicationUtilities::ArgumentOccurrence | The ArgumentOccurrence struct holds argument values for an occurrence of an argument |
CApplicationUtilities::ArgumentParser | Means for handling command line arguments |
CApplicationUtilities::ArgumentReader | Internally encapsulates the process of reading command line arguments |
CApplicationUtilities::ArgumentSuggestion | |
CMiscUtilities::ArrayBasedMultiArray< size > | The ArrayBasedMultiArray struct allows using a fixed size array as underlying container for the MultiArray class |
CTestUtilities::AsHexNumber< T > | The AsHexNumber class allows printing values asserted with cppunit (or similar test framework) using the hex system in the error case |
CIoUtilities::BinaryReader | Reads primitive data types from a std::istream |
CIoUtilities::BinaryWriter | Writes primitive data types to a std::ostream |
CIoUtilities::BitReader | Bitwise reading of buffered data |
▼CConditional | |
CTraits::All< Head, Tail... > | Evaluates to Bool<true> if all specified conditions are true; otherwise evaluates to Bool<false> |
CTraits::Any< Head, Tail... > | Evaluates to Bool<true> if at least one of the specified conditions is true; otherwise evaluates to Bool<false> |
CTraits::IsAnyOf< Type, OtherType, RemainingTypes... > | Evaluates to Bool<true> if the specified type is any of the specified types; otherwise evaluates to Bool<false> |
CTraits::IsNoneOf< Type, OtherType, RemainingTypes... > | Evaluates to Bool<true> if the specified type is none of the specified types; otherwise evaluates to Bool<false> |
CTraits::IsSpecializingAnyOf< Type, TemplateType, RemainingTemplateTypes... > | Evaluates to Bool<true> if the specified type is based on one of the specified templates; otherwise evaluates to Bool<false> |
CTraits::None< Head, Tail... > | Evaluates to Bool<true> if none of the specified conditions are true; otherwise evaluates to Bool<false> |
CIoUtilities::CopyHelper< bufferSize > | The CopyHelper class helps to copy bytes from one stream to another |
CCountableStruct | |
CChronoUtilities::DateTime | Represents an instant in time, typically expressed as a date and time of day |
▼Cstd::exception | STL class |
CApplicationUtilities::Failure | Thrown by an ArgumentParser when a parsing error occurs |
▼Cstd::runtime_error | STL class |
CConversionUtilities::ConversionException | Thrown by the various conversion functions of this library when a conversion error occurs |
CApplicationUtilities::FakeQtConfigArguments | Arguments for the Qt GUI used when the application hasn't been built with Qt GUI support |
Cstd::hash< ChronoUtilities::DateTime > | |
Cstd::hash< ChronoUtilities::TimeSpan > | |
CApplicationUtilities::Indentation | Allows printing indentation conveniently, eg |
CIoUtilities::IniFile | Parses and makes INI files |
▼Cintegral_constant | |
▼CTraits::Bool< false > | |
CTraits::Any< T > | Evaluates to Bool<true> if at least one of the specified conditions is true; otherwise evaluates to Bool<false> |
CTraits::IsAnyOf< T > | Evaluates to Bool<true> if the specified type is any of the specified types; otherwise evaluates to Bool<false> |
CTraits::IsComplete< T, typename > | Evaluates to Bool<true> if the specified type is complete; if the type is only forward-declared it evaluates to Bool<false> |
CTraits::IsSpecializingAnyOf< Type, TemplateTypes > | Evaluates to Bool<true> if the specified type is based on one of the specified templates; otherwise evaluates to Bool<false> |
▼CTraits::Bool< IsCString< T >::value||IsSpecializationOf< T, std::basic_string >::value > | |
CTraits::IsString< T > | Evaluates to Bool<true> if the specified type is a C-string (char * or const char *); otherwise evaluates to Bool<false> |
▼CTraits::Bool< std::is_same< char const *, std::decay< T >::type >::value||std::is_same< char *, std::decay< T >::type >::value > | |
CTraits::IsCString< T > | Evaluates to Bool<true> if the specified type is a C-string (char * or const char *); otherwise evaluates to Bool<false> |
▼CTraits::Bool< true > | |
CTraits::All< T > | Evaluates to Bool<true> if all specified conditions are true; otherwise evaluates to Bool<false> |
CTraits::IsComplete< 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> |
CTraits::IsNoneOf< T > | Evaluates to Bool<true> if the specified type is none of the specified types; otherwise evaluates to Bool<false> |
CTraits::None< T > | Evaluates to Bool<true> if none of the specified conditions are true; otherwise evaluates to Bool<false> |
CTraits::Bool< B,... > | Wraps a static boolean constant |
▼CIsSpecializationOfHelper | |
CTraits::IsSpecializationOf< Type, TemplateTypes > | Evaluates to Bool<true> if the specified type is based on the specified |
CMiscUtilities::MultiArray< T, UnderlyingContainer, Dimensions > | The MultiArray class provides an N-dimensional array |
CMiscUtilities::NoneOwningMultiArray | The NoneOwningMultiArray struct allows using a caller-managed buffer array as underlying container for the MultiArray class |
CTestUtilities::OutputCheck | The StandardOutputCheck class asserts whether the (standard) output written in the enclosing code block matches the expected output |
CChronoUtilities::Period | Represents a period of time |
CSomeStruct | |
CConversionUtilities::StringDataDeleter | The StringDataDeleter struct deletes the data of a StringData instance |
CApplicationUtilities::TerminalSize | The TerminalSize struct describes a terminal size |
CTestUtilities::TestApplication | Simplifies writing test applications that require opening test files |
▼CTestFixture | |
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 |
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) |
CTraitsTest | Tests parts of the Traits namespace which can not be evaluated at compile-time |
CChronoUtilities::TimeSpan | Represents a time interval |
▼Cunary_function | |
CConversionUtilities::Widen< E, T, A > | Converts a std::string to a wide string using the specified locale |
CMiscUtilities::VectorBasedMultiArray< Allocator > | The VectorBasedMultiArray struct allows using an std::vector with custom allocator as underlying container for the MultiArray class |
CMiscUtilities::VectorBasedMultiArray< void > | The VectorBasedMultiArray struct allows using an std::vector as underlying container for the MultiArray class |
CApplicationUtilities::Wrapper | Internally used print text which might needs to be wrapped preserving the indentation |