blob: efebf80a1d8583132bfd0165f4e121687cc66d65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// **********************************************************************
//
// Copyright (c) 2001
// ZeroC, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
package Ice;
public final class IntHolder
{
public int value;
}
|