home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / beaversweeper_v101.zip / src / PropPageColor.cpp < prev    next >
C/C++ Source or Header  |  2003-01-06  |  1KB  |  47 lines

  1. // PropPageColor.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "tracker.h"
  6. #include "PropPageColor.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CPropPageColor property page
  16.  
  17. IMPLEMENT_DYNCREATE(CPropPageColor, CPropertyPage)
  18.  
  19. CPropPageColor::CPropPageColor() : CPropertyPage(CPropPageColor::IDD)
  20. {
  21.     //{{AFX_DATA_INIT(CPropPageColor)
  22.         // NOTE: the ClassWizard will add member initialization here
  23.     //}}AFX_DATA_INIT
  24. }
  25.  
  26. CPropPageColor::~CPropPageColor()
  27. {
  28. }
  29.  
  30. void CPropPageColor::DoDataExchange(CDataExchange* pDX)
  31. {
  32.     CPropertyPage::DoDataExchange(pDX);
  33.     //{{AFX_DATA_MAP(CPropPageColor)
  34.         // NOTE: the ClassWizard will add DDX and DDV calls here
  35.     //}}AFX_DATA_MAP
  36. }
  37.  
  38.  
  39. BEGIN_MESSAGE_MAP(CPropPageColor, CPropertyPage)
  40.     //{{AFX_MSG_MAP(CPropPageColor)
  41.         // NOTE: the ClassWizard will add message map macros here
  42.     //}}AFX_MSG_MAP
  43. END_MESSAGE_MAP()
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CPropPageColor message handlers
  47.