cppassist icon indicating copy to clipboard operation
cppassist copied to clipboard

C++ sanctuary for small but powerful and frequently required, stand alone features.

Results 10 cppassist issues
Sort by recently updated
recently updated
newest added

Possible implementation: ```cpp template struct EnumClassHash { std::hash::result_type operator()( const EnumClass & arg) const { static std::hash hasher; return hasher(static_cast(arg)); } }; ``` Possible usage: ```cpp template struct hash :...

decision required

* Remove `ArgumentParser`. * Provide interface on `CommandLineProgram` to query the remaining arguments (in case no actions, switches, options or parameters are registered, this would return all arguments) * Allow...

design decision

If globjects is about to get the dependency to cppassist, the following classes can be moved here: - `AbstractFunctionCall` / `FunctionCall` - `ChangeListener` / `Changeable` - `HeapOnly` - `Referenced` /...

Base
needs review

The test case fails on macOS (https://travis-ci.org/cginternals/cppassist/jobs/195219351)

needs review

Currently, the `FileLogHandler` opens the target file, writes the message and closes the file again for each log message, which is an unnecessary overhead. Instead, the file should be opened...

enhancement

It should be possible to direct log messages to multiple log handlers simultaneously, e.g., console and file. A simple implementation would be a log handler that forwards messages to a...

enhancement

I think the following list of classes from gloperate branch 0.9 can reside here: - `AutoTimer` - `CachedValue` - `ChronoTimer` And the following classes of the master branch: - `CyclicTime`...

Base
pending

follow https://github.com/cginternals/cmake-init/pull/83