www.pudn.com > partsumhist.rar > chistogram.cpp


// chistogram.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "practice.h" 
#include "chistogram.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// chistogram dialog 
 
 
chistogram::chistogram(CWnd* pParent /*=NULL*/) 
	: CDialog(chistogram::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(chistogram) 
		// NOTE: the ClassWizard will add member initialization here 
	//}}AFX_DATA_INIT 
} 
 
 
void chistogram::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(chistogram) 
		// NOTE: the ClassWizard will add DDX and DDV calls here 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(chistogram, CDialog) 
	//{{AFX_MSG_MAP(chistogram) 
	ON_BN_CLICKED(IDC_green, Ongreen) 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// chistogram message handlers 
 
void chistogram::Ongreen()  
{ 
	// TODO: Add your control notification handler code here 
	 
}