blob: 0015e4faa63f143b00551b6c5a3ec46a6ecd91d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
%
% Copyright (c) ZeroC, Inc. All rights reserved.
%
classdef BI < Test.B
methods
function ice_preMarshal(obj)
obj.preMarshalInvoked = true;
end
function ice_postUnmarshal(obj)
obj.postUnmarshalInvoked = true;
end
end
end
|