diff options
Diffstat (limited to 'cpp/test/Ice/background/PluginI.cpp')
-rw-r--r-- | cpp/test/Ice/background/PluginI.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/Ice/background/PluginI.cpp b/cpp/test/Ice/background/PluginI.cpp index 5b4cffd557c..6e41947132e 100644 --- a/cpp/test/Ice/background/PluginI.cpp +++ b/cpp/test/Ice/background/PluginI.cpp @@ -25,10 +25,10 @@ class TestPluginI : public PluginI public: TestPluginI(const Ice::CommunicatorPtr&); - + virtual void initialize(); virtual void destroy(); - + virtual ConfigurationPtr getConfiguration(); private: @@ -52,12 +52,12 @@ createTestTransport(const Ice::CommunicatorPtr& communicator, const string&, con } -TestPluginI::TestPluginI(const Ice::CommunicatorPtr& communicator) : +TestPluginI::TestPluginI(const Ice::CommunicatorPtr& communicator) : _communicator(communicator), _configuration(new Configuration()) { } - + void TestPluginI::initialize() { |