home *** CD-ROM | disk | FTP | other *** search
- /////////////////////////////////////////////////////////////////////////////
- //
- // svview.cpp : Implementation of the CSVViewerView class
- //
- /////////////////////////////////////////////////////////////////////////////
- //
- // (C) Copyright Black Diamond Consulting, Inc 1996. All rights reserved.
- //
- // You have a royalty-free right to use, modify, reproduce and
- // distribute the Sample Files (and/or any modified version) in
- // any way you find useful, provided that you agree that Black
- // Diamond Consulting has no warranty obligations or liability
- // for any Sample Application Files which are modified.
- //
- // Revision History:
- //
- /////////////////////////////////////////////////////////////////////////////
-
- #include "stdafx.h"
-
- #ifndef _Surround_H_
- #include "Surround.h"
- #endif
-
- #ifndef __CSURVIEW_H__
- #include "CSurView.h"
- #endif
-
- #ifndef __SVVIEW_H__
- #include "SVView.h"
- #endif
-
- #ifndef __svDoc_H__
- #include "svDoc.h"
- #endif
-
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CSVViewerView
-
- IMPLEMENT_DYNCREATE(CSVViewerView, CSurroundView)
-
- BEGIN_MESSAGE_MAP(CSVViewerView, CSurroundView)
- //{{AFX_MSG_MAP(CSVViewerView)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CSVViewerView construction/destruction
-
- CSVViewerView::CSVViewerView()
- {
- }
-
- CSVViewerView::~CSVViewerView()
- {
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // CSVViewerView drawing
- void CSVViewerView::OnDraw(CDC* pDC)
- {
- CSurroundView::OnDraw(pDC);
- }
-
- ISurround* CSVViewerView::GetISurround()
- {
- return ((CSVViewerDoc*)this->GetDocument())->GetISurround();
- }
-