diff options
Diffstat (limited to 'src/bodyPart.hpp')
-rw-r--r-- | src/bodyPart.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/bodyPart.hpp b/src/bodyPart.hpp index e8127a0c..bf52b248 100644 --- a/src/bodyPart.hpp +++ b/src/bodyPart.hpp @@ -43,12 +43,34 @@ public: bodyPart(); + /** Return the header section of this part. + * + * @return header section + */ const header* getHeader() const; + + /** Return the header section of this part. + * + * @return header section + */ header* getHeader(); + /** Return the body section of this part. + * + * @return body section + */ const body* getBody() const; + + /** Return the body section of this part. + * + * @return body section + */ body* getBody(); + /** Return the parent part of this part. + * + * @return parent part or NULL if not known + */ bodyPart* getParentPart() const; bodyPart* clone() const; |