CBaseTab.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. //-----------------------------------------------------------------------//
  2. // This is a part of the GuiLib MFC Extention.  //
  3. // Autor  :  Francisco Campos  //
  4. // (C) 2002 Francisco Campos <www.beyondata.com> All rights reserved     //
  5. // This code is provided "as is", with absolutely no warranty expressed  //
  6. // or implied. Any use is at your own risk.  //
  7. // You must obtain the author's consent before you can include this code //
  8. // in a software library.  //
  9. // If the source code in  this file is used in any application  //
  10. // then acknowledgement must be made to the author of this program  //
  11. // fcampos@tutopia.com  //
  12. //-----------------------------------------------------------------------//
  13. // CTab.h : implementation file
  14. #if !defined(AFX_CBASETAB_INCLUDED_)
  15. #define AFX_CBASETAB_INCLUDED_
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif // _MSC_VER > 1000
  19. class CTab 
  20. {
  21. public:
  22. CTab(CWnd* mpParent,LPCSTR mlpMsg,UINT muIcon=-1)
  23. {
  24. pParent =mpParent;
  25. lpMsg =mlpMsg;
  26. uIcon =muIcon;
  27. rect.SetRectEmpty();
  28. }
  29. public:
  30. //************************************
  31. CWnd* pParent;
  32. LPCSTR lpMsg;
  33. UINT uIcon;
  34. CRect rect;
  35. };
  36. #endif