home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / cnr / help / devview.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-29  |  915 b   |  41 lines

  1. #ifndef _DEVVIEW_
  2. #define _DEVVIEW_
  3. //************************************************************
  4. // Container Control - Help in the Container                    
  5. //
  6. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  7. // Copyright (c) 1997 John Wiley & Sons, Inc. 
  8. // All Rights Reserved.
  9. //************************************************************
  10. #include <iframe.hpp>
  11. #include <icnrctl.hpp>
  12. #include <icnrcol.hpp>
  13. #include <icnrhdr.hpp>
  14. #include <icnrehdr.hpp>
  15. #include <istring.hpp>
  16. #include <ihelp.hpp>
  17.  
  18. // Forward Declarations
  19. class Developer;
  20.  
  21. class DeveloperView : public IFrameWindow
  22. {
  23. public:
  24.    DeveloperView ( );
  25.  
  26. private:
  27. IContainerControl
  28.  fContainer;
  29.  
  30. ICnrHandler
  31.   fCnrHandler;
  32. ICnrEditHandler
  33.   fCnrEditHandler;
  34. IHelpWindow
  35.  fHelpWindow;
  36. DeveloperView (const DeveloperView& );
  37. DeveloperView& operator=(const DeveloperView& );
  38. };
  39.  
  40. #endif // _DEVVIEW_
  41.