33 lines
828 B
C++
33 lines
828 B
C++
// 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_)
|