smf/inc/common/smfmusic/smfmusicfingerprint_p.h
changeset 3 0446eb7b28aa
child 5 edb9dc8273d9
equal deleted inserted replaced
2:86af6c333601 3:0446eb7b28aa
       
     1 /**
       
     2  * Copyright (c) 2010 Sasken Communication Technologies Ltd.
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of the "Eclipse Public License v1.0" 
       
     6  * which accompanies  this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html"
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Chandradeep Gandhi, Sasken Communication Technologies Ltd - Initial contribution
       
    11  *
       
    12  * Contributors:
       
    13  * Manasij Roy, Nalina Hariharan
       
    14  * 
       
    15  * Description:
       
    16  * Private class implemented for implicit sharing of SmfMusicFingerPrint class
       
    17  *
       
    18  */
       
    19 
       
    20 #ifndef SMFMUSICFINGERPRINT_P_H_
       
    21 #define SMFMUSICFINGERPRINT_P_H_
       
    22 
       
    23 #include <QSharedData>
       
    24 
       
    25 class SmfMusicFingerPrintPrivate : public QSharedData
       
    26 {
       
    27 public:
       
    28 	/**
       
    29 	 * Constructor
       
    30 	 */
       
    31 	SmfMusicFingerPrintPrivate( );
       
    32 	
       
    33 	/**
       
    34 	 * Copy Consturctor
       
    35 	 * @param aOther The reference object to be copy constructed
       
    36 	 */
       
    37 	SmfMusicFingerPrintPrivate( const SmfMusicFingerPrintPrivate &aOther ) : 
       
    38 		QSharedData ( aOther ), 
       
    39 		m_fingerPrintData ( aOther.m_fingerPrintData )	{ }
       
    40 	
       
    41 	/**
       
    42 	 * Destructor
       
    43 	 */
       
    44 	~SmfMusicFingerPrintPrivate( );
       
    45   
       
    46 	QByteArray m_fingerPrintData;
       
    47 	
       
    48 };
       
    49 
       
    50 
       
    51 #endif /* SMFMUSICFINGERPRINT_P_H_ */