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
Diff: MVC.h
- Revision:
- 0:25ad6eba7916
- Child:
- 2:6db5c9a2894c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MVC.h Tue Jul 07 04:02:14 2015 +0000 @@ -0,0 +1,17 @@ +#ifndef MVC_H +#define MVC_H + +class Observer +{ + public: + void update(void* data){} +}; + +class Observable +{ + public: + void notifyObservers(); + void addObserver(Observer o); +}; + +#endif \ No newline at end of file