Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Identity.ice
Go to the documentation of this file.
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
9 
10 #pragma once
11 
12 [["cpp:header-ext:h", "objc:header-dir:objc", "js:ice-build"]]
13 
14 ["objc:prefix:ICE"]
15 module Ice
16 {
17 
28 struct Identity
29 {
35  string name;
36 
42  string category;
43 };
44 
50 local dictionary<Identity, Object> ObjectDict;
51 
57 sequence<Identity> IdentitySeq;
58 
59 };
60 
The Ice core library.
Definition: BuiltinSequences.ice:15
The identity of an Ice object.
Definition: Identity.ice:28
string name
The name of the Ice object.
Definition: Identity.ice:35
local dictionary< Identity, Object > ObjectDict
A mapping between identities and Ice objects.
Definition: Identity.ice:50
string category
The Ice object category.
Definition: Identity.ice:42
sequence< Identity > IdentitySeq
A sequence of identities.
Definition: Identity.ice:57