summaryrefslogtreecommitdiff
path: root/matlab/lib/+IceInternal/CellArrayHandle.m
blob: ddc5d7c5524cdc291a1fe6b38605cf63bc48d54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%
% Copyright (c) ZeroC, Inc. All rights reserved.
%

classdef CellArrayHandle < handle
    properties
        array
    end
    methods
        function set(obj, i, v)
            obj.array{i} = v;
        end
    end
end