aboutsummaryrefslogtreecommitdiffstats
path: root/src/platforms/posix/posixHandler.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-04-30 08:19:56 +0000
committerVincent Richard <[email protected]>2005-04-30 08:19:56 +0000
commitae4240026e91a27fb5938811f437cc5495d27572 (patch)
tree5120bef6f8df7641278e097f7afedeba3d1eda20 /src/platforms/posix/posixHandler.cpp
parentAdded guide describing how to compile VMime using VS .NET 2003. (diff)
downloadvmime-ae4240026e91a27fb5938811f437cc5495d27572.tar.gz
vmime-ae4240026e91a27fb5938811f437cc5495d27572.zip
Added 'childProcess'.
Diffstat (limited to 'src/platforms/posix/posixHandler.cpp')
-rw-r--r--src/platforms/posix/posixHandler.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/platforms/posix/posixHandler.cpp b/src/platforms/posix/posixHandler.cpp
index c95d6f0e..cd7f35fa 100644
--- a/src/platforms/posix/posixHandler.cpp
+++ b/src/platforms/posix/posixHandler.cpp
@@ -46,6 +46,7 @@ posixHandler::posixHandler()
#endif
#if VMIME_HAVE_FILESYSTEM_FEATURES
m_fileSysFactory = new posixFileSystemFactory();
+ m_childProcFactory = new posixChildProcessFactory();
#endif
}
@@ -57,6 +58,7 @@ posixHandler::~posixHandler()
#endif
#if VMIME_HAVE_FILESYSTEM_FEATURES
delete (m_fileSysFactory);
+ delete (m_childProcFactory);
#endif
}
@@ -188,6 +190,12 @@ vmime::utility::fileSystemFactory* posixHandler::getFileSystemFactory() const
return (m_fileSysFactory);
}
+
+vmime::utility::childProcessFactory* posixHandler::getChildProcessFactory() const
+{
+ return (m_childProcFactory);
+}
+
#endif