⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 errorbox.h

📁 BCAM 1394 Driver
💻 H
字号:
//-----------------------------------------------------------------------------
//  (c) 2002 by Basler Vision Technologies
//  Section:  Vision Components
//  Project:  BCAM
//  $Header: ErrorBox.h, 4, 02.10.2002 14:31:26, Nebelung, H.$
//-----------------------------------------------------------------------------
/**
  \file     ErrorBox.h
 *
 * \brief Interface for the CErrorBox class
 *
 */
//-----------------------------------------------------------------------------


#if !defined(AFX_ERRORBOX_H__0D8F7C56_C6C9_11D5_9264_0090278E5E96__INCLUDED_)
#define AFX_ERRORBOX_H__0D8F7C56_C6C9_11D5_9264_0090278E5E96__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

//------------------------------------------------------------------------------
// class CErrorBox
// Author: 
// Date: 20.09.2002
//------------------------------------------------------------------------------
/**
 * \brief   Shows the error message and error code of an BcamException object
 *
 */
//------------------------------------------------------------------------------
class CErrorBox  : public CDialogImpl<CErrorBox>
{
public:
  enum {IDD=IDD_ERRORBOX};
  
  BEGIN_MSG_MAP(CErrorBox)
    MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
    COMMAND_ID_HANDLER(IDOK, OnCloseCmd)
  END_MSG_MAP()

  CErrorBox()  {};

  LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/);

  LRESULT OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/);

  void ReportError(BcamException& e);


private:
};

#endif // !defined(AFX_ERRORBOX_H__0D8F7C56_C6C9_11D5_9264_0090278E5E96__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -