File indexing completed on 2024-12-01 12:29:09
0001 #ifndef MAPREPROJECT_H 0002 #define MAPREPROJECT_H 0003 0004 enum EInterpolationMethod { UnknownInterpolationMethod, 0005 IntegerInterpolationMethod, 0006 NearestNeighborInterpolationMethod, 0007 AverageInterpolationMethod, 0008 BilinearInterpolationMethod }; 0009 0010 enum MapSourceType { UnknownMapSource, 0011 NasaWorldWindMap, 0012 BathymetryMap }; 0013 0014 #endif