Don't return references.

This commit is contained in:
Vincent Richard 2005-10-13 18:50:00 +00:00
parent 004bb1ac96
commit 3f7ce9bcd1
3 changed files with 25 additions and 15 deletions

View File

@ -97,19 +97,19 @@ void defaultAttachment::generatePart(bodyPart& part) const
}
const mediaType& defaultAttachment::getType() const
const mediaType defaultAttachment::getType() const
{
return (m_type);
}
const text& defaultAttachment::getDescription() const
const text defaultAttachment::getDescription() const
{
return (m_desc);
}
const word& defaultAttachment::getName() const
const word defaultAttachment::getName() const
{
return (m_name);
}
@ -121,7 +121,7 @@ const ref <const contentHandler> defaultAttachment::getData() const
}
const encoding& defaultAttachment::getEncoding() const
const encoding defaultAttachment::getEncoding() const
{
return (m_encoding);
}

View File

@ -55,31 +55,41 @@ public:
virtual ~attachment() { }
/** Return the media type of this attachment.
*
* @return content type of the attachment
*/
virtual const mediaType& getType() const = 0;
virtual const mediaType getType() const = 0;
/** Return the description of this attachment.
* @return attachment description
*
* @return attachment description, or an empty text
* if no description is available
*/
virtual const text& getDescription() const = 0;
virtual const text getDescription() const = 0;
/** Return the name of this attachment.
* @return attachment name
/** Return the (file) name of this attachment.
*
* @return attachment name, or an empty word if no
* name is available
*/
virtual const word& getName() const = 0;
virtual const word getName() const = 0;
/** Return the data contained in this attachment.
*
* @return attachment data
*/
virtual const ref <const contentHandler> getData() const = 0;
/** Return the encoding used for this attachment.
*
* @return attachment data encoding
*/
virtual const encoding& getEncoding() const = 0;
virtual const encoding getEncoding() const = 0;
protected:
/** Generate the attachment in the specified body part.
*
* @param parent body part in which to generate the attachment
*/
virtual void generateIn(bodyPart& parent) const = 0;

View File

@ -53,11 +53,11 @@ public:
defaultAttachment& operator=(const defaultAttachment& attach);
const mediaType& getType() const;
const text& getDescription() const;
const word& getName() const;
const mediaType getType() const;
const text getDescription() const;
const word getName() const;
const ref <const contentHandler> getData() const;
const encoding& getEncoding() const;
const encoding getEncoding() const;
protected: