13 lines
215 B
C++
13 lines
215 B
C++
|
#ifndef UNFILTERUP_H
|
||
|
#define UNFILTERUP_H
|
||
|
|
||
|
class UnfilterUp{
|
||
|
|
||
|
public:
|
||
|
|
||
|
unsigned char* unfilter(unsigned char* upperLine, unsigned char* currentLine, unsigned int dataLength);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // UNFILTERUP_H
|