How to use Inheritance and constructor overloading

Dependencies:   mbed

Revision:
1:6289618eacd1
Parent:
0:4731d40a338a
--- a/Brother.h	Wed Aug 05 17:27:08 2015 +0000
+++ b/Brother.h	Wed Aug 05 18:16:34 2015 +0000
@@ -15,7 +15,9 @@
         Brother(uint32_t myAge);
     
     protected:
-        //TODO    
+        //  Who has access 
+        //  Inherited classes
+        uint32_t howMuchMoney;
     
     };