Ilwis-Objects  1.0
GIS and Remote Sensing framework for data access and processing
 All Classes Functions Enumerations Pages
nullprojection.h
1 #ifndef NULLPROJECTION_H
2 #define NULLPROJECTION_H
3 
4 namespace Ilwis {
5 class KERNELSHARED_EXPORT NullProjection : public Projection
6 {
7 public:
8  NullProjection(const Ilwis::Resource &resource);
9  Coordinate latlon2coord(const LatLon &ll) const;
10  LatLon coord2latlon(const Coordinate &crd) const;
11 };
12 }
13 
14 #endif // NULLPROJECTION_H