diff options
Diffstat (limited to 'matlab/lib/+IceInternal/EncapsDecoder11_InstanceData.m')
-rw-r--r-- | matlab/lib/+IceInternal/EncapsDecoder11_InstanceData.m | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/matlab/lib/+IceInternal/EncapsDecoder11_InstanceData.m b/matlab/lib/+IceInternal/EncapsDecoder11_InstanceData.m new file mode 100644 index 00000000000..3ff3ab908f6 --- /dev/null +++ b/matlab/lib/+IceInternal/EncapsDecoder11_InstanceData.m @@ -0,0 +1,38 @@ +%{ +********************************************************************** + +Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved. + +This copy of Ice is licensed to you under the terms described in the +ICE_LICENSE file included in this distribution. + +********************************************************************** +%} + +classdef EncapsDecoder11_InstanceData < handle + methods + function obj = EncapsDecoder11_InstanceData(p) + if ~isempty(p) + obj.previous = p; + p.next = obj; + end + obj.slices = {}; + obj.indirectionTables = {}; + obj.sliceFlags = uint8(0); + obj.indirectPatchList = []; + end + end + properties + sliceType + skipFirstSlice + slices + indirectionTables + sliceFlags + sliceSize + typeId + compactId + indirectPatchList + previous + next + end +end |