// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef PLUGIN_I_H #define PLUGIN_I_H #include #include namespace IceDiscovery { class PluginI : public Ice::Plugin { public: PluginI(const Ice::CommunicatorPtr&); virtual void initialize(); virtual void destroy(); private: const Ice::CommunicatorPtr _communicator; Ice::ObjectAdapterPtr _multicastAdapter; Ice::ObjectAdapterPtr _replyAdapter; Ice::ObjectAdapterPtr _locatorAdapter; LookupIPtr _lookup; Ice::LocatorPrxPtr _locator; Ice::LocatorPrxPtr _defaultLocator; }; }; #endif