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
|
/*
/--------------------------------------------------------------------
|
| $Id: pltestcountedpointer.h,v 1.1 2003/04/13 20:13:21 uzadow Exp $
|
| Copyright (c) 1996-2002 Ulrich von Zadow
|
\--------------------------------------------------------------------
*/
#ifndef INCL_PLTESTCOUNTEDPOINTER
#define INCL_PLTESTCOUNTEDPOINTER
#include "pltest.h"
class PLBmp;
class PLTestCountedPointer: public PLTest
{
public:
PLTestCountedPointer ();
virtual ~PLTestCountedPointer();
virtual void RunTests ();
private:
};
#endif
/*
/--------------------------------------------------------------------
|
| $Log: pltestcountedpointer.h,v $
| Revision 1.1 2003/04/13 20:13:21 uzadow
| Added counted pointer classes (windows ver.)
|
|
|
\--------------------------------------------------------------------
*/
|