Release 5.  Copyright ©1994-1998 by TipTop Software, Inc.  All Rights Reserved.





ObjPerl_LoadClass()

SUMMARY Dynamic class loading.

DECLARED IN objective/tcl/objtcl.h

Class ObjPerl_LoadClass(const char *name)



DESCRIPTION ObjPerl_LoadClass() invokes the ObjPerl::LOADCLASS subroutine with one argumet: class name.  The default implementation will attempt to load (require) Perl module(s) $path$classname, where $path is an element in list ObjPerl::CLASSPACKAGE (by default, this list contains: Class::, ObjPerl::Class::, and ::).  Finally, LOADCLASS will attempt to load class from file $class.objpl.

Note: ObjPerl::LOADCLASS may be invoked as a result of ObjC or ObjTcl trying to access a class which is not currently loaded.

RETURN If the class is successfully loaded, the reference to the class object is returned.




ObjPerl_LibraryDirectory()

SUMMARY Returns the library directory path.

DECLARED IN objective/perl/objperl.h

SYNOPSIS const char *ObjPerl_LibraryDirectory()

DESCRIPTION ObjPerl_LibraryDirectory() returns the Perl library directory from which ObjPerl module is loaded.

SEE ALSO @INC Perl global





###