home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-29 | 1.2 KB | 44 lines | [TEXT/CWIE] |
- // Copyright © 1995-96 Apple Computer, Inc. All rights reserved.
- // Release Version: $ ODF 1 $
-
- //=============================================================================
- #ifndef COMMANDS_H
- #include "Commands.h" // CGraphics3DCommand
- #endif
-
- //=============================================================================
- #ifdef FW_BUILD_MAC
- #pragma segment Graphics3D
- #endif
-
- //========================================================================================
- CGraphics3DCommand::CGraphics3DCommand(Environment* ev, ODCommandID id,
- FW_CFrame* frame)
- : FW_CCommand(ev, id, frame, true)
- {
- }
-
- //----------------------------------------------------------------------------------------
- CGraphics3DCommand::~CGraphics3DCommand()
- {
- }
-
- //----------------------------------------------------------------------------------------
- void
- CGraphics3DCommand::DoIt(Environment* ev) // Override
- {
- }
-
- //----------------------------------------------------------------------------------------
- void
- CGraphics3DCommand::UndoIt(Environment* ev) // Override
- {
- }
-
- //----------------------------------------------------------------------------------------
- void
- CGraphics3DCommand::RedoIt(Environment* ev) // Override
- {
- this->DoIt(ev);
- }
-