#ifndef INTCELLFULL_H
#define INTCELLFULL_H

class IntCellFull{
public:
  IntCellFull(int initValue);
  IntCellFull(const IntCellFull& rhs);
  const IntCellFull & operator=(const IntCellFull& rhs);
  int getValue() const;
  void setValue(int newValue);

private:
  int* value;
}; // don't forget this semicolon!!
#endif