The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

ObjectivePerl::Object - Root class for ObjectivePerl objects

SYNOPSIS

        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

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

None known.

SEE ALSO

   ObjectivePerl

AUTHOR

kyle dawkins, <kyle@centralparksoftware.com>

COPYRIGHT AND LICENSE

Copyright 2004 by kyle dawkins

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.