All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
TransportLayerType.h
1 #pragma once
2 
3 #include "Roads.h"
4 
5 namespace Eegeo
6 {
7  namespace Resources
8  {
9  namespace Roads
10  {
11  enum TransportLayerType
12  {
13  TransportLayerType_Invalid,
14  TransportLayerType_Road,
15  TransportLayerType_Rail,
16  TransportLayerType_Tram
17  };
18  }
19  }
20 }