diff options
Diffstat (limited to 'js/src/Ice/OptionalFormat.js')
-rw-r--r-- | js/src/Ice/OptionalFormat.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/js/src/Ice/OptionalFormat.js b/js/src/Ice/OptionalFormat.js new file mode 100644 index 00000000000..6e3f866ee66 --- /dev/null +++ b/js/src/Ice/OptionalFormat.js @@ -0,0 +1,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)); |