diff options
author | Jose <jose@zeroc.com> | 2016-01-15 10:38:29 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-01-15 10:38:29 +0100 |
commit | 21dbae16917e278c67316ed4a054bc78860abda3 (patch) | |
tree | 34cf05e3856557c314522a88ac24e66b388a0510 /cpp/src/Ice/PluginManagerI.h | |
parent | Remove deprecated string converter plug-in (diff) | |
download | ice-21dbae16917e278c67316ed4a054bc78860abda3.tar.bz2 ice-21dbae16917e278c67316ed4a054bc78860abda3.tar.xz ice-21dbae16917e278c67316ed4a054bc78860abda3.zip |
Rename PLUGIN_FACTORY typedef
Diffstat (limited to 'cpp/src/Ice/PluginManagerI.h')
-rw-r--r-- | cpp/src/Ice/PluginManagerI.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/PluginManagerI.h b/cpp/src/Ice/PluginManagerI.h index 97aa03990a6..27720b289cf 100644 --- a/cpp/src/Ice/PluginManagerI.h +++ b/cpp/src/Ice/PluginManagerI.h @@ -21,13 +21,13 @@ namespace Ice { -typedef Ice::Plugin* (*PLUGIN_FACTORY)(const ::Ice::CommunicatorPtr&, const std::string&, const ::Ice::StringSeq&); +typedef Ice::Plugin* (*PluginFactory)(const ::Ice::CommunicatorPtr&, const std::string&, const ::Ice::StringSeq&); class PluginManagerI : public PluginManager, public IceUtil::Mutex { public: - static void registerPluginFactory(const std::string&, PLUGIN_FACTORY, bool); + static void registerPluginFactory(const std::string&, PluginFactory, bool); virtual void initializePlugins(); virtual StringSeq getPlugins(); |