Thiago . / Mbed 2 deprecated exercicios

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers fruits.cpp Source File

fruits.cpp

00001 #include "fruits.h"
00002 
00003 fruits::fruits(){
00004     
00005     weight = 10;
00006     
00007     }
00008     
00009 void fruits::setWeight(uint32_t newWeight){
00010     
00011     weight= newWeight;
00012     
00013     }
00014 uint32_t fruits::getWeight(void){
00015     
00016     return weight;
00017     
00018     }