smf/smfservermodule/smfclient/common/smfmusicfingerprint_p.h
changeset 10 1d94eb8df9c2
parent 9 b85b0c039c14
equal deleted inserted replaced
9:b85b0c039c14 10:1d94eb8df9c2
     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 	
       
    35 	/**
       
    36 	 * Copy Consturctor
       
    37 	 * @param aOther The reference object to be copy constructed
       
    38 	 */
       
    39 	SmfMusicFingerPrintPrivate( const SmfMusicFingerPrintPrivate &aOther ) : 
       
    40 		QSharedData ( aOther ), 
       
    41 		m_fingerPrintData ( aOther.m_fingerPrintData )	{ }
       
    42 	
       
    43 	/**
       
    44 	 * Destructor
       
    45 	 */
       
    46 	~SmfMusicFingerPrintPrivate( )
       
    47 		{
       
    48 		}
       
    49   
       
    50 	QByteArray m_fingerPrintData;	// Finger print data
       
    51 	
       
    52 };
       
    53 
       
    54 
       
    55 #endif /* SMFMUSICFINGERPRINT_P_H_ */