aboutsummaryrefslogtreecommitdiffstats
path: root/vmime/platforms/posix/posixHandler.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vmime/platforms/posix/posixHandler.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/vmime/platforms/posix/posixHandler.hpp b/vmime/platforms/posix/posixHandler.hpp
index 397a5dd9..8e572a21 100644
--- a/vmime/platforms/posix/posixHandler.hpp
+++ b/vmime/platforms/posix/posixHandler.hpp
@@ -61,13 +61,13 @@ public:
unsigned int getProcessId() const;
#if VMIME_HAVE_MESSAGING_FEATURES
- ref <vmime::net::socketFactory> getSocketFactory() const;
+ ref <vmime::net::socketFactory> getSocketFactory();
#endif
#if VMIME_HAVE_FILESYSTEM_FEATURES
- vmime::utility::fileSystemFactory* getFileSystemFactory() const;
+ ref <vmime::utility::fileSystemFactory> getFileSystemFactory();
- vmime::utility::childProcessFactory* getChildProcessFactory() const;
+ ref <vmime::utility::childProcessFactory> getChildProcessFactory();
#endif
void wait() const;
@@ -79,8 +79,8 @@ private:
#endif
#if VMIME_HAVE_FILESYSTEM_FEATURES
- posixFileSystemFactory* m_fileSysFactory;
- posixChildProcessFactory* m_childProcFactory;
+ ref <posixFileSystemFactory> m_fileSysFactory;
+ ref <posixChildProcessFactory> m_childProcFactory;
#endif
};