test publish

Dependencies:   mbed GroveEarbudSensor

Revision:
6:7cc8a333e03b
Parent:
5:ee265ab0752d
--- a/Scale.h	Fri Mar 25 11:17:39 2016 +0000
+++ b/Scale.h	Sat Mar 26 14:32:27 2016 +0000
@@ -15,8 +15,14 @@
         virtual Notes getDominant() = 0;
         virtual Notes getSuperdominant() = 0;
         virtual Notes getSubtonic() = 0;
+        Notes applyOctaveUp(Notes myNote);
+        Notes applyOctaveDown(Notes myNote);
+        Notes applySharp(Notes myNote);
+        Notes applyFlat(Notes myNote);
     protected:
         Notes tonality;
+    private:
+        Notes modify(int arg, Notes arg1);
 };
 
 #endif
\ No newline at end of file