profilesservices/ProfileEngine/WrapperSrc/ProEngMmfInfoUtility.h
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:35:53 +0100
branchGCC_SURGE
changeset 45 f48d04161a92
parent 0 8c5d936e5675
permissions -rw-r--r--
Catchup to latest Symbian^4

/*
* Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "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:  A wrapper interface around MMF (Multimedia Framework) to get
*                information about MIME-types supported by MMF.
*
*/



#ifndef PROENGMMFINFOUTILITY_H
#define PROENGMMFINFOUTILITY_H

//  INCLUDES
#include <e32std.h>

// FORWARD DECLARATIONS
class CDesC8Array;

// CLASS DECLARATION

/**
*  A helper class used by Profiles Engine Wrapper to get the list of supported
*  MIME types from MMF.
*
*  @lib ProfileEngine.lib
*  @since Series 60 3.1
*/
NONSHARABLE_CLASS( ProEngMmfInfoUtility )
    {
    public: // New functions

        /**
         * Gets the list of supported MIME types from MMF.
         * @param aMimeArray the array that contains the list of supported MIME
         *        types on return
         */
        static void GetSupportedMimeTypesL( CDesC8Array& aMimeArray );

    private:  // Constructor and destructor

        /**
         * Default constructor. This is private since this class is not intended
         * to be instantiated.
         */
        ProEngMmfInfoUtility() {};

        // Destructor.
        ~ProEngMmfInfoUtility() {};
    };

#endif      // PROENGMMFINFOUTILITY_H

// End of File