How to use Inheritance and constructor overloading

Dependencies:   mbed

Sister.h

Committer:
Jamess
Date:
2015-08-05
Revision:
0:4731d40a338a

File content as of revision 0:4731d40a338a:

#ifndef Sister_H
#define Sister_H

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

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

#endif