home *** CD-ROM | disk | FTP | other *** search
- #ifndef _DEVVIEW_
- #define _DEVVIEW_
- //************************************************************
- // Container Control - Help in the Container
- //
- // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
- // Copyright (c) 1997 John Wiley & Sons, Inc.
- // All Rights Reserved.
- //************************************************************
- #include <iframe.hpp>
- #include <icnrctl.hpp>
- #include <icnrcol.hpp>
- #include <icnrhdr.hpp>
- #include <icnrehdr.hpp>
- #include <istring.hpp>
- #include <ihelp.hpp>
-
- // Forward Declarations
- class Developer;
-
- class DeveloperView : public IFrameWindow
- {
- public:
- DeveloperView ( );
-
- private:
- IContainerControl
- fContainer;
-
- ICnrHandler
- fCnrHandler;
- ICnrEditHandler
- fCnrEditHandler;
- IHelpWindow
- fHelpWindow;
- DeveloperView (const DeveloperView& );
- DeveloperView& operator=(const DeveloperView& );
- };
-
- #endif // _DEVVIEW_