blob: 9856b3d720600cfb3c39ce4868cb6df52dff7acb (
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(@"%s", str.c_str());
}
|