home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DUProjects / Graphics3D / Sources / Commands.h < prev    next >
Encoding:
Text File  |  1996-08-16  |  798 b   |  32 lines  |  [TEXT/CWIE]

  1. //    Copyright © 1995-96 Apple Computer. All rights reserved.
  2. //    Release Version:    $ ODF 1 $
  3.  
  4. #ifndef GRAPHICS3DCMD_H
  5. #define GRAPHICS3DCMD_H
  6.  
  7. //==========================================================
  8. #ifndef FWCMD_H
  9. #include "FWCmd.h"            // FW_CCommand
  10. #endif
  11.  
  12. #ifndef FWMNUITM_H
  13.     #include "FWMnuItm.h"    // FW_kFirstUserCommandID
  14. #endif 
  15.  
  16. //==========================================================
  17. class CGraphics3DCommand : public FW_CCommand
  18. {
  19. public:
  20.                     CGraphics3DCommand(Environment* ev, 
  21.                                     ODCommandID id,
  22.                                     FW_CFrame* frame);
  23.     virtual         ~CGraphics3DCommand();
  24. protected:
  25.     // overrides
  26.     virtual void     DoIt(Environment* ev);
  27.     virtual void     UndoIt(Environment* ev);
  28.     virtual void     RedoIt(Environment* ev);
  29. };
  30.  
  31. //==========================================================
  32. #endif