ros_functions.cpp
Go to the documentation of this file.
1 //
2 // Created by nakakura on 22/09/04.
3 //
4 
5 #include "ros_functions.h"
6 
7 #include "rust_functions.h"
8 
9 // Rust側から呼び出されるC++側関数の実体
10 extern "C" {
11 // loggers
12 void log_debug_c(char* message) {
13  ROS_DEBUG("%s", message);
14  release_string(message);
15 }
16 void log_info_c(char* message) {
17  ROS_INFO("%s", message);
18  release_string(message);
19 }
20 void log_warn_c(char* message) {
21  ROS_WARN("%s", message);
22  release_string(message);
23 }
24 void log_err_c(char* message) {
25  ROS_ERROR("%s", message);
26  release_string(message);
27 }
28 
29 // ros control functions
30 bool is_ok_c() { return ros::ok(); }
32 void ros_sleep_c(double dur) { ros::Duration(dur).sleep(); }
35 }
void log_debug_c(char *message)
void shutdown_c()
#define ROS_WARN(...)
void log_warn_c(char *message)
void ros_sleep_c(double dur)
void log_info_c(char *message)
#define ROS_INFO(...)
ROSCPP_DECL bool ok()
bool is_ok_c()
ROSCPP_DECL bool isShuttingDown()
void wait_for_shutdown_c()
void release_string(char *message)
ROSCPP_DECL void shutdown()
bool sleep() const
bool is_shutting_down_c()
#define ROS_ERROR(...)
void log_err_c(char *message)
ROSCPP_DECL void waitForShutdown()
#define ROS_DEBUG(...)


skyway
Author(s): Toshiya Nakakura
autogenerated on Sat Apr 15 2023 02:08:21