exercises

Dependencies:   mbed

fruits.h

Committer:
Jamess
Date:
2015-08-28
Revision:
0:ff7b10a0e08f

File content as of revision 0:ff7b10a0e08f:

#ifndef FRUITS_H
#define FRUITS_H

#include "mbed.h"

class fruits{
    
    private:
   
        uint32_t weight;
        /*
        */
        
    public:
    
    
        fruits();
        /**
        *   Default Constructor
        */
    
        uint32_t getWeight(void);
        /**
        *   Returns the weight of the fruit
        */
        void setWeight(uint32_t);
        /**
        *   Sets the weight of the fruit 
        */
    };

#endif