home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-16 | 798 b | 32 lines | [TEXT/CWIE] |
- // Copyright © 1995-96 Apple Computer. All rights reserved.
- // Release Version: $ ODF 1 $
-
- #ifndef GRAPHICS3DCMD_H
- #define GRAPHICS3DCMD_H
-
- //==========================================================
- #ifndef FWCMD_H
- #include "FWCmd.h" // FW_CCommand
- #endif
-
- #ifndef FWMNUITM_H
- #include "FWMnuItm.h" // FW_kFirstUserCommandID
- #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