Ice 3.7 C++11 API Reference
Loading...
Searching...
No Matches
Format.h
Go to the documentation of this file.
1//
2// Copyright (c) ZeroC, Inc. All rights reserved.
3//
4
5#ifndef ICE_FORMAT_H
6#define ICE_FORMAT_H
7
8#include <Ice/Config.h>
9
10namespace Ice
11{
12
16#ifdef ICE_CPP11_MAPPING
17enum class FormatType : unsigned char
18#else
19enum FormatType
20#endif
21{
34};
35
36}
37
38#endif
Definition BuiltinSequences.h:56
FormatType
Describes the possible formats for classes and exceptions.
Definition Format.h:21
@ DefaultFormat
Indicates that no preference was specified.
Definition Format.h:25
@ CompactFormat
A minimal format that eliminates the possibility for slicing unrecognized types.
Definition Format.h:29
@ SlicedFormat
Allow slicing and preserve slices for unknown types.
Definition Format.h:33