From 7a51887dba85c643089ba2d8dc544f87b9c24cf7 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Wed, 21 Jul 2010 12:21:07 +0000 Subject: [PATCH] Added section about deleting messages from store. --- doc/book/net.tex | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/doc/book/net.tex b/doc/book/net.tex index 08b7df56..30568611 100644 --- a/doc/book/net.tex +++ b/doc/book/net.tex @@ -614,6 +614,27 @@ Suppose we have a message with the following structure: The previous example will extract the header and body of the \emph{image/jpeg} part. +\subsection{Deleting messages} % --------------------------------------------- + +The following example will delete the second and the third message from the +store. + +\begin{lstlisting}[caption={Deleting messages}] +vmime::ref folder = store->getDefaultFolder(); + +folder->deleteMessage(3); +folder->deleteMessage(2); + +// This is equivalent +std::vector nums; +nums.push_back(2); +nums.push_back(3); +folder->deleteMessages(nums); + +// This is also equivalent +folder->deleteMessages(/* from */ 2, /* to */ 3); +\end{lstlisting} + \subsection{Events} % -------------------------------------------------------- As a result of executing some operation (or from time to time, even if no