// ResultDialog.cpp : implementation file // #include "stdafx.h" #include "h6-udlånssystem.h" #include "ResultDialog.h" #include ".\resultdialog.h" // ResultDialog dialog IMPLEMENT_DYNAMIC(ResultDialog, CDialog) ResultDialog::ResultDialog(CWnd* pParent /*=NULL*/) : CDialog(ResultDialog::IDD, pParent) { } ResultDialog::~ResultDialog() { } void ResultDialog::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); } BEGIN_MESSAGE_MAP(ResultDialog, CDialog) END_MESSAGE_MAP() // ResultDialog message handlers void ResultDialog::OnOK() { // TODO: Add your specialized code here and/or call the base class //CDialog::OnOK(); } void ResultDialog::OnCancel() { // TODO: Add your specialized code here and/or call the base class //CDialog::OnCancel(); }