-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaliases.h
More file actions
36 lines (30 loc) · 700 Bytes
/
Copy pathaliases.h
File metadata and controls
36 lines (30 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//aliases.h
#pragma once
#include <string>
#include <list>
#include <vector>
#include "LongLat.h"
struct nearbyResult
{
std::string name = "";
std::string featureClass = "";
double latitude = 0;
double longitude = 0;
double area = 0;
double distance = 0;
double bearing = 0;
int elementType = 0;
int elementID = 0;
int displayOrder = 0;
};
using SList = std::list<std::string>;
using SVector = std::vector<std::string>;
using LLVector = std::vector<CLongLat>;
using NRVector = std::vector<nearbyResult>;
using NRList = std::list<nearbyResult>;
struct geoLayer
{
std::string layerName;
NRList geoResults;
};
using GLList = std::list<geoLayer>;