diff options
| author | Vincent Richard <[email protected]> | 2004-12-18 02:57:39 +0100 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2004-12-18 02:57:39 +0100 |
| commit | 460cae786af2c4c8ff205f7feb45b50c43a6700b (patch) | |
| tree | adc4c2f466ae5dd625f57a13df3247dd565fbb3a /ChangeLog | |
| parent | Added appendComponent() and getComponentAt() functions. (diff) | |
| download | vmime-460cae786af2c4c8ff205f7feb45b50c43a6700b.tar.gz vmime-460cae786af2c4c8ff205f7feb45b50c43a6700b.zip | |
Default platform handlers (currently only POSIX).
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -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: |
