Message-ID: From: Bryan Murphy To: "'djgpp AT delorie DOT com'" , "'Roberto Henriquez Laurent'" Subject: RE: copy constructor Date: Fri, 13 Jun 1997 16:45:22 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Precedence: bulk Yes, simple typing error. I threw that together on the fly. Sorry. Bryan Murphy Web Developer HCST, Inc. : http://www.hcst.com/ Home Page: http://www.hcst.com/~bryan/ >---------- >> bozo = new CLOWN("anak"); > > I think that's wrong (to assign an object variable a pointer value), >i.e., for that sentence to work, bozo should be CLOWN*, not CLOWN. So >maybe it should be > > bozo = CLOWN("anak"); //Would this work? >