diff options
| author | Vincent Richard <[email protected]> | 2012-04-05 11:46:39 +0200 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2012-04-05 11:46:39 +0200 |
| commit | 92c445dd63d463aaf0ee674dcae1a192e8a50381 (patch) | |
| tree | 0e9826aa1dc354a05f6fd9aabe70f698166c8216 /src/net/maildir | |
| parent | Updated coding conventions. (diff) | |
| download | vmime-92c445dd63d463aaf0ee674dcae1a192e8a50381.tar.gz vmime-92c445dd63d463aaf0ee674dcae1a192e8a50381.zip | |
Added function to retrieve sequence numbers of messages whose UID is greater or equal than a specified UID (thanks to Zahi Mashael).
Diffstat (limited to 'src/net/maildir')
| -rw-r--r-- | src/net/maildir/maildirFolder.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/maildir/maildirFolder.cpp b/src/net/maildir/maildirFolder.cpp index dd680c9c..d11ae3b8 100644 --- a/src/net/maildir/maildirFolder.cpp +++ b/src/net/maildir/maildirFolder.cpp @@ -1363,6 +1363,12 @@ const utility::file::path maildirFolder::getMessageFSPath(const int number) cons } +std::vector <int> maildirFolder::getMessageNumbersStartingOnUID(const message::uid& /* uid */) +{ + throw exceptions::operation_not_supported(); +} + + } // maildir } // net } // vmime |
