Welcome to mirror list, hosted at ThFree Co, Russian Federation.

latlon.hpp « geometry - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5512993f6c509bee52a7118ae31c0f05ee1d306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "std/string.hpp"

namespace ms
{

/// \brief Class for representing WGS point.
class LatLon
{
public:
  LatLon(double lat, double lon) : lat(lat), lon(lon) {}
  double lat, lon;
};

string DebugPrint(LatLon const & t);

}  // namespace ms