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.
24 lines
488 B
24 lines
488 B
/******************************Module*Header*******************************\
|
|
* Module Name: CBanding.h
|
|
*
|
|
* Copyright (c) 2000 Microsoft Corporation
|
|
*
|
|
\**************************************************************************/
|
|
|
|
#ifndef __CBanding_H
|
|
#define __CBanding_H
|
|
|
|
#include "CPrimitive.h"
|
|
|
|
class CBanding : public CPrimitive
|
|
{
|
|
public:
|
|
CBanding(BOOL bRegression);
|
|
virtual ~CBanding();
|
|
|
|
void Draw(Graphics *g);
|
|
|
|
VOID TestBanding(Graphics* g);
|
|
};
|
|
|
|
#endif
|