test publish

Dependencies:   mbed GroveEarbudSensor

GypsyScale.h

Committer:
age2pierre
Date:
2016-04-14
Revision:
13:879d678baf64
Parent:
8:e1beb2a9454e

File content as of revision 13:879d678baf64:

#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