home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / Aidan's Class Libraries / Source / Headers / CLColorStyle.h < prev    next >
Encoding:
Text File  |  1997-05-18  |  290 b   |  21 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __COLORSTYLE_H
  5. #define __COLORSTYLE_H
  6.  
  7. #include <QuickDraw.h>
  8.  
  9. #include "CLStyle.h"
  10.  
  11. class TColorStyle:
  12.     public TStyle
  13. {
  14. private:
  15.     RGBColor mColor;
  16. public:
  17.     TColorStyle( short, short, short );
  18.     virtual void Apply();
  19. };
  20.  
  21. #endif