Skip to content

Commit

Permalink
Add BITCrashManagerDelegate
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Apr 24, 2013
1 parent f883915 commit 2720f1f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion HockeyApp/ApiDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,16 @@ public interface BITHockeyManager {
BITHockeyManager SharedHockeyManager { get; }

[Export("configureWithIdentifier:delegate:")]
void Configure(string identifier, [NullAllowed] NSObject del);
void Configure(string identifier, [NullAllowed] BITCrashManagerDelegate del);

[Export("startManager")]
void StartManager();
}

[BaseType (typeof (NSObject)), Model]
public interface BITCrashManagerDelegate {
[Export ("applicationLogForCrashManager:")]
string GetApplicationLog (NSObject crashManager);
}
}

0 comments on commit 2720f1f

Please sign in to comment.