Skip to content

Instantly share code, notes, and snippets.

@hisui
Created May 31, 2012 12:04
Show Gist options
  • Save hisui/2842976 to your computer and use it in GitHub Desktop.
Save hisui/2842976 to your computer and use it in GitHub Desktop.
ないわ
#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