Show
Ignore:
Timestamp:
03/19/08 00:58:42 (10 months ago)
Author:
ArcRiley
Message:

No Ticket :

  • cleanup and comments in textures, transports, and _internals/Loadable
  • signifigant cleanup and renaming in TransportLoop
Location:
trunk/pysoy/src/_internals
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/pysoy/src/_internals/Loadable.pxi

    r914 r1175  
    2121 
    2222cdef class Loadable : 
    23   '''PySoy Loadable 
     23  '''soy._internals.Loadable 
    2424 
    2525    This should be inherited by any PySoy class which can be loaded or saved. 
     
    2828    self._source = source 
    2929 
    30   cdef int _coreLoad(self, void *_data, int _size) : 
     30  cdef int _load(self, void* _data, int _size) : 
    3131    return 0 
    3232 
    33   cdef int _save(self, void *_data, int _size) : 
     33  cdef int _save(self, void* _data, int _size) : 
    3434    return 0 
    3535 
  • trunk/pysoy/src/_internals/soy._internals.pxd

    r1170 r1175  
    5555  cdef object            _source 
    5656  cdef int               _state 
    57   cdef int               _coreLoad     ( self, void*, int ) 
     57  cdef int               _load         ( self, void*, int ) 
    5858  cdef int               _save         ( self, void*, int ) 
    5959  cdef int               _ready        ( self )