⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 freadwriteview.h

📁 针对激光扫描仪sick的扫描数据进行读取
💻 H
字号:
// FReadWriteView.h : interface of the CFReadWriteView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_FREADWRITEVIEW_H__6C5CE013_9AF7_41D0_81E3_C1D5E88BBBDA__INCLUDED_)
#define AFX_FREADWRITEVIEW_H__6C5CE013_9AF7_41D0_81E3_C1D5E88BBBDA__INCLUDED_
#include "Afxtempl.h"
#include "DecodeSICK.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


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

// Attributes
public:
	CFReadWriteDoc* GetDocument();	
	CString m_fileDest,m_filesource;
    float* m_iarray;
	CDecodeSICK m_sickDecode;
	FILE* OUTSTREAM;
	BOOL m_bOpen;
	int m_count,m_errCount;
	double xindex,yindex,zindex,dx;
	double vtheta,htheta;
	double angle,offset;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CFReadWriteView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	virtual void OnInitialUpdate();
	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 ~CFReadWriteView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CFReadWriteView)
	afx_msg void OnFileDestination();
	afx_msg void OnFileSource();
	afx_msg void OnTimer(UINT nIDEvent);
	afx_msg void OnStopTranslate();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in FReadWriteView.cpp
inline CFReadWriteDoc* CFReadWriteView::GetDocument()
   { return (CFReadWriteDoc*)m_pDocument; }
#endif

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

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

#endif // !defined(AFX_FREADWRITEVIEW_H__6C5CE013_9AF7_41D0_81E3_C1D5E88BBBDA__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -