Moved objc-mode directory into cc-mode

This commit is contained in:
Zhang Chiyuan
2008-12-09 15:15:47 +00:00
parent f29b25bfc2
commit 6e6aa80b1c

View File

@@ -0,0 +1,13 @@
#name : foo { ... } ; setFoo { ... }
# --
- (${1:id})${2:foo}
{
return $2;
}
- (void)set${2:$(capitalize text)}:($1)aValue
{
[$2 autorelease];
$2 = [aValue retain];
}
$0