C++ YASMIN (Yet Another State MachINe)
|
Interface for blackboard value types. More...
#include <blackboard_value_interface.hpp>
Public Member Functions | |
virtual | ~BlackboardValueInterface () |
Virtual destructor for the interface. | |
virtual std::string | to_string () |
Convert the value to a string representation. | |
Interface for blackboard value types.
This interface defines the contract for value types that can be stored in a blackboard. It requires implementing a method to represent the value as a string.
|
inlinevirtual |
Virtual destructor for the interface.
|
inlinevirtual |
Convert the value to a string representation.
This method should be implemented by derived classes to provide an appropriate string representation of the value they encapsulate.
Reimplemented in yasmin::blackboard::BlackboardValue< T >.