// ********************************************************************** // // Copyright (c) 2003-2010 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. // // ********************************************************************** // Ice version 3.4.1 package Ice; // <auto-generated> // // Generated from file `BuiltinSequences.ice' // // Warning: do not edit this file. // // </auto-generated> public final class ByteSeqHelper { public static void write(IceInternal.BasicStream __os, byte[] __v) { __os.writeByteSeq(__v); } public static byte[] read(IceInternal.BasicStream __is) { byte[] __v; __v = __is.readByteSeq(); return __v; } public static void write(Ice.OutputStream __outS, byte[] __v) { __outS.writeByteSeq(__v); } public static byte[] read(Ice.InputStream __inS) { byte[] __v; __v = __inS.readByteSeq(); return __v; } }