Skip to content
benne.h 248 B
Newer Older
#ifndef BENNE_H
#define BENNE_H

class Benne
{
public:
    Benne();

    ~Benne();


    bool getIsBenneEmpty();
    bool getIsBenneFull();

protected:
    bool isBenneEmpty;
};

#endif // BENNE_H