home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / advframe / winview / infoview.hpp < prev    next >
Text File  |  1996-10-29  |  692b  |  28 lines

  1. #ifndef _INFOVIEW_
  2. #define _INFOVIEW_
  3. //************************************************************
  4. // Advanced Frame - Profile Viewer Example
  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 "hwinobj.hpp"
  11.  
  12. class IMultiLineEdit;
  13.  
  14. class InfoView : public HWindowObjectView {
  15. public:
  16.   InfoView ( HWindowObject& object );
  17. protected:
  18. virtual InfoView
  19.  &populate ( );
  20. static IMultiLineEdit
  21.  *clientWindow ( );
  22. private:
  23. InfoView ( const InfoView& );
  24. InfoView& operator= ( const InfoView& );
  25. };
  26.  
  27. #endif // _INFOVIEW_
  28.