13 lines
197 B
C++
13 lines
197 B
C++
#ifndef UNFILTERNONE_H
|
|
#define UNFILTERNONE_H
|
|
|
|
class UnfilterNone{
|
|
|
|
public:
|
|
|
|
unsigned char* unfilter(unsigned char* currentLine, unsigned int dataLength);
|
|
|
|
};
|
|
|
|
#endif // UNFILTERNONE_H
|