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

📄 bvcexception.h

📁 BCAM 1394 Driver
💻 H
字号:
//-----------------------------------------------------------------------------
//  (c) 2002 by Basler Vision Technologies
//  Section:  Vision Components
//  Project:  BVC
//  $Header: BvcException.h, 4, 25.09.2003 12:55:50, Nebelung, H.$
//-----------------------------------------------------------------------------
/**
  \file     BvcException.h
 *
  \brief   <type brief description here>
 *
 * <type long description here>
 */
//-----------------------------------------------------------------------------


#if !defined(AFX_BVCEXCEPTION_H__1AFF92A3_4C70_4645_AA91_B114721AB77F__INCLUDED_)
#define AFX_BVCEXCEPTION_H__1AFF92A3_4C70_4645_AA91_B114721AB77F__INCLUDED_

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

#if defined( USE_MFC )
#include <afxwin.h>         // MFC core and standard components
#else
#include <windows.h>
#endif

#if defined( USE_WTL)  && _MSC_VER < 1300 
#include <atlapp.h>
#include <atlmisc.h>        // WTL's CSize, CString, ...
#endif  

#if defined( USE_MFC ) && _MSC_VER >= 1300 
#include <afxstr.h>  // MFC7 CString
#endif

#if ! defined( USE_MFC ) && _MSC_VER >= 1300
#include <atlstr.h>  // ATL CString
#endif

#include "Exception.h"
namespace Bvc
{
  class BvcException : public Exception  
  {
  public:
    BvcException( Bvc::ErrorNumber e, CString context = _T( "" ), va_list *pArgs = NULL );
    BvcException( Bvc::ErrorNumber e, CString context , PVOID pArg  );
  private:
    static const CString m_LibraryFile;
   
  };
}
#endif // !defined(AFX_BVCEXCEPTION_H__1AFF92A3_4C70_4645_AA91_B114721AB77F__INCLUDED_)

⌨️ 快捷键说明

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