Clean up Image class.
This commit is contained in:
parent
4bb87de0e6
commit
0d3674faac
30 changed files with 330 additions and 135 deletions
|
@ -7,7 +7,7 @@
|
|||
class ImageBitStream : public BitStream
|
||||
{
|
||||
public:
|
||||
ImageBitStream(Image<unsigned char>* image);
|
||||
ImageBitStream(Image* image);
|
||||
|
||||
bool isFinished() const override;
|
||||
|
||||
|
@ -28,5 +28,5 @@ public:
|
|||
}
|
||||
|
||||
private:
|
||||
Image<unsigned char>* mImage{nullptr};
|
||||
Image* mImage{nullptr};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue