Logo
ManagedCrash.h
1#pragma once
2
3#define MANAGEDTRY try
4#define MANAGEDCATCH catch(Exception^ e){XXSharpKmyBase::ManagedCrash::report(e);}
5
6namespace XXSharpKmyBase
7{
8 public ref class ManagedCrash
9 {
10 public:
11 static void report(System::Exception^ e);
12 static void setVersion(System::String^ version);
13 };
14}