当前位置: 代码迷 >> GIS >> fatal error C1083 如何解决
  详细解决方案

fatal error C1083 如何解决

热度:297   发布时间:2016-05-05 06:12:26.0
fatal error C1083 怎么解决
程序如下:

// MapXSampleView.h : interface of the CMapXSampleView class
//
/////////////////////////////////////////////////////////////////////////////
#include "MAP.H"
:
:
class CMapXSampleView:public CView
{
:
:
:

protected:
CMapX m_ctrlMapX:
 :
 :
 
}
#if !defined(AFX_MAPXSAMPLEVIEW_H__7FF119FB_C927_4DBD_B9C9_10EC629594EE__INCLUDED_)
#define AFX_MAPXSAMPLEVIEW_H__7FF119FB_C927_4DBD_B9C9_10EC629594EE__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CMapXSampleView : public CView
{
protected: // create from serialization only
CMapXSampleView();
DECLARE_DYNCREATE(CMapXSampleView)

// Attributes
public:
CMapXSampleDoc* GetDocument();

// Operations
public:

// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMapXSampleView)
public:
virtual void OnDraw(CDC* pDC);  // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL

// Implementation
public:
virtual ~CMapXSampleView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
//{{AFX_MSG(CMapXSampleView)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnSetFocus(CWnd* pOldWnd);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in MapXSampleView.cpp
inline CMapXSampleDoc* CMapXSampleView::GetDocument()
   { return (CMapXSampleDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MAPXSAMPLEVIEW_H__7FF119FB_C927_4DBD_B9C9_10EC629594EE__INCLUDED_)
报错如下:
--------------------Configuration: MapXSample - Win32 Debug--------------------
Compiling...
MapXSample.cpp
d:\vc++ 6.0\msdev98\myprojects\mapxsample\mapxsampleview.h(4) : fatal error C1083: Cannot open include file: 'MAP.H': No such file or directory
MapXSampleView.cpp
d:\vc++ 6.0\msdev98\myprojects\mapxsample\mapxsampleview.h(4) : fatal error C1083: Cannot open include file: 'MAP.H': No such file or directory
Generating Code...
执行 cl.exe 时出错.

MapXSample.exe - 1 error(s), 0 warning(s)
------解决方案--------------------
     确保MAP.H存在并在VS的工程属性中把它的路径并附加头文件目录中。
  相关解决方案