diff options
| author | Vincent Richard <[email protected]> | 2005-07-12 22:28:02 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2005-07-12 22:28:02 +0000 |
| commit | 681297e10b666e13cc463f6fbb16236f36c3266c (patch) | |
| tree | 5d2392e2283232ed3475cd9c69e22897b03e8a97 /src/messaging/sendmail/sendmailTransport.cpp | |
| parent | Added contentHandler::extractRaw(). (diff) | |
| download | vmime-681297e10b666e13cc463f6fbb16236f36c3266c.tar.gz vmime-681297e10b666e13cc463f6fbb16236f36c3266c.zip | |
Reference counting and smart pointers.
Diffstat (limited to 'src/messaging/sendmail/sendmailTransport.cpp')
| -rw-r--r-- | src/messaging/sendmail/sendmailTransport.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/messaging/sendmail/sendmailTransport.cpp b/src/messaging/sendmail/sendmailTransport.cpp index 969cb7ae..e9b8256b 100644 --- a/src/messaging/sendmail/sendmailTransport.cpp +++ b/src/messaging/sendmail/sendmailTransport.cpp @@ -46,7 +46,7 @@ namespace messaging { namespace sendmail { -sendmailTransport::sendmailTransport(session* sess, authenticator* auth) +sendmailTransport::sendmailTransport(ref <session> sess, ref <authenticator> auth) : transport(sess, getInfosInstance(), auth), m_connected(false) { } @@ -145,7 +145,7 @@ void sendmailTransport::internalSend const utility::file::path path = vmime::platformDependant::getHandler()-> getFileSystemFactory()->stringToPath(m_sendmailPath); - utility::auto_ptr <utility::childProcess> proc = + ref <utility::childProcess> proc = vmime::platformDependant::getHandler()-> getChildProcessFactory()->create(path); |
