smf/smfservermodule/smfcommon/smfmusicfingerprint_p.h
changeset 25 a180113055cb
parent 18 013a02bf2bb0
--- a/smf/smfservermodule/smfcommon/smfmusicfingerprint_p.h	Thu Sep 23 17:20:22 2010 +0530
+++ b/smf/smfservermodule/smfcommon/smfmusicfingerprint_p.h	Thu Sep 23 17:43:31 2010 +0530
@@ -30,6 +30,8 @@
 	 */
 	SmfMusicFingerPrintPrivate( )
 		{
+		m_id.clear();
+		m_fingerPrintData.clear();
 		}
 	
 	/**
@@ -38,7 +40,8 @@
 	 */
 	SmfMusicFingerPrintPrivate( const SmfMusicFingerPrintPrivate &aOther ) : 
 		QSharedData ( aOther ), 
-		m_fingerPrintData ( aOther.m_fingerPrintData )	{ }
+		m_fingerPrintData ( aOther.m_fingerPrintData ),
+		m_id (aOther.m_id) { }
 	
 	/**
 	 * Destructor
@@ -48,6 +51,7 @@
 		}
   
 	QByteArray m_fingerPrintData;	// Finger print data
+	QString m_id;		// Finger print id by the service provider
 	
 };