11 lines
180 B
Text
11 lines
180 B
Text
|
#pragma once
|
||
|
|
||
|
namespace std {
|
||
|
class exception;
|
||
|
class bad_exception;
|
||
|
class nested_exception;
|
||
|
|
||
|
typedef void (*unexpected_handler)();
|
||
|
typedef void (*terminate_handler)();
|
||
|
}
|