cvsuser     03/10/12 23:14:08

  Modified:    .        MANIFEST
  Added:       classes  parrotlibrary.pmc
  Log:
  forgot add parrotlibrary.pmc - sorry
  
  Revision  Changes    Path
  1.466     +1 -0      parrot/MANIFEST
  
  Index: MANIFEST
  ===================================================================
  RCS file: /cvs/public/parrot/MANIFEST,v
  retrieving revision 1.465
  retrieving revision 1.466
  diff -u -w -r1.465 -r1.466
  --- MANIFEST  12 Oct 2003 05:12:38 -0000      1.465
  +++ MANIFEST  13 Oct 2003 06:14:05 -0000      1.466
  @@ -49,6 +49,7 @@
   classes/parrotclass.pmc                           []
   classes/parrotinterpreter.pmc                     []
   classes/parrotio.pmc                              []
  +classes/parrotlibrary.pmc                         []
   classes/parrotobject.pmc                          []
   classes/perlarray.pmc                             []
   classes/perlhash.pmc                              []
  
  
  
  1.1                  parrot/classes/parrotlibrary.pmc
  
  Index: parrotlibrary.pmc
  ===================================================================
  /* parrotlibrary.pmc
   *  Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
   *  CVS Info
   *     $Id: parrotlibrary.pmc,v 1.1 2003/10/13 06:14:07 leo Exp $
   *  Overview:
   *     Class for holding info about dynamic libraries.
   *  Data Structure and Algorithms:
   *     PMC_data(SELF)  ... DLL handle
   *  History:
   *     Initial version by leo 2003.10.12
   *  Notes:
   *     When a dynamic library (pmc or ops) is loaded, the
   *     load function returns a Library PMC.
   *  References:
   *     Date:    Mon, 29 Sep 2003 14:37:11 -0400 (EDT)
   *     Subject: Library loading and initialization sequence
   *     From:    Dan Sugalski
   */
  
  #include "parrot/parrot.h"
  
  pmclass ParrotLibrary need_ext does library const_too {
  
      void init() {
         SELF->cache.struct_val = NULL;
      }
  
      void morph(INTVAL type) {
        SUPER(type);
      }
  }
  
  
  

Reply via email to