emailservices/nmclientapi/src/nmapitextcontent.cpp
changeset 74 6c59112cfd31
parent 68 83cc6bae1de8
equal deleted inserted replaced
69:4e54af54a4a1 74:6c59112cfd31
    28     NM_FUNCTION;
    28     NM_FUNCTION;
    29     d = new NmApiTextContentPrivate();
    29     d = new NmApiTextContentPrivate();
    30 }
    30 }
    31 
    31 
    32 /*!
    32 /*!
       
    33     Class copy constructor.
       
    34 */
       
    35 NmApiTextContent::NmApiTextContent(const NmApiTextContent &textcontent)
       
    36 {
       
    37     NM_FUNCTION;
       
    38     d = textcontent.d;
       
    39 }
       
    40 
       
    41 /*!
    33     Class destructor.
    42     Class destructor.
    34 */
    43 */
    35 NmApiTextContent::~NmApiTextContent()
    44 NmApiTextContent::~NmApiTextContent()
    36 {
    45 {
    37     NM_FUNCTION;
    46     NM_FUNCTION;
       
    47 }
       
    48 
       
    49 NmApiTextContent& NmApiTextContent::operator=(const NmApiTextContent &textcontent)
       
    50 {
       
    51     if (this == &textcontent)
       
    52         return *this;
       
    53     
       
    54     d = textcontent.d;
       
    55 
       
    56     return *this;
    38 }
    57 }
    39 
    58 
    40 /*!
    59 /*!
    41    Getter for content
    60    Getter for content
    42  */
    61  */