35 lines
520 B
C++
35 lines
520 B
C++
// AboutDlg.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "resource.h"
|
|
#include "AboutDlg.h"
|
|
#include "afxdialogex.h"
|
|
|
|
|
|
// CAboutDlg dialog
|
|
|
|
IMPLEMENT_DYNAMIC(CAboutDlg, CDialog)
|
|
|
|
CAboutDlg::CAboutDlg(CWnd* pParent /*=NULL*/)
|
|
: CDialog(CAboutDlg::IDD, pParent)
|
|
{
|
|
|
|
}
|
|
|
|
CAboutDlg::~CAboutDlg()
|
|
{
|
|
}
|
|
|
|
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
// CAboutDlg message handlers
|