44 lines
943 B
C++
44 lines
943 B
C++
// SectBar.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "dockprop.h"
|
|
#include "SectBar.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSectBar dialog
|
|
|
|
|
|
CSectBar::CSectBar(CWnd* pParent /*=NULL*/)
|
|
: CDialogBar()
|
|
{
|
|
//{{AFX_DATA_INIT(CSectBar)
|
|
// NOTE: the ClassWizard will add member initialization here
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
|
|
void CSectBar::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialogBar::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(CSectBar)
|
|
// NOTE: the ClassWizard will add DDX and DDV calls here
|
|
//}}AFX_DATA_MAP
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CSectBar, CDialogBar)
|
|
//{{AFX_MSG_MAP(CSectBar)
|
|
// NOTE: the ClassWizard will add message map macros here
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSectBar message handlers
|