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.

24 lines
488 B

  1. /******************************Module*Header*******************************\
  2. * Module Name: CBanding.h
  3. *
  4. * Copyright (c) 2000 Microsoft Corporation
  5. *
  6. \**************************************************************************/
  7. #ifndef __CBanding_H
  8. #define __CBanding_H
  9. #include "CPrimitive.h"
  10. class CBanding : public CPrimitive
  11. {
  12. public:
  13. CBanding(BOOL bRegression);
  14. virtual ~CBanding();
  15. void Draw(Graphics *g);
  16. VOID TestBanding(Graphics* g);
  17. };
  18. #endif