Dev: minor cleanup of include blockers, they are now consistent.
[marnav.git] / src / marnav / nmea / angle.hpp
blob257c345a869bb47f2d1771dff7db4f3c7549a52d
1 #ifndef __MARNAV__NMEA__ANGLE__HPP__
2 #define __MARNAV__NMEA__ANGLE__HPP__
4 #include <string>
5 #include <marnav/geo/angle.hpp>
7 namespace marnav
9 namespace nmea
11 geo::latitude parse_latitude(const std::string & s);
12 std::string to_string(const geo::latitude & v);
14 geo::longitude parse_longitude(const std::string & s);
15 std::string to_string(const geo::longitude & v);
19 #endif