41 lines
908 B
C++
41 lines
908 B
C++
// Project.h: interface for the CProject class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_PROJECT_H__72D81606_644D_4BAB_BE9F_8A1A59D6EFCE__INCLUDED_)
|
|
#define AFX_PROJECT_H__72D81606_644D_4BAB_BE9F_8A1A59D6EFCE__INCLUDED_
|
|
|
|
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
|
|
class CDataMngStruct;
|
|
class CProject : public CDataMngStruct
|
|
{
|
|
public:
|
|
bool ShowDetailInfo(CListCtrl& proDetailList);
|
|
CProject(DWORD dwID, _ConnectionPtr& pConnection);
|
|
virtual ~CProject();
|
|
DWORD m_dwID;
|
|
private:
|
|
_ConnectionPtr m_pConnection;
|
|
|
|
CString m_szCN;
|
|
CString m_szPRname;
|
|
CString m_szCNS;
|
|
CString m_szDesc;
|
|
CString m_szLocation;
|
|
CString m_szPRdate;
|
|
CString m_szDuration;
|
|
CString m_szPS;
|
|
CString m_szCS;
|
|
CString m_szPM;
|
|
CString m_szQAS;
|
|
CString m_szStandard;
|
|
};
|
|
|
|
#endif // !defined(AFX_PROJECT_H__72D81606_644D_4BAB_BE9F_8A1A59D6EFCE__INCLUDED_)
|