blob: 0104a77efc83de3253334b6340aa13b89c1d6a35 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
/// This enumeration describes the possible formats for classes and exceptions.
public enum FormatType: UInt8 {
case DefaultFormat = 0
case CompactFormat = 1
case SlicedFormat = 2
}
|