Generic/BaseClass.m

00001 //
00002 //  BaseClass.m
00003 //  MacTrek
00004 //
00005 //  Created by Aqua on 27/05/2006.
00006 //  Copyright 2006 Luky Soft. 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         universe = [Universe defaultInstance];
00019     }
00020     return self;
00021 }
00022 
00023 @end

Generated on Sat Aug 26 21:14:14 2006 for MacTrek by  doxygen 1.4.7