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
00001 #ifndef MVC_H 00002 #define MVC_H 00003 00004 #include "mbed.h" 00005 00006 class Observer 00007 { 00008 public: 00009 virtual void updateObserver(void* data){printf("in mvc\r\n");} 00010 }; 00011 00012 class Observable 00013 { 00014 public: 00015 void notifyObservers(); 00016 void addObserver(Observer* o); 00017 }; 00018 00019 #endif
Generated on Sun Aug 14 2022 15:35:44 by
1.7.2