Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
713 B

/******************************Module*Header*******************************\
* Module Name: CCachedBitmap.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: 06-01-2000 - Adrian Secchia [asecchia]
*
* Copyright (c) 2000 Microsoft Corporation
*
\**************************************************************************/
#ifndef __CCACHEDBITMAP_H
#define __CCACHEDBITMAP_H
#include "CPrimitive.h"
class CCachedBitmap : public CPrimitive
{
public:
CCachedBitmap(BOOL bRegression);
virtual ~CCachedBitmap();
void Draw(Graphics *g);
};
#endif