Thiago . / Mbed 2 deprecated OOP_Heranca

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "Brother.h"
00003 #include "Sister.h"
00004 
00005 int main() {
00006         Sister Thais;
00007         Brother Lucio;
00008         Brother Thiago(20);
00009         
00010         Thais.setAge(23);
00011                         
00012         printf("Thais is %i",Thais.getAge());
00013         printf("Lucio is %i",Lucio.getAge());
00014         printf("Thiago is %i",Thiago.getAge());
00015 }