www.pudn.com > 黑客帝国屏保.zip > MatrixString.h


// MatrixString.h: interface for the CMatrixString class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#if !defined(AFX_MATRIXSTRING_H__2A829C2A_60F7_4551_9156_5D4C8BEF82EB__INCLUDED_) 
#define AFX_MATRIXSTRING_H__2A829C2A_60F7_4551_9156_5D4C8BEF82EB__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
class CMatrixString   
{ 
public: 
	int GetLength(CDC *pDC = NULL); 
	CString GetString(); 
	CMatrixString(); 
	virtual ~CMatrixString(); 
	static LPCTSTR m_pData; 
	static int     m_nDataLen; 
private: 
	CString m_strMatrix; 
	int m_y; 
	int m_nLen; 
 
}; 
 
#endif // !defined(AFX_MATRIXSTRING_H__2A829C2A_60F7_4551_9156_5D4C8BEF82EB__INCLUDED_)