diff options
author | Vincent Richard <[email protected]> | 2004-12-19 22:20:28 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2004-12-19 22:20:28 +0000 |
commit | edf9bed05f629de2fc6d687c0618abdea20e50ea (patch) | |
tree | 7b7f32841f254e5bf37dfbe13c4676fb61f66b1d | |
parent | Fixed memory leaks. (diff) | |
download | vmime-edf9bed05f629de2fc6d687c0618abdea20e50ea.tar.gz vmime-edf9bed05f629de2fc6d687c0618abdea20e50ea.zip |
More details in function doc.
-rw-r--r-- | src/messaging/message.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/messaging/message.hpp b/src/messaging/message.hpp index fb6cfed1..db247328 100644 --- a/src/messaging/message.hpp +++ b/src/messaging/message.hpp @@ -124,14 +124,16 @@ public: virtual ~structure() { } - /** Return the part at the specified position. + /** Return the part at the specified position (first + * part is at position 1). * * @param x position * @return part at position 'x' */ virtual const part& operator[](const int x) const = 0; - /** Return the part at the specified position. + /** Return the part at the specified position (first + * part is at position 1). * * @param x position * @return part at position 'x' |