Changeset 1175 for trunk/pysoy/src/_internals
- Timestamp:
- 03/19/08 00:58:42 (10 months ago)
- Location:
- trunk/pysoy/src/_internals
- Files:
-
- 2 modified
-
Loadable.pxi (modified) (2 diffs)
-
soy._internals.pxd (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pysoy/src/_internals/Loadable.pxi
r914 r1175 21 21 22 22 cdef class Loadable : 23 ''' PySoyLoadable23 '''soy._internals.Loadable 24 24 25 25 This should be inherited by any PySoy class which can be loaded or saved. … … 28 28 self._source = source 29 29 30 cdef int _ coreLoad(self, void *_data, int _size) :30 cdef int _load(self, void* _data, int _size) : 31 31 return 0 32 32 33 cdef int _save(self, void *_data, int _size) :33 cdef int _save(self, void* _data, int _size) : 34 34 return 0 35 35 -
trunk/pysoy/src/_internals/soy._internals.pxd
r1170 r1175 55 55 cdef object _source 56 56 cdef int _state 57 cdef int _ coreLoad( self, void*, int )57 cdef int _load ( self, void*, int ) 58 58 cdef int _save ( self, void*, int ) 59 59 cdef int _ready ( self )
