blob: b7313808df98d5a2be23f7bd5913d43174298132 (
plain)
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
|