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: BLE_API mbed nRF51822
MVC.h
- Committer:
- Slepnir
- Date:
- 2015-07-07
- Revision:
- 0:25ad6eba7916
- Child:
- 2:6db5c9a2894c
File content as of revision 0:25ad6eba7916:
#ifndef MVC_H #define MVC_H class Observer { public: void update(void* data){} }; class Observable { public: void notifyObservers(); void addObserver(Observer o); }; #endif