00001
00002
00014 #ifndef _BinToBlueWhite_H_
00015 #define _BinToBlueWhite_H_
00016
00017 #include "BinToColorMap.h"
00018
00019 namespace hippodraw {
00020
00030 class MDL_HIPPOPLOT_API BinToBlueWhite : public BinToColorMap
00031 {
00032 private:
00033
00034 static int reds[256];
00035 static int greens [256];
00036 static int blues [256];
00037
00038 public:
00039
00041 BinToBlueWhite ( const char * );
00042
00044 BinToBlueWhite ( const BinToBlueWhite & );
00045
00046 BinToColor * clone () const;
00047
00048 };
00049
00050 }
00051
00052 #endif // _BinToBlueWhite_H_