vererbung

Dependencies:   RTC8563 mbed

DateString.h

Committer:
matthiaskosch
Date:
2015-04-30
Revision:
1:0683aab6b134
Parent:
0:b65c5f2413b0

File content as of revision 1:0683aab6b134:

#include "mbed.h"
#include "const.h"
#include "Date.h"
#include "string"
 
#ifndef DATESTRING_H
#define DATESTRING_H

class DateString : public Date
{
    public:
        uint8_t GetDay();
        
        uint8_t GetNextDay();   // Definition neuer Methode
        using Date::GetDay;
        string GetDay(string str);
};
#endif