exercises
fruits.cpp
- Committer:
- Jamess
- Date:
- 2015-08-28
- Revision:
- 0:ff7b10a0e08f
File content as of revision 0:ff7b10a0e08f:
#include "fruits.h"
fruits::fruits(){
weight = 10;
}
void fruits::setWeight(uint32_t newWeight){
weight= newWeight;
}
uint32_t fruits::getWeight(void){
return weight;
}
Thiago .