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;