Skip to content

Commit 5b9e214

Browse files
author
Davide Faconti
committed
directory renamed
1 parent b1f88e3 commit 5b9e214

32 files changed

+48
-47
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
*~
2+
/CMakeLists.txt.user

gtest/gtest_tree.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <gtest/gtest.h>
1515
#include "action_test_node.h"
1616
#include "condition_test_node.h"
17-
#include "behavior_tree/behavior_tree.h"
17+
#include "behavior_tree_core/behavior_tree.h"
1818

1919

2020

gtest/include/action_test_node.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef ACTIONTEST_H
22
#define ACTIONTEST_H
33

4-
#include "behavior_tree/action_node.h"
4+
#include "behavior_tree_core/action_node.h"
55

66
namespace BT
77
{

gtest/include/condition_test_node.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef CONDITIONTEST_H
22
#define CONDITIONTEST_H
33

4-
#include "behavior_tree/condition_node.h"
4+
#include "behavior_tree_core/condition_node.h"
55

66
namespace BT
77
{

include/behavior_tree/behavior_tree.h

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#ifndef BEHAVIOR_TREE_H
2+
#define BEHAVIOR_TREE_H
3+
4+
#include "behavior_tree_core/parallel_node.h"
5+
#include "behavior_tree_core/fallback_node.h"
6+
#include "behavior_tree_core/sequence_node.h"
7+
8+
#include "behavior_tree_core/sequence_node_with_memory.h"
9+
#include "behavior_tree_core/fallback_node_with_memory.h"
10+
11+
#include "behavior_tree_core/action_node.h"
12+
#include "behavior_tree_core/condition_node.h"
13+
14+
#include "behavior_tree_core/decorator_negation_node.h"
15+
#include "behavior_tree_core/decorator_retry_node.h"
16+
17+
#include "behavior_tree_core/exceptions.h"
18+
19+
20+
#endif // BEHAVIOR_TREE_H

include/behavior_tree/control_node.h renamed to include/behavior_tree_core/control_node.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <vector>
55

6-
#include "behavior_tree/tree_node.h"
6+
#include "behavior_tree_core/tree_node.h"
77

88
namespace BT
99
{

include/behavior_tree/decorator_negation_node.h renamed to include/behavior_tree_core/decorator_negation_node.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef DECORATORNEGATIONNODE_H
22
#define DECORATORNEGATIONNODE_H
33

4-
#include "behavior_tree/control_node.h"
4+
#include "behavior_tree_core/control_node.h"
55

66
namespace BT
77
{

0 commit comments

Comments
 (0)