aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/geohash/direction.h
blob: 88a3e6061dc8fd616f9cefc2bc3cdf63a0dfb662 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

namespace NGeoHash {
    enum EDirection {
        NORTH = 0,
        NORTH_EAST,
        EAST,
        SOUTH_EAST,
        SOUTH,
        SOUTH_WEST,
        WEST,
        NORTH_WEST,
    };
}