Satoshi Togawa / Mbed 2 deprecated LcdClock

Dependencies:   DebouncedEdgeIn I2cLCD_cursor Rtc8564 mbed beep

Model/I_SetPresentTime.h

Committer:
togayan
Date:
2014-02-17
Revision:
2:6f0158399eff
Parent:
1:f8713c387a68
Child:
3:061cccf4093a

File content as of revision 2:6f0158399eff:

#ifndef I_SET_PRESENT_TIME_H
#define I_SET_PRESENT_TIME_H

#include "Model/OperationMode.h"

namespace Model
{
class I_SetPresentTime
{
public:
    virtual ~I_SetPresentTime() {}

    virtual void setPresentTime() = 0;
    virtual void mode(Model::OperationMode mode) = 0;
};
}

#endif // I_SET_PRESENT_TIME_H