#ifndef __APPLE__ #error This file is for Mac OS X only. #endif #ifndef __OBJC__ #error This is Objective-C code. Please compile it as such. #endif #include #include void cocoaMessageBox(const std::string &title, const std::string &msg) { @autoreleasepool { NSString *nstitle = [NSString stringWithUTF8String:title.c_str()]; NSString *nsmsg = [NSString stringWithUTF8String:msg.c_str()]; NSRunAlertPanel(nstitle, nsmsg, nil, nil, nil); } }