- indexing
- title: "Data marshalling mechanism"
- project: "Visual Eiffel Library"
- revision: "$Revision: 1.1 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: pool
class RTS_MARSHALER
- inherit
-
RTS_MEMORY
- end
-
MEMORY
-
- rename
-
dispose
as release
-
- undefine
- is_equal
-
- redefine
- release
- end
- creation
- make
- feature -- Creation
-
make (object: ANY)
-
- require
-
non_void_object:
object /= void
-
- ensure
-
is_initialized:
is_initialized
- feature -- Operations
-
release
-
- ensure
-
is_empty:
empty
-
not_initialized:
not is_initialized
- feature -- Implemenation data
-
area: POINTER
-
size: INTEGER
end -- class RTS_MARSHALER