smf/smfservermodule/smfcommon/smfmusicfingerprint.h
changeset 25 a180113055cb
parent 18 013a02bf2bb0
--- a/smf/smfservermodule/smfcommon/smfmusicfingerprint.h	Thu Sep 23 17:20:22 2010 +0530
+++ b/smf/smfservermodule/smfcommon/smfmusicfingerprint.h	Thu Sep 23 17:43:31 2010 +0530
@@ -22,8 +22,9 @@
 
 #include <QDataStream>
 #include <QSharedData>
+#include <QMetaType>
+
 #include "smfclientglobal.h"
-#include <QMetaType>
 
 class SmfMusicFingerPrintPrivate;
 
@@ -63,11 +64,23 @@
 	QByteArray musicFingerPrint ( ) const;
 	
 	/**
+	 * Method to get the service specific id of this fingerprint data
+	 * @return The ID value 
+	 */
+	QString id( ) const;
+	
+	/**
 	 * Method to set the music finger print data
 	 * @param aFp The music finger print data
 	 */
 	void setMusicFingerPrint ( const QByteArray &aFp);
 	
+	/**
+	 * Method to set the service specific id of this fingerprint data
+	 * @param aId The ID value 
+	 */
+	void setId( const QString &aId );
+	
 private:
 	QSharedDataPointer<SmfMusicFingerPrintPrivate> d;