|
Celeritas 0.7.0-dev.245+develop.a7be925e
|
Concrete mixin utility class for managing an action. More...
#include <ActionInterface.hh>

Public Member Functions | |
| ConcreteAction (ActionId id, std::string label) noexcept(! 0) | |
| Construct a concrete action from a label and ID. | |
| ConcreteAction (ActionId id, std::string label, std::string description) noexcept(! 0) | |
| Construct a concrete action from an ID, a unique label, and a description. | |
| ~ConcreteAction () noexcept override | |
| Default destructor. | |
| ConcreteAction (ConcreteAction const &)=delete | |
| ConcreteAction & | operator= (ConcreteAction const &)=delete |
| ConcreteAction (ConcreteAction &&)=delete | |
| ConcreteAction & | operator= (ConcreteAction &&)=delete |
| ActionId | action_id () const final |
| ID of this action for verification. | |
| std::string_view | label () const final |
| Short label. | |
| std::string_view | description () const final |
| Descriptive label. | |
Public Member Functions inherited from celeritas::ActionInterface | |
| virtual | ~ActionInterface () noexcept=0 |
| Default destructor. | |
Additional Inherited Members | |
Protected Member Functions inherited from celeritas::ActionInterface | |
| ActionInterface (ActionInterface const &)=default | |
| ActionInterface & | operator= (ActionInterface const &)=default |
| ActionInterface (ActionInterface &&)=default | |
| ActionInterface & | operator= (ActionInterface &&)=default |
Concrete mixin utility class for managing an action.
The noexcept declarations improve code generation for the common use case of multiple inheritance.
|
inlinefinalvirtual |
ID of this action for verification.
Implements celeritas::ActionInterface.
|
inlinefinalvirtual |
Descriptive label.
Implements celeritas::ActionInterface.
|
inlinefinalvirtual |
Short label.
Implements celeritas::ActionInterface.