bvcexception.h

来自「BCAM 1394 Driver」· C头文件 代码 · 共 57 行

H
57
字号
//-----------------------------------------------------------------------------
//  (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 + =
减小字号Ctrl + -
显示快捷键?