File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -97,9 +97,9 @@ target_link_libraries(btpp ${OPENGL_LIBRARIES} ${GLUT_LIBRARY})
97
97
######################################################
98
98
install (TARGETS btpp
99
99
EXPORT btpp-targets
100
- DESTINATION lib/btpp
100
+ DESTINATION lib
101
101
)
102
102
103
- install (FILES ${BTHeadLibrary} DESTINATION include / )
103
+ # install(FILES ${BTHeadLibrary} DESTINATION include/)
104
104
105
105
Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ namespace BT
146
146
virtual int DrawType () = 0;
147
147
virtual void ResetColorState () = 0;
148
148
virtual int Depth () = 0;
149
+ bool is_halted ();
149
150
150
151
151
152
// Getters and setters
@@ -166,7 +167,6 @@ namespace BT
166
167
167
168
NodeType get_type ();
168
169
169
- bool is_halted ();
170
170
};
171
171
}
172
172
Original file line number Diff line number Diff line change @@ -95,13 +95,12 @@ std::string BT::TreeNode::get_name()
95
95
return name_;
96
96
}
97
97
98
-
99
98
BT::NodeType BT::TreeNode::get_type ()
100
99
{
101
100
return type_;
102
101
}
103
102
104
103
bool BT::TreeNode::is_halted ()
105
104
{
106
- return get_status ()== BT::HALTED;
105
+ return get_status () == BT::HALTED;
107
106
}
You can’t perform that action at this time.
0 commit comments