Add forgotten header guards

This commit is contained in:
Martin Šach 2023-11-15 09:12:58 +01:00 committed by SachCZ
parent e13d3cdbf2
commit 1ec4cbe2d6

View File

@ -1,3 +1,11 @@
/**
* @file
* @brief Utility functions for travel gcode generation.
*/
#ifndef slic3r_GCode_Travels_hpp_
#define slic3r_GCode_Travels_hpp_
#include <vector> #include <vector>
#include <tcbspan/span.hpp> #include <tcbspan/span.hpp>
#include <functional> #include <functional>
@ -89,3 +97,5 @@ Points3 generate_travel_to_extrusion(
const Point &xy_path_coord_origin const Point &xy_path_coord_origin
); );
} // namespace Slic3r::GCode::Impl::Travels } // namespace Slic3r::GCode::Impl::Travels
#endif // slic3r_GCode_Travels_hpp_