Home | History | Annotate | Download | only in engine

Lines Matching defs:action

29 #include "engine/action.hpp"
37 /// Internal implementation of an action.
38 struct engine::action::impl {
39 /// The runtime context of the action.
63 /// Constructs a new action.
65 /// \param context_ The runtime context in which the action runs.
66 engine::action::action(const context& context_) :
73 engine::action::~action(void)
78 /// Returns the context attached to this action.
82 engine::action::runtime_context(void) const
94 engine::action::operator==(const action& other) const
106 engine::action::operator!=(const action& other) const
119 engine::operator<<(std::ostream& output, const action& object)
121 output << F("action{context=%s}") % object.runtime_context();