summaryrefslogtreecommitdiffstats
path: root/emacs.d/snippets/text-mode/cc-mode/objc-mode/prop
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs.d/snippets/text-mode/cc-mode/objc-mode/prop13
1 files changed, 13 insertions, 0 deletions
diff --git a/emacs.d/snippets/text-mode/cc-mode/objc-mode/prop b/emacs.d/snippets/text-mode/cc-mode/objc-mode/prop
new file mode 100644
index 0000000..4d585db
--- /dev/null
+++ b/emacs.d/snippets/text-mode/cc-mode/objc-mode/prop
@@ -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 \ No newline at end of file