Windows2003-3790/windows/advcore/gdiplus/test/functest/csourcecopy.h
2020-09-30 16:53:55 +02:00

29 lines
696 B
C++

/******************************Module*Header*******************************\
* Module Name: CSourceCopy.h
*
* This file contains the code to support the functionality test harness
* for GDI+. This includes menu options and calling the appropriate
* functions for execution.
*
* Created: 05-May-2000 - Jeff Vezina [t-jfvez]
*
* Copyright (c) 2000 Microsoft Corporation
*
\**************************************************************************/
#ifndef __CSOURCECOPY_H
#define __CSOURCECOPY_H
#include "CPrimitive.h"
class CSourceCopy : public CPrimitive
{
public:
CSourceCopy(BOOL bRegression);
virtual ~CSourceCopy();
void Draw(Graphics *g);
};
#endif