diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-04-24 21:13:00 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-04-24 21:13:00 +0000 |
commit | 5409c1ecef0f226dedc77721c0d2fc8dfe9e85de (patch) | |
tree | 97ba75bc47a143726d6d8382be3a462e51716700 /cpp/src/IceSSL/PluginBaseI.cpp | |
parent | cleaning up sample impls (diff) | |
download | ice-5409c1ecef0f226dedc77721c0d2fc8dfe9e85de.tar.bz2 ice-5409c1ecef0f226dedc77721c0d2fc8dfe9e85de.tar.xz ice-5409c1ecef0f226dedc77721c0d2fc8dfe9e85de.zip |
merging from plugins branch
Diffstat (limited to 'cpp/src/IceSSL/PluginBaseI.cpp')
-rw-r--r-- | cpp/src/IceSSL/PluginBaseI.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/PluginBaseI.cpp b/cpp/src/IceSSL/PluginBaseI.cpp new file mode 100644 index 00000000000..4a2f065112e --- /dev/null +++ b/cpp/src/IceSSL/PluginBaseI.cpp @@ -0,0 +1,36 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#include <Ice/Instance.h> +#include <IceSSL/PluginBaseI.h> + +using namespace std; +using namespace Ice; +using namespace IceInternal; +using namespace IceSSL; + +void IceInternal::incRef(PluginBaseI* p) { p->__incRef(); } +void IceInternal::decRef(PluginBaseI* p) { p->__decRef(); } + +// +// Protected Methods +// + +IceSSL::PluginBaseI::PluginBaseI(const InstancePtr& instance) : + _instance(instance), + _traceLevels(instance->traceLevels()), + _logger(instance->logger()), + _properties(instance->properties()) +{ +} + +IceSSL::PluginBaseI::~PluginBaseI() +{ +} |