Created
May 31, 2012 12:04
-
-
Save hisui/2842976 to your computer and use it in GitHub Desktop.
ないわ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define DEF_CLASS(NAME, SUPERCLASS) \ | |
NAME : SUPERCLASS \ | |
@end \ | |
@implementation NAME | |
@interface DEF_CLASS(MyInternalClass, NSObject) | |
{ | |
int m_hoge; | |
} | |
- (void)run | |
{ | |
NSLog(@"<(^_^;):hoge=%d", m_hoge); | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment