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
|
/*
/--------------------------------------------------------------------
|
| $Id: plinplacefilter.cpp,v 1.2 2004/09/11 12:41:36 uzadow Exp $
|
| Copyright (c) 1996-2002 Ulrich von Zadow
|
\--------------------------------------------------------------------
*/
#include "plinplacefilter.h"
#include "plbmpbase.h"
#include "plbitmap.h"
#include "planybmp.h"
PLInPlaceFilter::PLInPlaceFilter() : PLFilter()
{
}
PLInPlaceFilter::~PLInPlaceFilter()
{
}
void PLInPlaceFilter::ApplyInPlace(PLBmp * pBmp) const
{
ApplyInPlace((PLBmpBase*)pBmp);
}
/*
/--------------------------------------------------------------------
|
| $Log: plinplacefilter.cpp,v $
| Revision 1.2 2004/09/11 12:41:36 uzadow
| removed plstdpch.h
|
| Revision 1.1 2004/06/20 16:59:38 uzadow
| Added PLBmpBase::CopyPixels() and PLInPlaceFilter
|
|
\--------------------------------------------------------------------
*/
|