1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
/*
/--------------------------------------------------------------------
|
| $Id: testpsddecoder.h,v 1.3 2002/10/20 22:11:53 uzadow Exp $
|
| Copyright (c) 1996-1998 Ulrich von Zadow
|
\--------------------------------------------------------------------
*/
#ifndef INCL_PLTESTPSDDECODER
#define INCL_PLTESTPSDDECODER
#include <string>
class PLTester;
class PLBmp;
class PLTestPSDDecoder
{
public:
PLTestPSDDecoder ();
virtual ~PLTestPSDDecoder();
void RunTests ();
private:
void test (const std::string& sFName);
};
#endif
/*
/--------------------------------------------------------------------
|
| $Log: testpsddecoder.h,v $
| Revision 1.3 2002/10/20 22:11:53 uzadow
| Partial doc update.
| Fixed tests when images were not available.
|
| Revision 1.2 2001/10/21 17:54:40 uzadow
| Linux compatibility
|
| Revision 1.1 2001/10/21 17:12:40 uzadow
| Added PSD decoder beta, removed BPPWanted from all decoders, added PLFilterPixel.
|
|
\--------------------------------------------------------------------
*/
|