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

📄 sweepobj.h

📁 图像处理的压缩算法
💻 H
字号:
/*--------------------------------------------------------------------------*
 * File Name:	SweepObj.h													*
 * Purpose:		Demostrate realtime update on a graph						*
 * Creation:	April 04, 2000												*
 * Copyright (c) 2000 Microcal Software, Inc.								*
 *																			*
 * Modification Log:														*
 *--------------------------------------------------------------------------*/      

#ifndef _SWEEPOBJ_H
#define _SWEEPOBJ_H  
//---------------------------------------------------------------------------
//								top of file
//---------------------------------------------------------------------------

#include "mocamain.h" // Required header file
#include "ThreadSubObj.h"


//---------------------------------------------------------------------------
// CSweepObj (main object class)
//
//---------------------------------------------------------------------------
class CSweepObj : public CMOCAObjBase
{
	// Declare Property Map if object has LabTalk properties
	MOCA_DECLARE_PROP_MAP(CSweepObj);

	// Declare Method Map if object has LabTalk methods
	MOCA_DECLARE_METH_MAP(CSweepObj)

	// Declare SubObject Map if object has LabTalk methods
	MOCA_DECLARE_SUBOBJ_MAP(CSweepObj)

public: // constructors and deconstructors
	CSweepObj();
	~CSweepObj();

private: // data members for LabTalk Properties

public: // member functions for LabTalk Properties
	BOOL GetNumPoints(int &iValue);
	BOOL SetNumPoints(int iValue);

	BOOL GetMaxNumPoints(int &iValue);
	BOOL SetMaxNumPoints(int iValue);

	BOOL GetWksName(LPSTR lpstr);
	BOOL SetWksName(LPCSTR lpcstr);

private: // member functions for LabTalk Methods

public: // data members for LabTalk subobjects
	CThreadSubObj m_ThreadSubObj;
};

//---------------------------------------------------------------------------
//								end of file
//---------------------------------------------------------------------------
#endif //_SWEEPOBJ_H

⌨️ 快捷键说明

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