// // NSNotificationCenterThreadingAdditions.h // Enable NSNotification being sent from threads // // Copied from the TCMPortMapper project; original code available on // Google Code at // // Copyright (c) 2007-2008 TheCodingMonkeys: // Martin Pittenauer, Dominik Wagner, // Some rights reserved: @interface NSNotificationCenter (NSNotificationCenterThreadingAdditions) - (void)postNotificationOnMainThread:(NSNotification *)aNotification; - (void)postNotificationOnMainThreadWithName:(NSString *)aName object:(id)anObject; @end