home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DU Projects / Graphics3D / Sources / Commands.cpp < prev    next >
Encoding:
Text File  |  1996-08-22  |  1.3 KB  |  46 lines  |  [TEXT/CWIE]

  1. //    Release Version:    $ ODF 2 $
  2. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  3.  
  4. //=============================================================================
  5. #ifndef COMMANDS_H
  6. #include "Commands.h"                // CGraphics3DCommand
  7. #endif
  8.  
  9. //=============================================================================
  10. #ifdef FW_BUILD_MAC
  11. #pragma segment Graphics3D
  12. #endif
  13.  
  14. //========================================================================================
  15. CGraphics3DCommand::CGraphics3DCommand(Environment* ev, ODCommandID id,  
  16.                                         FW_CFrame* frame)
  17.   : FW_CCommand(ev, id, frame, true)
  18. {
  19. }
  20.  
  21. //----------------------------------------------------------------------------------------
  22. CGraphics3DCommand::~CGraphics3DCommand()
  23. {
  24. }
  25.  
  26. //----------------------------------------------------------------------------------------
  27. void 
  28. CGraphics3DCommand::DoIt(Environment* ev)        // Override
  29. {
  30.     FW_UNUSED(ev);
  31. }
  32.  
  33. //----------------------------------------------------------------------------------------
  34. void 
  35. CGraphics3DCommand::UndoIt(Environment* ev)        // Override
  36. {
  37.     FW_UNUSED(ev);
  38. }
  39.  
  40. //----------------------------------------------------------------------------------------
  41. void 
  42. CGraphics3DCommand::RedoIt(Environment* ev)        // Override
  43. {
  44.     this->DoIt(ev);
  45. }
  46.