exercises

Dependencies:   mbed

cook.h

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

File content as of revision 0:ff7b10a0e08f:

#ifndef COOK_H
#define COOK_H

#include "mbed.h"
#include "fruits.h"

class cook{
    
    private:
    
        uint32_t howWellCooks;
        /*
        *   A scale to know how well does the cook cooks
        *   0 -> Doesnt cook at all
        *   ...
        *   3 -> Cooks edible food
        *   ...
        *   5 -> Me
        *   ...
        *   10-> Master Chef
        */
        
    
    public:
    
        uint32_t getHowWellCooks(void);
        /*
        *   Returns howWellCooks
        */
        void setHowWellCooks(uint32_t);
        /*
        *   To improved or worst the cooker skill
        */
        void makeBanana(Serial* ,fruits* fruit[]);
        /*
        *   A test to see if I can pass the banana array to a function
        */ 
    
    };


#endif