www.pudn.com > Mos.rar > Mos_input.h


// Mos_input.h: interface for the CMos_input class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#if !defined(AFX_MOS_INPUT_H__F0337012_3FE5_4223_95D5_62E297E2B730__INCLUDED_) 
#define AFX_MOS_INPUT_H__F0337012_3FE5_4223_95D5_62E297E2B730__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
#include "JCB.h" 
#include "Mos_proc.h" 
#include "Mos_UI.h"	// Added by ClassView 
class CMos_input   
{ 
public: 
	void pre_input(); 
	CMos_input(); 
	virtual ~CMos_input(); 
protected: 
	void FillJcb(jcbtype* &pJ); 
	jcbtype* jcb_allocation(); 
	void getins(); 
	int getdata(); 
private: 
	CMos_UI m_UI; 
	CMos_proc m_proc; 
	int Bufflen; 
	char Buffer[41]; 
	char Data[41]; //data buffer; 
	int Ptr;//buffer pointer of Data 
	int Bptr;//buffer pointer of Buffer 
}; 
 
#endif // !defined(AFX_MOS_INPUT_H__F0337012_3FE5_4223_95D5_62E297E2B730__INCLUDED_)