How to use Inheritance and constructor overloading

Dependencies:   mbed

Revision:
0:4731d40a338a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Sister.h	Wed Aug 05 17:27:08 2015 +0000
@@ -0,0 +1,16 @@
+#ifndef Sister_H
+#define Sister_H
+
+#include "mbed.h"
+#include "Brother.h"
+
+class Sister: public Brother{
+    public:
+        Sister();
+    private:
+        //TODO:
+    protected:
+        //TODO:
+};
+
+#endif
\ No newline at end of file