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