openscad/src/CocoaUtils.mm

15 lines
346 B
Plaintext
Raw Permalink Normal View History

2013-02-08 00:01:31 +04:00
#include "CocoaUtils.h"
#import <Foundation/Foundation.h>
void CocoaUtils::endApplication()
{
[[NSNotificationCenter defaultCenter]
postNotificationName:@"NSApplicationWillTerminateNotification"
object:nil];
}
2013-12-04 10:15:19 +04:00
void CocoaUtils::nslog(const std::string &str, void * /* userdata */)
{
2013-12-04 10:15:19 +04:00
NSLog(@"%s", str.c_str());
}