audiostubs/devsoundextensions_stubs/cistubplugin/src/cistubpluginMain.cpp
changeset 43 e71858845f73
parent 40 b7e5ed8c1342
child 46 e1758cbb96ac
equal deleted inserted replaced
40:b7e5ed8c1342 43:e71858845f73
     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: Stub plugin main
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <implementationproxy.h>
       
    21 #include <ecom.h>
       
    22 #include "cistubplugin.h"
       
    23 #include "cistubplugin.hrh"
       
    24 
       
    25 
       
    26 // ImplementationTable
       
    27 
       
    28 const TImplementationProxy
       
    29         ImplementationTable[] =
       
    30             {
       
    31             IMPLEMENTATION_PROXY_ENTRY(KUidCustomInterfaceStubPlugin, CCIStubPlugin::NewL),
       
    32             };
       
    33 
       
    34 
       
    35 // ImplementationGroupProxy
       
    36 
       
    37 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    38     {
       
    39     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    40     return ImplementationTable;
       
    41     }
       
    42