ConfigEnv.cpp
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:1k
源码类别:

网格计算

开发平台:

Visual C++

  1. // ConfigEnv.cpp : implementation file
  2. #include "stdafx.h"
  3. #include "trfAgent.h"
  4. #include "ConfigEnv.h"
  5. // CConfigEnv
  6. IMPLEMENT_DYNAMIC(CConfigEnv, CPropertySheet)
  7. CConfigEnv::CConfigEnv(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  8. :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
  9. {
  10. this->AddPage(&page_SysView);
  11. this->AddPage(&page_Network);
  12. this->AddPage(&page_SysChating);
  13. }
  14. CConfigEnv::CConfigEnv(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  15. :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
  16. {
  17. this->AddPage(&page_SysView);
  18. this->AddPage(&page_Network);
  19. this->AddPage(&page_SysChating);
  20. }
  21. CConfigEnv::~CConfigEnv(){}
  22. BEGIN_MESSAGE_MAP(CConfigEnv, CPropertySheet)
  23. //{{AFX_MSG_MAP(CConfigEnv)
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()