Bluetooth Low Energy for Smart Plug

Dependencies:   BLE_API mbed nRF51822

Fork of SmartPlugBLE by Pavit Noinongyao

MVC.h

Committer:
Slepnir
Date:
2015-07-14
Revision:
4:721ae30c92f8
Parent:
2:6db5c9a2894c

File content as of revision 4:721ae30c92f8:

#ifndef MVC_H
#define MVC_H

#include "mbed.h"

class Observer
{
    public:
        virtual void updateObserver(void* data){printf("in mvc\r\n");}
};

class Observable
{
    public:
        void notifyObservers();
        void addObserver(Observer* o);
};

#endif