diff options
author | Vincent Richard <[email protected]> | 2013-11-21 21:16:57 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-11-21 21:16:57 +0000 |
commit | f9913fa28a27f23fde2d4956c62cbb2fb2bc2ee8 (patch) | |
tree | 2bdc90e361a8f6e0a81164cf67afec9f78f9b959 /src/platforms/posix/posixHandler.cpp | |
parent | Per-protocol include files. (diff) | |
download | vmime-f9913fa28a27f23fde2d4956c62cbb2fb2bc2ee8.tar.gz vmime-f9913fa28a27f23fde2d4956c62cbb2fb2bc2ee8.zip |
Boost/C++11 shared pointers.
Diffstat (limited to 'src/platforms/posix/posixHandler.cpp')
-rw-r--r-- | src/platforms/posix/posixHandler.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/platforms/posix/posixHandler.cpp b/src/platforms/posix/posixHandler.cpp index 73005d7e..b5d08ce6 100644 --- a/src/platforms/posix/posixHandler.cpp +++ b/src/platforms/posix/posixHandler.cpp @@ -109,11 +109,11 @@ namespace posix { posixHandler::posixHandler() { #if VMIME_HAVE_MESSAGING_FEATURES - m_socketFactory = vmime::create <posixSocketFactory>(); + m_socketFactory = make_shared <posixSocketFactory>(); #endif #if VMIME_HAVE_FILESYSTEM_FEATURES - m_fileSysFactory = vmime::create <posixFileSystemFactory>(); - m_childProcFactory = vmime::create <posixChildProcessFactory>(); + m_fileSysFactory = make_shared <posixFileSystemFactory>(); + m_childProcFactory = make_shared <posixChildProcessFactory>(); #endif } @@ -249,7 +249,7 @@ unsigned int posixHandler::getThreadId() const #if VMIME_HAVE_MESSAGING_FEATURES -ref <vmime::net::socketFactory> posixHandler::getSocketFactory() +shared_ptr <vmime::net::socketFactory> posixHandler::getSocketFactory() { return m_socketFactory; } @@ -259,13 +259,13 @@ ref <vmime::net::socketFactory> posixHandler::getSocketFactory() #if VMIME_HAVE_FILESYSTEM_FEATURES -ref <vmime::utility::fileSystemFactory> posixHandler::getFileSystemFactory() +shared_ptr <vmime::utility::fileSystemFactory> posixHandler::getFileSystemFactory() { return m_fileSysFactory; } -ref <vmime::utility::childProcessFactory> posixHandler::getChildProcessFactory() +shared_ptr <vmime::utility::childProcessFactory> posixHandler::getChildProcessFactory() { return m_childProcFactory; } @@ -308,9 +308,9 @@ void posixHandler::generateRandomBytes(unsigned char* buffer, const unsigned int } -ref <utility::sync::criticalSection> posixHandler::createCriticalSection() +shared_ptr <utility::sync::criticalSection> posixHandler::createCriticalSection() { - return vmime::create <posixCriticalSection>(); + return make_shared <posixCriticalSection>(); } |