This commit is contained in:
coco
2026-07-03 16:05:30 +08:00
commit df489d5640
1101 changed files with 779140 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
// TestingZone.h: interface for the CTestingZone class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_TESTINGZONE_H__D12CA730_3F9A_484E_8990_8E3E1E3A26C5__INCLUDED_)
#define AFX_TESTINGZONE_H__D12CA730_3F9A_484E_8990_8E3E1E3A26C5__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "DataMngStruct.h"
class CTestingZone : public CDataMngStruct
{
public:
bool ShowDetailInfo(CListCtrl& tzDetailList);
CTestingZone(DWORD dwID, _ConnectionPtr& pConnection);
virtual ~CTestingZone();
DWORD m_dwID;
private:
_ConnectionPtr m_pConnection;
CString m_szTZname;
CString m_szCDate;
CString m_szDesc;
CString m_szLocation;
CString m_szCN;
CString m_szTZtype;
};
#endif // !defined(AFX_TESTINGZONE_H__D12CA730_3F9A_484E_8990_8E3E1E3A26C5__INCLUDED_)