X-Git-Url: http://git.maemo.org/git/?p=opencv;a=blobdiff_plain;f=apps%2FHMMDemo%2FMiscParams.cpp;fp=apps%2FHMMDemo%2FMiscParams.cpp;h=0000000000000000000000000000000000000000;hp=a56b4f2f7443ab15945253930754b5715b391dea;hb=e4c14cdbdf2fe805e79cd96ded236f57e7b89060;hpb=454138ff8a20f6edb9b65a910101403d8b520643 diff --git a/apps/HMMDemo/MiscParams.cpp b/apps/HMMDemo/MiscParams.cpp deleted file mode 100644 index a56b4f2..0000000 --- a/apps/HMMDemo/MiscParams.cpp +++ /dev/null @@ -1,54 +0,0 @@ -// MiscParams.cpp : implementation file -// - -#include "stdafx.h" -#include "hmmdemo.h" -#include "MiscParams.h" - -#ifdef _DEBUG -#define new DEBUG_NEW -#undef THIS_FILE -static char THIS_FILE[] = __FILE__; -#endif - -///////////////////////////////////////////////////////////////////////////// -// CMiscParams property page - -IMPLEMENT_DYNCREATE(CMiscParams, CPropertyPage) - -CMiscParams::CMiscParams() : CPropertyPage(CMiscParams::IDD) -{ - //{{AFX_DATA_INIT(CMiscParams) - m_FixedWidth = 0; - m_FixedHeight = 0; - m_useHeight = FALSE; - m_useWidth = FALSE; - m_SuppressIntensity = FALSE; - //}}AFX_DATA_INIT -} - -CMiscParams::~CMiscParams() -{ -} - -void CMiscParams::DoDataExchange(CDataExchange* pDX) -{ - CPropertyPage::DoDataExchange(pDX); - //{{AFX_DATA_MAP(CMiscParams) - DDX_Text(pDX, IDC_FIX_WIDTH, m_FixedWidth); - DDX_Text(pDX, IDC_FIX_HEIGHT, m_FixedHeight); - DDX_Check(pDX, IDC_TO_HEIGHT, m_useHeight); - DDX_Check(pDX, IDC_TO_WIDTH, m_useWidth); - DDX_Check(pDX, IDC_SUPPRESS_INTENSITY, m_SuppressIntensity); - //}}AFX_DATA_MAP -} - - -BEGIN_MESSAGE_MAP(CMiscParams, CPropertyPage) - //{{AFX_MSG_MAP(CMiscParams) - // NOTE: the ClassWizard will add message map macros here - //}}AFX_MSG_MAP -END_MESSAGE_MAP() - -///////////////////////////////////////////////////////////////////////////// -// CMiscParams message handlers