File indexing completed on 2024-10-06 03:35:49
0001 #ifndef READONLYMAPIMAGE_H 0002 #define READONLYMAPIMAGE_H 0003 0004 #include <QColor> 0005 0006 class InterpolationMethod; 0007 0008 class ReadOnlyMapImage 0009 { 0010 public: 0011 virtual ~ReadOnlyMapImage(); 0012 0013 virtual QRgb pixel( double const lonRad, double const latRad ) = 0; 0014 virtual QRgb pixel( int const x, int const y ) = 0; 0015 virtual void setInterpolationMethod( InterpolationMethod * const interpolationMethod ) = 0; 0016 }; 0017 0018 #endif