diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2008-04-29 14:12:15 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2008-04-29 14:12:15 -0230 |
commit | 2532cae1fa4d5893e90e938da376671c6e530b93 (patch) | |
tree | 079fcc63d3094ae272105bb9c94126b6d1ac30d8 /cpp/src/Ice/PluginManagerI.h | |
parent | Bug 2433 - new logger plugin mechanism (diff) | |
download | ice-2532cae1fa4d5893e90e938da376671c6e530b93.tar.bz2 ice-2532cae1fa4d5893e90e938da376671c6e530b93.tar.xz ice-2532cae1fa4d5893e90e938da376671c6e530b93.zip |
Bug 2433 - changed logger plugin mechanism
Diffstat (limited to 'cpp/src/Ice/PluginManagerI.h')
-rw-r--r-- | cpp/src/Ice/PluginManagerI.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cpp/src/Ice/PluginManagerI.h b/cpp/src/Ice/PluginManagerI.h index fb4f6a528e5..ec715e6770d 100644 --- a/cpp/src/Ice/PluginManagerI.h +++ b/cpp/src/Ice/PluginManagerI.h @@ -13,7 +13,6 @@ #include <Ice/Plugin.h> #include <Ice/InstanceF.h> #include <Ice/CommunicatorF.h> -#include <Ice/LoggerF.h> #include <Ice/DynamicLibraryF.h> #include <Ice/BuiltinSequences.h> #include <IceUtil/Mutex.h> @@ -37,8 +36,7 @@ private: friend class IceInternal::Instance; void loadPlugins(int&, char*[]); - void loadPlugin(const std::string&, const std::string&, StringSeq&, bool = false); - LoggerPtr getLogger() const; + void loadPlugin(const std::string&, const std::string&, StringSeq&); CommunicatorPtr _communicator; IceInternal::DynamicLibraryListPtr _libraries; @@ -47,8 +45,6 @@ private: std::vector<PluginPtr> _initOrder; bool _initialized; static const char * const _kindOfObject; - - LoggerPtr _logger; }; } |