44 lines
908 B
C++
44 lines
908 B
C++
|
// Filt.cpp : implementation file
|
||
|
//
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
#include "smsmanager.h"
|
||
|
#include "Filt.h"
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
#define new DEBUG_NEW
|
||
|
#undef THIS_FILE
|
||
|
static char THIS_FILE[] = __FILE__;
|
||
|
#endif
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CFilt dialog
|
||
|
|
||
|
|
||
|
CFilt::CFilt(CWnd* pParent /*=NULL*/)
|
||
|
: CDialog(CFilt::IDD, pParent)
|
||
|
{
|
||
|
//{{AFX_DATA_INIT(CFilt)
|
||
|
// NOTE: the ClassWizard will add member initialization here
|
||
|
//}}AFX_DATA_INIT
|
||
|
}
|
||
|
|
||
|
|
||
|
void CFilt::DoDataExchange(CDataExchange* pDX)
|
||
|
{
|
||
|
CDialog::DoDataExchange(pDX);
|
||
|
//{{AFX_DATA_MAP(CFilt)
|
||
|
DDX_Control(pDX, IDC_FILT_LIST, m_wndList);
|
||
|
//}}AFX_DATA_MAP
|
||
|
}
|
||
|
|
||
|
|
||
|
BEGIN_MESSAGE_MAP(CFilt, CDialog)
|
||
|
//{{AFX_MSG_MAP(CFilt)
|
||
|
// NOTE: the ClassWizard will add message map macros here
|
||
|
//}}AFX_MSG_MAP
|
||
|
END_MESSAGE_MAP()
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CFilt message handlers
|