cvsuser 03/11/02 22:51:35
Modified: include/parrot objects.h
Log:
Flush a couple of minor tweaks.
Revision Changes Path
1.7 +4 -1 parrot/include/parrot/objects.h
Index: objects.h
===================================================================
RCS file: /cvs/public/parrot/include/parrot/objects.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -w -r1.6 -r1.7
--- objects.h 15 Oct 2003 21:07:48 -0000 1.6
+++ objects.h 3 Nov 2003 06:51:34 -0000 1.7
@@ -1,7 +1,7 @@
/* objects.h
* Copyright: 2001-2003 The Perl Foundation. All Rights Reserved.
* CVS Info
- * $Id: objects.h,v 1.6 2003/10/15 21:07:48 dan Exp $
+ * $Id: objects.h,v 1.7 2003/11/03 06:51:34 mrjoltcola Exp $
* Overview:
* Parrot class and object header stuff
* Data Structure and Algorithms:
@@ -17,10 +17,13 @@
PMC *Parrot_single_subclass(Parrot_Interp, PMC *, STRING *);
PMC *Parrot_new_class(Parrot_Interp, STRING *);
+PMC *Parrot_class_lookup(Parrot_Interp, STRING *);
+void Parrot_class_register(Parrot_Interp, STRING *, PMC *);
PMC *Parrot_add_parent(Parrot_Interp, PMC *, PMC *);
PMC *Parrot_remove_parent(Parrot_Interp, PMC *, PMC *);
PMC *Parrot_multi_subclass(Parrot_Interp, PMC *, STRING *);
PMC *Parrot_instantiate_object(Parrot_Interp, PMC *);
+INTVAL Parrot_object_isa(Parrot_Interp interpreter, PMC *, PMC *);
PMC *Parrot_new_method_cache(Parrot_Interp);
PMC *Parrot_find_method_with_cache(Parrot_Interp, PMC *, STRING *);