test publish

Dependencies:   mbed GroveEarbudSensor

GypsyScale.h

Committer:
age2pierre
Date:
2016-04-11
Revision:
8:e1beb2a9454e
Parent:
5:ee265ab0752d

File content as of revision 8:e1beb2a9454e:

#ifndef _GYPSY_SCALE_H_
#define _GYPSY_SCALE_H_

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

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

#endif