test publish

Dependencies:   mbed GroveEarbudSensor

GypsyScale.h

Committer:
age2pierre
Date:
2016-03-25
Revision:
5:ee265ab0752d
Child:
8:e1beb2a9454e

File content as of revision 5:ee265ab0752d:

#ifndef _GYPSY_SCALE_H_
#define _GYPSY_SCALE_H_

#include "Scale.h"
#include "Notes.h"

class GypsyScale : public Scale {
    public:
        Notes getSupertonic();
        Notes getMediant();
        Notes getSubdominant();
        Notes getDominant();
        Notes getSuperdominant();
        Notes getSubtonic();
    protected:
    private:   
};

#endif