temporary storage

This commit is contained in:
2026-07-09 16:50:35 +07:00
parent e4f2823b17
commit 915cf85cc5
19 changed files with 2463 additions and 326 deletions

19
src/recovery_behavior.cpp Normal file
View File

@@ -0,0 +1,19 @@
/*********************************************************************
* recovery_core — default impl cho RecoveryBehavior.
*
* Chỉ chứa default computeCommand() (họ A/B không override). initialize()/runBehavior()/
* status() là thuần ảo, do plugin cụ thể triển khai.
*
* Author: DuongTD
*********************************************************************/
#include <recovery_core/recovery_behavior.h>
namespace recovery_core
{
RecoveryResult RecoveryBehavior::computeCommand(double /*dt*/)
{
return RecoveryResult::Failed();
}
} // namespace recovery_core