ObjectivePerl::Object - Root class for ObjectivePerl objects


ObjectivePerl documentation  | view source Contained in the ObjectivePerl distribution.

Index


NAME

Top

ObjectivePerl::Object - Root class for ObjectivePerl objects

SYNOPSIS

Top

	use ObjectivePerl;
	@implementation MyClass

	+ new {
		~[$super new];
	}
	@end

In this example, MyClass is a subclass of ObjectivePerl::Object, even without being declared as such; all classes declared in this way descend from ObjectivePerl::Object.

DESCRIPTION

Top

This is the root class to all classes declared using the ObjectivePerl @implementation/@end syntax. It needs to be there so that all classes declared in this way have some super-class and can invoke $super from methods.

USES

Generally you don't instantiate or subclass this directly.

BUGS

Top

None known.

SEE ALSO

Top

   ObjectivePerl

AUTHOR

Top

kyle dawkins, <kyle@centralparksoftware.com>

COPYRIGHT AND LICENSE

Top


ObjectivePerl documentation  | view source Contained in the ObjectivePerl distribution.