Thiago . / Mbed 2 deprecated OOP_Heranca

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Sister.h Source File

Sister.h

00001 #ifndef Sister_H
00002 #define Sister_H
00003 
00004 #include "mbed.h"
00005 #include "Brother.h"
00006 
00007 class Sister: public Brother{
00008     public:
00009         Sister();
00010     private:
00011         //TODO:
00012     protected:
00013         //TODO:
00014 };
00015 
00016 #endif