| 1 | /*** | |
| 2 | *stdexcpt.h - User include file for standard exception classes | |
| 3 | * | |
| 4 | * Copyright (c) Microsoft Corporation. All rights reserved. | |
| 5 | * | |
| 6 | *Purpose: | |
| 7 | * This file is the previous location of the standard exception class | |
| 8 | * definitions, now found in the standard header <exception>. | |
| 9 | * | |
| 10 | * [Public] | |
| 11 | * | |
| 12 | ****/ | |
| 13 | ||
| 14 | #if _MSC_VER > 1000 | |
| 15 | #pragma once | |
| 16 | #endif | |
| 17 | ||
| 18 | #include <crtdefs.h> | |
| 19 | ||
| 20 | #ifndef _INC_STDEXCPT | |
| 21 | #define _INC_STDEXCPT | |
| 22 | ||
| 23 | #ifdef __cplusplus | |
| 24 |
| Lines 25 ... 28 are skipped. |
| 29 | ||