diff --git a/geometry/latlon.cpp b/geometry/latlon.cpp index 02afbe0314..9fbb458fc0 100644 --- a/geometry/latlon.cpp +++ b/geometry/latlon.cpp @@ -4,10 +4,12 @@ namespace ms { + string DebugPrint(LatLon const & t) { ostringstream out; out << "LatLon [ " << t.lat << ", " << t.lon << " ]"; return out.str(); } + } // namespace ms diff --git a/geometry/latlon.hpp b/geometry/latlon.hpp index c84909f293..d5512993f6 100644 --- a/geometry/latlon.hpp +++ b/geometry/latlon.hpp @@ -4,6 +4,7 @@ namespace ms { + /// \brief Class for representing WGS point. class LatLon { @@ -12,6 +13,6 @@ public: double lat, lon; }; -inline string DebugPrint(LatLon const & t); +string DebugPrint(LatLon const & t); } // namespace ms