How to use Inheritance and constructor overloading

Dependencies:   mbed

Sister.h

Committer:
Jamess
Date:
2015-08-05
Revision:
1:6289618eacd1
Parent:
0:4731d40a338a

File content as of revision 1:6289618eacd1:

#ifndef Sister_H
#define Sister_H

#include "mbed.h"
#include "Brother.h"

class Sister: public Brother{
    public:
        Sister();
    private:
        //TODO:
    protected:
        //TODO:
};

#endif