diff options
Diffstat (limited to 'cpp/src/Ice/SystemInternal.cpp')
-rw-r--r-- | cpp/src/Ice/SystemInternal.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/cpp/src/Ice/SystemInternal.cpp b/cpp/src/Ice/SystemInternal.cpp new file mode 100644 index 00000000000..e0a8b14460c --- /dev/null +++ b/cpp/src/Ice/SystemInternal.cpp @@ -0,0 +1,40 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#include <Ice/Instance.h> +#include <Ice/SystemInternal.h> +#include <string> + +using namespace std; +using IceSSL::CertificateVerifierPtr; +using Ice::LoggerPtr; +using Ice::PropertiesPtr; +using IceInternal::TraceLevelsPtr; + +void ::IceInternal::incRef(::IceSSL::SystemInternal* p) { p->__incRef(); } +void ::IceInternal::decRef(::IceSSL::SystemInternal* p) { p->__decRef(); } + +// +// Protected Methods +// + +IceSSL::SystemInternal::SystemInternal(const IceInternal::InstancePtr& instance) : + _traceLevels(instance->traceLevels()), + _logger(instance->logger()), + _properties(instance->properties()) +{ + assert(_traceLevels != 0); + assert(_logger != 0); + assert(_properties != 0); +} + +IceSSL::SystemInternal::~SystemInternal() +{ +} |