home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / The Hacks / OutOfContextMenus / Source / CDuplicateBehavior.h < prev    next >
Encoding:
Text File  |  1999-06-25  |  493 b   |  22 lines  |  [TEXT/CWIE]

  1. // ===========================================================================
  2. //    CDuplicateBehavior.h                 ©1999 Eric Traut
  3. // ===========================================================================
  4.  
  5. #pragma once
  6.  
  7. #include "COffscreenBehavior.h"
  8.  
  9.  
  10. class CDuplicateBehavior : public COffscreenBehavior
  11. {
  12.     public:
  13.         CDuplicateBehavior(CShadowWindow &        inShadowWindow);
  14.  
  15.         virtual Boolean
  16.         RenderToGWorld(    StGWorldLocker &        inBackingLocker,
  17.                         StGWorldLocker &        inRenderingLocker);
  18. };
  19.  
  20.  
  21.  
  22.