
#ifndef _RainbowLookup_
#define _RainbowLookup_

#include <stdio.h>
#include <iostream>

using namespace std;

class RainbowLookup{

 public:
  RainbowLookup();
  void printTestValues();
  void init();
  
  float* getValue(float inval);
  // returns an rgb triple for the input value

 private:
  
  float value[3];

};

#endif 

