home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-02-15 | 1.0 KB | 38 lines | [TEXT/CWIE] |
- // Copyright © 1995 Apple Computer, Inc. All rights reserved.
- // Release Version: $ 1.0 d11 $
-
- #ifndef FRAME_H
- #define FRAME_H
-
- //=======================================================================
- // ----- Framework Includes -----
- #ifndef FWFRAME_H
- #include <FWFrame.h> // FW_CFrame
- #endif
-
- //=======================================================================
- class CSample2Part;
- class FW_CMenuEvent;
- class DevUniv_STalker;
-
- //=======================================================================
- class CSample2Frame : public FW_CFrame {
- public:
- FW_DECLARE_AUTO(CSample2Frame)
- CSample2Frame(Environment* ev,
- ODFrame* odFrame,
- FW_CPresentation* presentation,
- CSample2Part* sample2Part);
- virtual ~CSample2Frame();
- protected:
- // overrides
- virtual void Draw(Environment *ev,
- ODFacet* odFacet,
- ODShape* invalidShape);
- private:
- DevUniv_STalker* fSOMTalker; // SOM object for speech synthesis
- };
-
- //=======================================================================
- #endif
-