#ifndef _EQColorLookupTable_
#define _EQColorLookupTable_

#include <GL/gl.h>
#include <iostream>

using namespace std;

class EQColorLookupTable {

 public:
  EQColorLookupTable();

  void init();

  void setValue(int index, float r, float g, float b);

  float* getValue(int i);
  // returns the approximate eq color for a range of sounds

 private:

  float defaultTable[16][3];

};


#endif

