blob: 639c21de524cd75e5801bef1febb872d0d6bbbd5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "common.h"
namespace NReverseGeocoder {
// k and v is offsets on blobs in geographical data blobs array. See geo_data.h
// for details.
struct TKv {
TNumber K;
TNumber V;
};
}
|