We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f9ebb2 commit da856c5Copy full SHA for da856c5
include/behaviortree_cpp/interaction_node.h
@@ -6,15 +6,12 @@
6
7
namespace BT
8
{
9
-class InteractionNode : public SyncActionNode
+class InteractionNode : public ActionNodeBase
10
11
public:
12
InteractionNode(const std::string& name, const NodeConfig& config);
13
~InteractionNode() override = default;
14
15
- /// throws if the derived class return RUNNING.
16
- virtual NodeStatus executeTick() override;
17
-
18
virtual NodeType type() const override final
19
20
return NodeType::INTERACTION;
src/interaction_node.cpp
@@ -3,6 +3,7 @@
3
4
5
InteractionNode::InteractionNode(const std::string& name, const NodeConfig& config)
- : SyncActionNode(name, config)
+ : ActionNodeBase(name, config)
{}
+
}
0 commit comments