Thiago . / Mbed 2 deprecated OOP_Heranca

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Brother.h Source File

Brother.h

00001 #ifndef Brother_H
00002 #define Brother_H
00003 
00004 #include "mbed.h"
00005 
00006 class Brother{
00007        
00008     private:
00009         uint32_t age;   
00010     
00011     public:
00012         uint32_t getAge(void);
00013         void setAge(uint32_t);
00014         Brother();
00015         Brother(uint32_t myAge);
00016     
00017     protected:
00018         //  Who has access 
00019         //  Inherited classes
00020         uint32_t howMuchMoney;
00021     
00022     };
00023 
00024 #endif