1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef __DARKRL__BITMAPDOWNSAMPLED_HPP__ #define __DARKRL__BITMAPDOWNSAMPLED_HPP__ #include "Bitmap.hpp" class BitmapDownsampled : public Bitmap { public: BitmapDownsampled( const Bitmap& bmp, unsigned int lines ); ~BitmapDownsampled(); }; #endif