#if _MSC_VER > 1000
|
#pragma once
|
#endif // _MSC_VER > 1000
|
// QLSysMsg.h : header file
|
//
|
|
#include "QLCommand.h"
|
|
/////////////////////////////////////////////////////////////////////////////
|
// CQLSysMsg window
|
|
class AFX_EXT_CLASS CQLSysMsg : public CQLCommand
|
{
|
// Construction
|
public:
|
CQLSysMsg();
|
virtual ~CQLSysMsg();
|
|
// Attributes
|
public:
|
UINT m_nTrID;
|
CString m_strBody;
|
|
BOOL m_bValidate; // ÔÚ·¢ËÍÖ¸ÁîǰÊÇ·ñÐèÈ·¶¨ÓÐЧÐÔ
|
|
// Operations
|
public:
|
void SetMethod( CString strMethod );
|
CString GetMethod();
|
void SetTrID( long nTrID );
|
long GetTrID();
|
|
CString GetBody();
|
|
BOOL GetParamIntByName( CString strName, long &nValue );
|
BOOL GetParamStrByName( CString strName, CString &strValue );
|
|
int GetParamIndexByName( CString strName, CString &strData );
|
|
};
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//{{AFX_INSERT_LOCATION}}
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|