Date: Wed, 4 Jun 1997 12:15:17 +0200 (MDT) Message-Id: <3.0.16.19970605110638.2d5f362a@hem1.passagen.se> To: djgpp AT delorie DOT com From: Peter Palotas Subject: Virtual functions Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Precedence: bulk If I have the following two classes: class parent { public: virtual int foo(void) { cprintf("Parent foo"); } }; class child : public parent { public: int foo(void) { cprintf("Child foo"); } }; Is there some way I can call the parent::foo() from within child::foo()? Or is this just impossible? // Blizzar -- blizzar AT hem1 DOT passagen DOT se -- http://hem1.passagen.se/dnt **************************************************************************** Don't tell me about the answer, 'cause then another one will come along soon I don't believe you have the answer, I've got ideas too But if you got enough naivity, and you got conviction then the answer is perfect for you! // Bad Religion - Generator, The Answer ****************************************************************************