mpviewplugins/mpdetailsviewplugin/inc/mpmpxdetailsframeworkwrapper.h
branchGCC_SURGE
changeset 44 eff9df3d9c98
parent 30 b95ddb5a0d10
parent 42 79c49924ae23
equal deleted inserted replaced
30:b95ddb5a0d10 44:eff9df3d9c98
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "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 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: Framework wrapper 
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MPMPXDETAILSFRAMEWORKWRAPPER_H_
       
    19 #define MPMPXDETAILSFRAMEWORKWRAPPER_H_
       
    20 
       
    21 //includes
       
    22 #include <QObject>
       
    23 
       
    24 //forward declartions
       
    25 class MpSongData;
       
    26 class MpMpxDetailsFrameworkWrapperPrivate;
       
    27 
       
    28 //class declaration
       
    29 class MpMpxDetailsFrameworkWrapper : public QObject
       
    30 {
       
    31     Q_OBJECT
       
    32     friend class MpMpxDetailsFrameworkWrapperPrivate;
       
    33 
       
    34 public:
       
    35     explicit MpMpxDetailsFrameworkWrapper( QObject *parent=0 );
       
    36     virtual ~MpMpxDetailsFrameworkWrapper();
       
    37     
       
    38     MpSongData *songData();
       
    39    
       
    40 public:
       
    41     void retrieveSong();
       
    42     
       
    43 private:
       
    44     Q_DISABLE_COPY( MpMpxDetailsFrameworkWrapper )
       
    45     MpMpxDetailsFrameworkWrapperPrivate *d_ptr; //owned
       
    46 };
       
    47 
       
    48 
       
    49 #endif /* MPMPXDETAILSFRAMEWORKWRAPPER_H_ */