remove empty lines within method signatures (#1128)
Signed-off-by: Dirk Thomas <dirk-thomas@users.noreply.github.com>
This commit is contained in:
parent
64bdef61c8
commit
8573433c1d
6 changed files with 0 additions and 35 deletions
|
@ -50,82 +50,66 @@ public:
|
||||||
~NodeBase();
|
~NodeBase();
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
get_name() const override;
|
get_name() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
get_namespace() const override;
|
get_namespace() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
get_fully_qualified_name() const override;
|
get_fully_qualified_name() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
rclcpp::Context::SharedPtr
|
rclcpp::Context::SharedPtr
|
||||||
get_context() override;
|
get_context() override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
rcl_node_t *
|
rcl_node_t *
|
||||||
get_rcl_node_handle() override;
|
get_rcl_node_handle() override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
const rcl_node_t *
|
const rcl_node_t *
|
||||||
get_rcl_node_handle() const override;
|
get_rcl_node_handle() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
std::shared_ptr<rcl_node_t>
|
std::shared_ptr<rcl_node_t>
|
||||||
get_shared_rcl_node_handle() override;
|
get_shared_rcl_node_handle() override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
std::shared_ptr<const rcl_node_t>
|
std::shared_ptr<const rcl_node_t>
|
||||||
get_shared_rcl_node_handle() const override;
|
get_shared_rcl_node_handle() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
rclcpp::CallbackGroup::SharedPtr
|
rclcpp::CallbackGroup::SharedPtr
|
||||||
create_callback_group(rclcpp::CallbackGroupType group_type) override;
|
create_callback_group(rclcpp::CallbackGroupType group_type) override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
rclcpp::CallbackGroup::SharedPtr
|
rclcpp::CallbackGroup::SharedPtr
|
||||||
get_default_callback_group() override;
|
get_default_callback_group() override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
bool
|
bool
|
||||||
callback_group_in_node(rclcpp::CallbackGroup::SharedPtr group) override;
|
callback_group_in_node(rclcpp::CallbackGroup::SharedPtr group) override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
const std::vector<rclcpp::CallbackGroup::WeakPtr> &
|
const std::vector<rclcpp::CallbackGroup::WeakPtr> &
|
||||||
get_callback_groups() const override;
|
get_callback_groups() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
std::atomic_bool &
|
std::atomic_bool &
|
||||||
get_associated_with_executor_atomic() override;
|
get_associated_with_executor_atomic() override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
rcl_guard_condition_t *
|
rcl_guard_condition_t *
|
||||||
get_notify_guard_condition() override;
|
get_notify_guard_condition() override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
std::unique_lock<std::recursive_mutex>
|
std::unique_lock<std::recursive_mutex>
|
||||||
acquire_notify_guard_condition_lock() const override;
|
acquire_notify_guard_condition_lock() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
bool
|
bool
|
||||||
get_use_intra_process_default() const override;
|
get_use_intra_process_default() const override;
|
||||||
|
|
||||||
|
|
|
@ -57,64 +57,52 @@ public:
|
||||||
~NodeGraph();
|
~NodeGraph();
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
std::map<std::string, std::vector<std::string>>
|
std::map<std::string, std::vector<std::string>>
|
||||||
get_topic_names_and_types(bool no_demangle = false) const override;
|
get_topic_names_and_types(bool no_demangle = false) const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
std::map<std::string, std::vector<std::string>>
|
std::map<std::string, std::vector<std::string>>
|
||||||
get_service_names_and_types() const override;
|
get_service_names_and_types() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
std::vector<std::string>
|
std::vector<std::string>
|
||||||
get_node_names() const override;
|
get_node_names() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
std::vector<std::pair<std::string, std::string>>
|
std::vector<std::pair<std::string, std::string>>
|
||||||
get_node_names_and_namespaces() const override;
|
get_node_names_and_namespaces() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
size_t
|
size_t
|
||||||
count_publishers(const std::string & topic_name) const override;
|
count_publishers(const std::string & topic_name) const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
size_t
|
size_t
|
||||||
count_subscribers(const std::string & topic_name) const override;
|
count_subscribers(const std::string & topic_name) const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
const rcl_guard_condition_t *
|
const rcl_guard_condition_t *
|
||||||
get_graph_guard_condition() const override;
|
get_graph_guard_condition() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
void
|
void
|
||||||
notify_graph_change() override;
|
notify_graph_change() override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
void
|
void
|
||||||
notify_shutdown() override;
|
notify_shutdown() override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
rclcpp::Event::SharedPtr
|
rclcpp::Event::SharedPtr
|
||||||
get_graph_event() override;
|
get_graph_event() override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
void
|
void
|
||||||
wait_for_graph_change(
|
wait_for_graph_change(
|
||||||
rclcpp::Event::SharedPtr event,
|
rclcpp::Event::SharedPtr event,
|
||||||
std::chrono::nanoseconds timeout) override;
|
std::chrono::nanoseconds timeout) override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
size_t
|
size_t
|
||||||
count_graph_users() override;
|
count_graph_users() override;
|
||||||
|
|
||||||
|
|
|
@ -42,12 +42,10 @@ public:
|
||||||
~NodeLogging();
|
~NodeLogging();
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
rclcpp::Logger
|
rclcpp::Logger
|
||||||
get_logger() const override;
|
get_logger() const override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
get_logger_name() const override;
|
get_logger_name() const override;
|
||||||
|
|
||||||
|
|
|
@ -42,14 +42,12 @@ public:
|
||||||
~NodeServices();
|
~NodeServices();
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
void
|
void
|
||||||
add_client(
|
add_client(
|
||||||
rclcpp::ClientBase::SharedPtr client_base_ptr,
|
rclcpp::ClientBase::SharedPtr client_base_ptr,
|
||||||
rclcpp::CallbackGroup::SharedPtr group) override;
|
rclcpp::CallbackGroup::SharedPtr group) override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
void
|
void
|
||||||
add_service(
|
add_service(
|
||||||
rclcpp::ServiceBase::SharedPtr service_base_ptr,
|
rclcpp::ServiceBase::SharedPtr service_base_ptr,
|
||||||
|
|
|
@ -42,7 +42,6 @@ public:
|
||||||
|
|
||||||
/// Add a timer to the node.
|
/// Add a timer to the node.
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
void
|
void
|
||||||
add_timer(
|
add_timer(
|
||||||
rclcpp::TimerBase::SharedPtr timer,
|
rclcpp::TimerBase::SharedPtr timer,
|
||||||
|
|
|
@ -41,14 +41,12 @@ public:
|
||||||
~NodeWaitables();
|
~NodeWaitables();
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
void
|
void
|
||||||
add_waitable(
|
add_waitable(
|
||||||
rclcpp::Waitable::SharedPtr waitable_base_ptr,
|
rclcpp::Waitable::SharedPtr waitable_base_ptr,
|
||||||
rclcpp::CallbackGroup::SharedPtr group) override;
|
rclcpp::CallbackGroup::SharedPtr group) override;
|
||||||
|
|
||||||
RCLCPP_PUBLIC
|
RCLCPP_PUBLIC
|
||||||
|
|
||||||
void
|
void
|
||||||
remove_waitable(
|
remove_waitable(
|
||||||
rclcpp::Waitable::SharedPtr waitable_ptr,
|
rclcpp::Waitable::SharedPtr waitable_ptr,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue