uifw/AknGlobalUI/avkonstartupextplg/src/implementationfactory.cpp
author Stefan Karlsson <stefan.karlsson@nokia.com>
Sun, 28 Mar 2010 16:37:04 +0100
branchCompilerCompatibility
changeset 11 7e31c909d88d
parent 0 2f259fa3e83a
permissions -rw-r--r--
Fixed "extra qualification" syntax errors.

/*
* Copyright (c) 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:  AvkonStartupExtensionPlugIn ECOM implementation factory.
*
*/


#include "avkonstartupextensionplugin.h"

#include <ecom/implementationproxy.h>

// Define the interface UIDs.
const TImplementationProxy ImplementationTable[] =
    {
    // Remove PCLint note "C-style cast"
    //lint -e1924
    // Remove PCLint warning "Suspicious cast"
    //lint -e611
    IMPLEMENTATION_PROXY_ENTRY( 0x1020506C, CAvkonStartupExtensionPlugIn::NewL )
    //lint +e1924
    //lint +e611
    };


// ========================== OTHER EXPORTED FUNCTIONS =========================

// -----------------------------------------------------------------------------
// ImplementationGroupProxy.
//
// -----------------------------------------------------------------------------
//
EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
    {
    aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
    return ImplementationTable;
    }


//  End of File