smf/inc/common/smfmusic/smflyrics_p.h
changeset 5 edb9dc8273d9
parent 3 0446eb7b28aa
equal deleted inserted replaced
4:969092730d34 5:edb9dc8273d9
    27 {
    27 {
    28 public:
    28 public:
    29 	/**
    29 	/**
    30 	 * Constructor
    30 	 * Constructor
    31 	 */
    31 	 */
    32 	SmfLyricsPrivate( ) { 
    32 	SmfLyricsPrivate( );
    33 		m_lyrics.clear();
       
    34 		m_language.clear();
       
    35 		m_lyricsId.clear(); 
       
    36 	}
       
    37 	
       
    38 	/**
    33 	/**
    39 	 * Copy Consturctor
    34 	 * Copy Consturctor
    40 	 * @param aOther The reference object to be copy constructed
    35 	 * @param aOther The reference object to be copy constructed
    41 	 */
    36 	 */
    42 	SmfLyricsPrivate( const SmfLyricsPrivate &aOther ) : 
    37 	SmfLyricsPrivate( const SmfLyricsPrivate &aOther );
    43 		QSharedData ( aOther ), 
       
    44 		m_lyrics ( aOther.m_lyrics ),
       
    45 		m_language ( aOther.m_language ),
       
    46 		m_releaseYr ( aOther.m_releaseYr ),
       
    47 		m_lyricsId ( aOther.m_lyricsId ) 	{ }
       
    48 	
       
    49 	/**
    38 	/**
    50 	 * Destructor
    39 	 * Destructor
    51 	 */
    40 	 */
    52 	~SmfLyricsPrivate( );
    41 	~SmfLyricsPrivate( );
    53   
    42