home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!paladin.american.edu!howland.reston.ans.net!spool.mu.edu!olivea!apple!applelink.apple.com
- From: SANTADOG@ISYS.KING.AC.UK
- Newsgroups: comp.sys.mac.oop.macapp3
- Subject: pure virtual member function ?
- Message-ID: <9301111713.aa12798@ceres.king.ac.uk>
- Date: 11 Jan 93 17:15:00 GMT
- Sender: daemon@Apple.COM
- Organization: AppleLink Gateway
- Lines: 45
-
- From: simon <santadog@isys.king.ac.uk>
- Subject: pure virtual member function ??
- Via: uk.ac.kingston; Mon, 11 Jan 1993 17:13:54 +0000
- To: MACAPP3TECH$@applelink.apple.com
-
- Can anyone explain this error from compiling FotoApp, please?
-
- File "UIPCommand.h"; line 86 # warning: pure virtual member function
- TIPCommand::DoImageProcessing() must be defined because TIPCommand is derived
- from PascalObject
-
- thank-you in..
- slucas
-
- UIPCommand.h
- -----------
- class TIPCommand : public TClientCommand {
- private:
- PicHandle fOldPicture;
- PicHandle fNewPicture;
- public:
- virtual pascal void IIPCommand(CommandNumber itsC
- ommandNumber,
-
- TImageDocument* itsDocument,
-
- AEEventID itsEventID);
- virtual pascal void Initialize();
- // OVERRIDE
- virtual pascal void Free();
- // OVERRIDE
-
- virtual pascal void DoIt();
- // OVERRIDE
- virtual pascal void UndoIt();
- // OVERRIDE
- virtual pascal void RedoIt();
- // OVERRIDE
-
- virtual pascal void ProcessReply(TAppleEvent* the
- Reply); // OVERRIDE
-
- virtual pascal TImageDocument* GetImageDocument();
- };
-
-