/*
 *  fret ratios.h
 *  smec
 *
 *  Created by lewhill2 on Mon Mar 08 2004.
 *  Copyright (c) 2004 __MyCompanyName__. All rights reserved.
 *
 */

// equation for note values freq = 440 * 69-

#ifndef _FRET_RATIOS_
#define _FRET_RATIOS_

#include <iostream>
#include <math.h>

using namespace std;

class FretRatios {
  
 public:
  
  FretRatios();
  ~FretRatios();
  void init();
  float getRatio(int range);
  
 private:

  float intervals[12];

};

#endif

