home *** CD-ROM | disk | FTP | other *** search
/ Xentax forum attachments archive / xentax.7z / 8090 / ModelEdit.7z / AnimCleanupDlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2006-03-08  |  1.1 KB  |  46 lines

  1. // AnimCleanupDlg.cpp : implementation file
  2. //
  3.  
  4. #include "precompile.h"
  5. #include "modeledit.h"
  6. #include "animcleanupdlg.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. // CAnimCleanupDlg dialog
  16.  
  17.  
  18. CAnimCleanupDlg::CAnimCleanupDlg(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CAnimCleanupDlg::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CAnimCleanupDlg)
  22.     m_bPreserveRot = FALSE;
  23.     m_VarianceString = _T("");
  24.     //}}AFX_DATA_INIT
  25. }
  26.  
  27.  
  28. void CAnimCleanupDlg::DoDataExchange(CDataExchange* pDX)
  29. {
  30.     CDialog::DoDataExchange(pDX);
  31.     //{{AFX_DATA_MAP(CAnimCleanupDlg)
  32.     DDX_Check(pDX, IDC_PRESERVEROT, m_bPreserveRot);
  33.     DDX_Text(pDX, IDC_MINVARIANCE, m_VarianceString);
  34.     //}}AFX_DATA_MAP
  35. }
  36.  
  37.  
  38. BEGIN_MESSAGE_MAP(CAnimCleanupDlg, CDialog)
  39.     //{{AFX_MSG_MAP(CAnimCleanupDlg)
  40.         // NOTE: the ClassWizard will add message map macros here
  41.     //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CAnimCleanupDlg message handlers
  46.