summaryrefslogtreecommitdiff
path: root/matlab/test/Ice/objects/DI.m
blob: 332d2ed737844217650900a535402a78b2491c83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%
% Copyright (c) ZeroC, Inc. All rights reserved.
%

classdef DI < Test.D
    methods
        function ice_preMarshal(obj)
            obj.preMarshalInvoked = true;
        end

        function ice_postUnmarshal(obj)
            obj.postUnmarshalInvoked = true;
        end
    end
end