#ifndef _SynesthesiaColorLookupTable_
#define _SynesthesiaColorLookupTable_

#include <GL/gl.h>

class SynesthesiaColorLookupTable {

 public:
  SynesthesiaColorLookupTable();

  void init();

  float* getValue(int i);
  // returns the color for the default mode and given note index
  // acceptable input range is decimal digits .. 0,1,2,3,4,5,6,7,8,9,10

 private:

  float defaultTable[10][3];

};


#endif

