ConfigEnv.cpp
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:1k
- // ConfigEnv.cpp : implementation file
- #include "stdafx.h"
- #include "trfAgent.h"
- #include "ConfigEnv.h"
- // CConfigEnv
- IMPLEMENT_DYNAMIC(CConfigEnv, CPropertySheet)
- CConfigEnv::CConfigEnv(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
- :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
- {
- this->AddPage(&page_SysView);
- this->AddPage(&page_Network);
- this->AddPage(&page_SysChating);
- }
- CConfigEnv::CConfigEnv(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
- :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
- {
- this->AddPage(&page_SysView);
- this->AddPage(&page_Network);
- this->AddPage(&page_SysChating);
- }
- CConfigEnv::~CConfigEnv(){}
- BEGIN_MESSAGE_MAP(CConfigEnv, CPropertySheet)
- //{{AFX_MSG_MAP(CConfigEnv)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()