Success class
Success message class with formatted output.
A specialized message class for displaying success notifications with green-colored formatting. Success messages indicate successful completion of operations and are typically used for user feedback and logging.
The Success class provides stream-like insertion operators for building detailed success messages with formatting capabilities.
Base classes
-
template<class Prefix>class Message<SuccessPrefix>
- Forward declaration of the Message template class.
Public types
- using Parent = Message<SuccessPrefix>
- Parent class type alias.
Constructors, destructors, conversion operators
Function documentation
Rodin:: Alert:: Success:: Success()
Constructs a Success alert with an empty message.
Creates a success message that outputs to std::cout by default.
Rodin:: Alert:: Success:: Success(std::ostream& os)
Constructs a Success alert with a specific output stream.
| Parameters | |
|---|---|
| os | The output stream to write the success message to. |