example/clientapi/smf/inc/common/smfmusic/smfmusicfingerprint.h
changeset 1 4b1e636e8a71
child 2 86af6c333601
equal deleted inserted replaced
0:5d2360e70d9f 1:4b1e636e8a71
       
     1 /**
       
     2  * @file	smfmusicfingerprint.h
       
     3  * @author  Nalina Hariharan, Sasken Communication Technologies Ltd - Initial contribution
       
     4  * @version 1.0
       
     5  *
       
     6  * @section LICENSE
       
     7  *
       
     8  * Copyright (c) 2010 Sasken Communication Technologies Ltd. 
       
     9  * All rights reserved.
       
    10  * This component and the accompanying materials are made available 
       
    11  * under the terms of the "{License}" 
       
    12  * which accompanies  this distribution, and is available 
       
    13  * at the URL "{LicenseUrl}".
       
    14  * 
       
    15  * @section DESCRIPTION
       
    16  *
       
    17  * The musicfingerprint class represents a music finger print used in searches
       
    18  */
       
    19 
       
    20 #ifndef SMFMUSICFINGERPRINT_H_
       
    21 #define SMFMUSICFINGERPRINT_H_
       
    22 
       
    23 #include <QObject>
       
    24 
       
    25 /**
       
    26  * The musicfingerprint class represents a music finger print used in searches
       
    27  */
       
    28 class SmfMusicFingerPrint : public QObject
       
    29 	{
       
    30 	Q_OBJECT
       
    31 public:
       
    32 	/**
       
    33 	 * Constructor with default argument
       
    34 	 * @param aParent The parent object
       
    35 	 */
       
    36 	SmfMusicFingerPrint( QObject *aParent = 0 );
       
    37 	/**
       
    38 	 * Destructor
       
    39 	 */
       
    40 	~SmfMusicFingerPrint( );
       
    41 	
       
    42 	};
       
    43 /**
       
    44 * Externalization
       
    45 */
       
    46 friend QDataStream &operator<<(QDataStream &, const SmfMusicFingerPrint&);
       
    47 /**
       
    48  * Internalization
       
    49  */
       
    50 friend QDataStream &operator>>(QDataStream &, SmfMusicFingerPrint&);
       
    51 #endif /* SMFMUSICFINGERPRINT_H_ */