Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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