Synthesizer / Mbed 2 deprecated DBSMUSICPROJ4

Dependencies:   mbed

dataStore.h

Committer:
benparkes
Date:
2019-07-24
Revision:
4:e56a755aeaf1

File content as of revision 4:e56a755aeaf1:

#ifndef MBED_dataStore_H
#define MBED_dataStore_H

#include <iostream>

//Class type
class dataStore {
private:
   
    int   _note;
    int   _octave;
    int   _duration;
    
public:
//Constructor

dataStore() : _note(),  _octave(), _duration(){
       
}

int note();

int octave();

int duration();

void update(int N, int O, int D);
 
};
#endif