Try :-
class Cell
{
public:
Cell( int );
Cell( const Cell& );
Cell& operator=( const Cell& );
virtual ~Cell();
//...
};

Signature
Regards,
Nish [VC++ MVP]
http://www.voidnish.com
http://blog.voidnish.com
> Hi,
>
[quoted text clipped - 17 lines]
> The copy constructor looks normal to me, and I really do not know what's
> causing the problem - any help will be much appreciated
Alfonso Morra - 18 Jul 2005 10:25 GMT
> Try :-
>
[quoted text clipped - 7 lines]
> //...
> };
Truly, truly dumb mistake on my part. Sometimes happens when you've been
staring at the screen for too long ;-( !
Many thanks Nishant, for pointing out my goofy mistake (caused by lazy
copy and pasting")