summaryrefslogtreecommitdiff
path: root/MLKSymbol.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-24 18:39:53 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-24 18:39:53 +0200
commite074f91e6aa1a895000673b1ac4df6266ba47094 (patch)
tree5e474dbe6d043084bbd443316e38c9a5775e69c1 /MLKSymbol.m
parent6684d33bab073d267198ef7159cb627c2ecddc0a (diff)
Reimplement the package system.
Diffstat (limited to 'MLKSymbol.m')
-rw-r--r--MLKSymbol.m5
1 files changed, 5 insertions, 0 deletions
diff --git a/MLKSymbol.m b/MLKSymbol.m
index 8b385eb..48892f8 100644
--- a/MLKSymbol.m
+++ b/MLKSymbol.m
@@ -32,6 +32,11 @@
return self;
}
++(MLKSymbol *) symbolWithName:(id)aName package:(id)aPackage
+{
+ return AUTORELEASE ([[self alloc] initWithName:aName package:aPackage]);
+}
+
-(id) copyWithZone:(NSZone *)zone
{
MLKSymbol *copy = [MLKSymbol allocWithZone:zone];