mpviewplugins/mpdetailsviewplugin/tsrc/unittest_mpdetailsview/stub/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 #include "stub/inc/mpsongdata.h"
       
    24 
       
    25 //forward declartions
       
    26 class MpSongData;
       
    27 
       
    28 //class declaration
       
    29 class MpMpxDetailsFrameworkWrapper : public QObject
       
    30 {
       
    31     Q_OBJECT
       
    32 
       
    33 public:
       
    34     MpMpxDetailsFrameworkWrapper( QObject *parent=0 );
       
    35     virtual ~MpMpxDetailsFrameworkWrapper();
       
    36     
       
    37     MpSongData *songData();
       
    38     void retrieveSong();
       
    39 private:
       
    40     MpSongData* iSongData;
       
    41     
       
    42 };
       
    43 
       
    44 
       
    45 #endif /* MPMPXDETAILSFRAMEWORKWRAPPER_H_ */