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

classdef CI < Test.C
    methods
        function ice_preMarshal(obj)
            obj.preMarshalInvoked = true;
        end

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