home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-06-23 | 546 b | 26 lines | [TEXT/CWIE] |
- // ===========================================================================
- // CFlipBehavior.h ©1999 Eric Traut
- // ===========================================================================
-
- #pragma once
-
- #include "COffscreenBehavior.h"
-
-
- class CFlipBehavior : public COffscreenBehavior
- {
- public:
- CFlipBehavior( CShadowWindow & inShadowWindow,
- Boolean inHorizontal);
-
- virtual Boolean
- RenderToGWorld( StGWorldLocker & inBackingLocker,
- StGWorldLocker & inRenderingLocker);
-
- private:
- Boolean mHorizontal;
- };
-
-
-
-