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.h < prev    next >
Encoding:
Text File  |  1996-08-22  |  737 b   |  28 lines  |  [TEXT/CWIE]

  1. //    Release Version:    $ ODF 2 $
  2. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  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. //==========================================================
  13. class CGraphics3DCommand : public FW_CCommand
  14. {
  15. public:
  16.                     CGraphics3DCommand(Environment* ev, 
  17.                                     ODCommandID id,
  18.                                     FW_CFrame* frame);
  19.     virtual         ~CGraphics3DCommand();
  20. protected:
  21.     // overrides
  22.     virtual void     DoIt(Environment* ev);
  23.     virtual void     UndoIt(Environment* ev);
  24.     virtual void     RedoIt(Environment* ev);
  25. };
  26.  
  27. //==========================================================
  28. #endif