We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfa7abc commit 6fdc6abCopy full SHA for 6fdc6ab
include/behaviortree_cpp_v3/tree_node.h
@@ -182,6 +182,9 @@ class TreeNode
182
// Notify the tree should be ticked again()
183
void emitStateChanged();
184
185
+ /// Equivalent to setStatus(NodeStatus::IDLE)
186
+ void resetStatus();
187
+
188
protected:
189
/// Method to be implemented by the user
190
virtual BT::NodeStatus tick() = 0;
@@ -222,9 +225,6 @@ class TreeNode
222
225
PostTickOverrideCallback post_condition_callback_;
223
226
224
227
std::shared_ptr<WakeUpSignal> wake_up_;
-
- /// Equivalent to setStatus(NodeStatus::IDLE)
- void resetStatus();
228
};
229
230
//-------------------------------------------------------
0 commit comments