Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Plugin.ice
Go to the documentation of this file.
1 
2 // **********************************************************************
3 //
4 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
5 //
6 // This copy of Ice is licensed to you under the terms described in the
7 // ICE_LICENSE file included in this distribution.
8 //
9 // **********************************************************************
10 
11 #pragma once
12 
13 [["cpp:header-ext:h", "objc:header-dir:objc"]]
14 
15 #include <Ice/LoggerF.ice>
16 #include <Ice/BuiltinSequences.ice>
17 
18 ["objc:prefix:ICE"]
19 module Ice
20 {
21 
32 local interface Plugin
33 {
39  void initialize();
40 
46  void destroy();
47 };
48 
55 local interface PluginManager
56 {
70  void initializePlugins();
71 
81  StringSeq getPlugins();
82 
94  Plugin getPlugin(string name);
95 
107  void addPlugin(string name, Plugin pi);
108 
114  void destroy();
115 };
116 
117 };
118 
The Ice core library.
Definition: BuiltinSequences.ice:15
A communicator plug-in.
Definition: Plugin.ice:32
sequence< string > StringSeq
A sequence of strings.
Definition: BuiltinSequences.ice:40
Each communicator has a plug-in manager to administer the set of plug-ins.
Definition: Plugin.ice:55