summaryrefslogtreecommitdiff
path: root/csharp/src/Ice/FormatType.cs
blob: 4896bb156a863149b04dfa36895b9efe68a1f5f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

namespace Ice
{
    /// <summary>
    /// This enumeration describes the possible formats for classes and exceptions.
    /// </summary>
    public enum FormatType
    {
        DefaultFormat,
        CompactFormat,
        SlicedFormat
    }
}