00001 // 00002 // BaseClass.m 00003 // MacTrek 00004 // 00005 // Created by Aqua on 27/05/2006. 00006 // Copyright 2006 __MyCompanyName__. All rights reserved. 00007 // 00008 00009 #import "BaseClass.h" 00010 00011 00012 @implementation BaseClass 00013 00014 - (id) init { 00015 self = [super init]; 00016 if (self != nil) { 00017 notificationCenter = [LLNotificationCenter defaultCenter]; 00018 } 00019 return self; 00020 } 00021 00022 @end