mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-29 19:41:00 +00:00
11 lines
216 B
C
11 lines
216 B
C
|
|
||
|
struct _Unwind_Exception;
|
||
|
@interface CXXException : NSObject
|
||
|
{
|
||
|
struct _Unwind_Exception *ex;
|
||
|
}
|
||
|
+ (id)exceptionWithForeignException: (struct _Unwind_Exception*)ex;
|
||
|
- (void*)thrownValue;
|
||
|
- (void*)cxx_type_info;
|
||
|
@end
|