summaryrefslogtreecommitdiff
path: root/js/src/Ice/OptionalFormat.js
blob: 6e3f866ee66fcc98d39bf76ca2f98c6e67a3f9ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// **********************************************************************
//
// Copyright (c) 2003-2014 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.
//
// **********************************************************************

(function(global){
    require("Ice/EnumBase");
    
    var Ice = global.Ice || {};
    
    Ice.OptionalFormat = Slice.defineEnum(
        {'F1':0, 'F2':1, 'F4':2, 'F8':3, 'Size':4, 'VSize':5, 'FSize':6, 'Class':7});
    
    global.Ice = Ice;
}(typeof (global) === "undefined" ? window : global));