aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/reverse_geocoder/core/location.h
blob: 5aa31986847eab324341bef25a88f528e198554e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

namespace NReverseGeocoder {
    struct TLocation {
        double Lon;
        double Lat;

        TLocation()
            : Lon(0)
            , Lat(0)
        {
        }

        TLocation(double lon, double lat)
            : Lon(lon)
            , Lat(lat)
        {
        }
    };

}