blob: 92640fdd1066f418336adbd477d3a4d31316a2c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "CocoaUtils.h"
#import <Foundation/Foundation.h>
void CocoaUtils::endApplication()
{
[[NSNotificationCenter defaultCenter]
postNotificationName:@"NSApplicationWillTerminateNotification"
object:nil];
}
void CocoaUtils::nslog(const std::string &str, void *userdata)
{
NSLog([NSString stringWithUTF8String: str.c_str()]);
}
|