27 lines
521 B
C
27 lines
521 B
C
|
/***
|
||
|
*stdexcpt.h - User include file for standard exception classes
|
||
|
*
|
||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
*
|
||
|
*Purpose:
|
||
|
* This file is the previous location of the standard exception class
|
||
|
* definitions, now found in the standard header <exception>.
|
||
|
*
|
||
|
* [Public]
|
||
|
*
|
||
|
****/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <crtdefs.h>
|
||
|
|
||
|
#ifndef _INC_STDEXCPT
|
||
|
#define _INC_STDEXCPT
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
|
||
|
#include <exception>
|
||
|
|
||
|
#endif /* __cplusplus */
|
||
|
#endif /* _INC_STDEXCPT */
|