diff options
author | Vincent Richard <[email protected]> | 2013-07-16 10:09:37 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-07-16 10:09:37 +0000 |
commit | 62828e20d483647a9d27bb42cb65943da0f75b78 (patch) | |
tree | 25872e2e9f4257e9c5de23d179b713a8818428c3 /src/net/message.cpp | |
parent | Added basic support for IMAP CONDSTORE extension. (diff) | |
download | vmime-62828e20d483647a9d27bb42cb65943da0f75b78.tar.gz vmime-62828e20d483647a9d27bb42cb65943da0f75b78.zip |
Renamed net::*{part|structure} to net::*message{Part|Structure}. Splitted code in multiple files.
Diffstat (limited to 'src/net/message.cpp')
-rw-r--r-- | src/net/message.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/message.cpp b/src/net/message.cpp index 88360064..1024bcba 100644 --- a/src/net/message.cpp +++ b/src/net/message.cpp @@ -34,19 +34,19 @@ namespace vmime { namespace net { -ref <const part> part::getPartAt(const size_t pos) const +ref <const messagePart> messagePart::getPartAt(const size_t pos) const { return getStructure()->getPartAt(pos); } -ref <part> part::getPartAt(const size_t pos) +ref <messagePart> messagePart::getPartAt(const size_t pos) { return getStructure()->getPartAt(pos); } -size_t part::getPartCount() const +size_t messagePart::getPartCount() const { return getStructure()->getPartCount(); } |