11 lines
343 B
Plaintext
11 lines
343 B
Plaintext
#include <cstdio>
|
|
|
|
#import <Fondation/Fondation.h>
|
|
|
|
void cxx_method(const std::string &myText)
|
|
<beginfold id='1'>{</beginfold id='1'>
|
|
NSString *string = [NSString stringWithCString:myText.c_str()
|
|
encoding:[NSString defaultCStringEncoding]];
|
|
NSLog(@"String:%@",string);
|
|
<endfold id='1'>}</endfold id='1'>
|