diff options
Diffstat (limited to '')
-rw-r--r-- | src/platforms/posix/posixHandler.cpp | 8 |
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 |