From 3c522b3f838836eba2f2c73a7168f6fdf45c8339 Mon Sep 17 00:00:00 2001 From: Javier Moreno Date: Thu, 15 Nov 2018 15:38:49 +0100 Subject: [PATCH] Restored removed code by accident --- uROS_Agent/src/main.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/uROS_Agent/src/main.cpp b/uROS_Agent/src/main.cpp index fa37425..594b398 100644 --- a/uROS_Agent/src/main.cpp +++ b/uROS_Agent/src/main.cpp @@ -28,6 +28,7 @@ #include #endif +#include #include #include #include @@ -75,6 +76,21 @@ uint16_t parsePort(const std::string& str_port) return valid_port; } +class uros_agent : public rclcpp::Node +{ +public: + uros_agent() : Node("uROS_Agent") + { + } + + ~uros_agent() + { + } + +private: + +}; + int main(int argc, char** argv) { eprosima::uxr::Server* server = nullptr;