Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
utils.hpp
Go to the documentation of this file.
1#ifndef TEST_UTILS_HPP_
2#define TEST_UTILS_HPP_
3
4#include <fstream>
5#include <sstream>
6
7#include "custom_interfaces/msg/path_point_array.hpp"
12std::vector<custom_interfaces::msg::PathPoint> create_path_msg(std::string track_file);
13
14
15#endif // TEST_UTILS_HPP_HPP_
std::vector< custom_interfaces::msg::PathPoint > create_path_msg(std::string track_file)
Reads track files and creates a PathPointArray message.
Definition utils.cpp:3