00001 #ifndef H__grayScale__ 00002 #define H__grayScale__ 00003 00004 #include "colorMaker.h" 00005 #include <QtGui/QColor> 00006 00007 class grayScale : public colorMaker{ 00008 public: 00009 grayScale(int nbColors); 00010 ~grayScale(); 00011 QColor get(int level); 00012 }; 00013 00014 #endif