aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog24
1 files changed, 24 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4001d9e8..ff8b00e9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,30 @@
VERSION 0.6.0-cvs
=================
+2004-12-17 Vincent Richard <[email protected]>
+
+ * Made default platform handlers (currently, only "posix"). Source files
+ are in src/platforms/[platform-name].
+
+ To use a default platform handler, do the following:
+ - #include <vmime/platforms/[platform-name]/handler.hpp>
+ - call vmime::platformDependant::setHandler() with the appropriate class
+ - link your program with both 'libvmime' and 'libvmime-[platform-name]'
+
+ For example, to use the default platform handler for POSIX (GNU/Linux):
+
+ #include <vmime/platforms/posix/handler.hpp>
+
+ int main()
+ {
+ vmime::platformDependant::setHandler
+ <vmime::platforms::posix::posixHandler>();
+
+ // ...
+ }
+
+ and link your program with "-lvmime" and "-lvmime-posix".
+
2004-10-21 Vincent Richard <[email protected]>
* A _LOT_ of cleaning/refactoring in VMime code: