Music Events are now normal Fetcher APIs added
All APIs now return SmfError
Canceling Request now supported
Music Search now based on category
Providerinfo added in DSM
Added secondary ID, count, location to SMFAlbum
Tags for Artist added
Get tracks for album and artist added
Added URL to subtitle
DSM Bug fixes
Detailed debugging logs filtered in server, pluginmgr, transportmgr
playlistsOf() method changed in smfclient and plugin interfaces.
RVCT B686 compilation issues resolved.
/**
* Copyright (c) 2010 Sasken Communication Technologies Ltd.
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html"
*
* Initial Contributors:
* Chandradeep Gandhi, Sasken Communication Technologies Ltd - Initial contribution
*
* Contributors:
* Manasij Roy, Nalina Hariharan
*
* Description:
* The SmfMusicFingerPrint class represents a music finger print used in searches
*
*/
#ifndef SMFMUSICFINGERPRINT_H_
#define SMFMUSICFINGERPRINT_H_
#include <QDataStream>
#include <QSharedData>
#include <QMetaType>
#include "smfclientglobal.h"
class SmfMusicFingerPrintPrivate;
/**
* @ingroup smf_common_group
* The musicfingerprint class represents a music finger print used in searches
*/
class SMFCOMMON_EXPORT SmfMusicFingerPrint
{
public:
/**
* Constructor with default argument
*/
SmfMusicFingerPrint( );
/**
* Constructor with default argument
* @param aParent The parent object
*/
SmfMusicFingerPrint( const SmfMusicFingerPrint &aOther );
/**
* Overloaded = operator
* @param aOther The reference object
*/
SmfMusicFingerPrint& operator=( const SmfMusicFingerPrint &aOther );
/**
* Destructor
*/
~SmfMusicFingerPrint( );
/**
* Method to get the music finger print data
* @return The music finger print data
*/
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;
friend QDataStream &operator<<( QDataStream &aDataStream,
const SmfMusicFingerPrint &aMFP );
friend QDataStream &operator>>( QDataStream &aDataStream,
SmfMusicFingerPrint &aMFP );
};
/**
* Method for Externalization. Writes the SmfMusicFingerPrint object to
* the stream and returns a reference to the stream.
* @param aDataStream Stream to be written
* @param aMFP The SmfMusicFingerPrint object to be externalized
* @return reference to the written stream
*/
SMFCOMMON_EXPORT QDataStream &operator<<( QDataStream &aDataStream,
const SmfMusicFingerPrint &aMFP );
/**
* Method for Internalization. Reads a SmfMusicFingerPrint object from
* the stream and returns a reference to the stream.
* @param aDataStream Stream to be read
* @param aMFP The SmfMusicFingerPrint object to be internalized
* @return reference to the stream
*/
SMFCOMMON_EXPORT QDataStream &operator>>( QDataStream &aDataStream,
SmfMusicFingerPrint &aMFP);
// Make the class SmfMusicFingerPrint known to QMetaType, so that as to register it.
Q_DECLARE_METATYPE(SmfMusicFingerPrint)
Q_DECLARE_METATYPE(QList<SmfMusicFingerPrint>)
#endif /* SMFMUSICFINGERPRINT_H_ */