emailuis/uicomponents/fsscrollbarplugin/inc/fsscrollbarfactory.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 10:12:48 +0100
branchCompilerCompatibility
changeset 15 1fb7c29cba15
parent 0 8466d47a6819
permissions -rw-r--r--
Add & to member functions in initialiser, to fix Bug 1770

/*
* Copyright (c) 2007 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: This file defines class TFsScrollbarFactory.
*
*/



#ifndef T_FSSCROLLBARFACTORY_H
#define T_FSSCROLLBARFACTORY_H

#include <alf/alfextensionfactory.h>

/**
 *  ?one_line_short_description
 *
 *  ?more_complete_description
 *
 *  @lib ?library
 *  @since S60 ?S60_version *** for example, S60 v3.0
 */
class TFsScrollbarFactory : public MAlfExtensionFactory
    {

public:

// from base class MAlfExtensionFactory

    /**
     * From MAlfExtensionFactory.
     * Creates new instace of required type (unique for factory) Must not take
     * ownership of created object.
     *
     * @since S60 ?S60_version
     * @param aObjectId      Object type required
     * @param aInputBuffer   Additional data attached to object construction
     * @param aResolver      Reference to Interface resolver
     */
    MAlfExtension* CreateExtensionL(
        const TInt aObjectId,
        const TDesC8& aInitialParams,
        MAlfInterfaceProvider& aResolver );

    /**
     * From MAlfExtensionFactory.
     * Free resources for instance, usually delete this
     */
    void Release();

    };


#endif // T_FSSCROLLBARFACTORY_H