home *** CD-ROM | disk | FTP | other *** search
/ Using Visual Basic 5 (Platinum Edition) / vb5.iso / ACTIVEX / SRDVID / DATA.1 / svview.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-10  |  1.3 KB  |  48 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  SVView.h : interface of the CSVViewerView class
  4. //
  5. /////////////////////////////////////////////////////////////////////////////
  6. //
  7. //  (C) Copyright Black Diamond Consulting, Inc 1996. All rights reserved.
  8. //
  9. //    You have a royalty-free right to use, modify, reproduce and 
  10. //    distribute the Sample Files (and/or any modified version) in 
  11. //    any way you find useful, provided that you agree that Black 
  12. //    Diamond Consulting has no warranty obligations or liability
  13. //    for any Sample Application Files which are modified. 
  14. //
  15. //    Revision History:
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18.  
  19. #define __SVVIEW_H__
  20.  
  21. #ifndef __CSURVIEW_H__
  22.     #include "CSurView.h"
  23. #endif
  24.  
  25. class CSVViewerView : public CSurroundView
  26. {                  
  27.  
  28. protected: // create from serialization only
  29.     CSVViewerView();
  30.     DECLARE_DYNCREATE(CSVViewerView)
  31.  
  32.     virtual ISurround* GetISurround();
  33.  
  34.     //{{AFX_MSG(CSVViewerView)
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37.  
  38. public:
  39.     virtual ~CSVViewerView();
  40.  
  41.     // ClassWizard generated virtual function overrides
  42.     //{{AFX_VIRTUAL(CSVViewerView)
  43.     public:
  44.     virtual void OnDraw( CDC* pDC );  // overridden to draw this view
  45.     protected:
  46.     //}}AFX_VIRTUAL
  47. };
  48.