Thiago . / Mbed 2 deprecated OOP_Heranca

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Brother.cpp Source File

Brother.cpp

00001 #include "Brother.h"
00002 
00003 Brother::Brother(){
00004     
00005     age = 10;
00006     howMuchMoney = 0;
00007     
00008     }
00009     
00010 Brother::Brother(uint32_t myAge){
00011     
00012     age = myAge;
00013     
00014     }
00015 
00016 uint32_t Brother::getAge(void){
00017     
00018     return age;
00019     
00020     }
00021 void Brother::setAge(uint32_t a){
00022     
00023     age = a;
00024     
00025     }
00026