Source code for ./slides/code/01-cpp/IntCell.h (via source-highlight)

// File IntCell.h

#ifndef INTCELL_H
#define INTCELL_H

class IntCell {
public:
    IntCell( int initialValue = 0 );

    int getValue( ) const;
    void setValue( int val );

private:
    int storedValue;
    int max(int m) const;
};

#endif