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