Warning, file /education/marble/tools/mapreproject/ReadOnlyMapImage.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
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