home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-22 | 737 b | 28 lines | [TEXT/CWIE] |
- // Release Version: $ ODF 2 $
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
-
- #ifndef GRAPHICS3DCMD_H
- #define GRAPHICS3DCMD_H
-
- //==========================================================
- #ifndef FWCMD_H
- #include "FWCmd.h" // FW_CCommand
- #endif
-
- //==========================================================
- class CGraphics3DCommand : public FW_CCommand
- {
- public:
- CGraphics3DCommand(Environment* ev,
- ODCommandID id,
- FW_CFrame* frame);
- virtual ~CGraphics3DCommand();
- protected:
- // overrides
- virtual void DoIt(Environment* ev);
- virtual void UndoIt(Environment* ev);
- virtual void RedoIt(Environment* ev);
- };
-
- //==========================================================
- #endif