filedetails/filedetailsplugin/inc/filedetailsplugin.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 15 Mar 2010 12:40:47 +0200
branchRCL_3
changeset 9 5294c000a26d
parent 0 96612d01cf9f
permissions -rw-r--r--
Revision: 201009 Kit: 201010

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:   
*/


#ifndef FILEDETAILSPLUGIN_H
#define FILEDETAILSPLUGIN_H

// INCLUDES
#include <e32std.h>
#include <filedetailspluginif.h>


// CLASS DECLARATION    
/**
*  Implementation of the file details plugin
*
*/
NONSHARABLE_CLASS( CFileDetailsPlugin ) : public CFileDetailsPluginIF 
    {
    public:// Constructors and destructor

        /**
        * Two-phased constructor.        
        */
        static CFileDetailsPlugin* NewL();
        
        /**
        * C+ destructor
        */
        virtual ~CFileDetailsPlugin();        
   
    public: // From CFileDetailsPluginIF

        /**
           * Shows file details based on given mpx media
           * @param    aDetails  Already constructed details to be shown    
           * @return   None
           */  
        void ShowFileDetailsL( const CMPXMedia& aMedia );

    private:// Constructors and destructor

        /**
        * C++ constructor
        */
        CFileDetailsPlugin();
        
    };

#endif // FILEDETAILSPLUGIN_H