00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef GEOS_GEOM_LOCATION_H
00016 #define GEOS_GEOM_LOCATION_H
00017
00018 #include <geos/export.h>
00019 #include <iostream>
00020
00021 #include <geos/inline.h>
00022
00023 namespace geos {
00024 namespace geom {
00025
00035 class GEOS_DLL Location {
00036 public:
00037 enum Value {
00038
00042 UNDEF=-1,
00043
00049 INTERIOR = 0,
00050
00056 BOUNDARY = 1,
00057
00063 EXTERIOR = 2
00064 };
00065
00066 static char toLocationSymbol(int locationValue);
00067 };
00068
00069 }
00070 }
00071
00072
00073
00074
00075
00076 #endif // ndef GEOS_GEOM_LOCATION_H
00077