audiostubs/devsoundextensions_stubs/cistubplugin/src/cistubpluginMain.cpp
branchRCL_3
changeset 21 51acc10b7a0c
parent 17 4bfd755294b7
child 22 205ca2b22b4d
child 25 ed4d16870c37
equal deleted inserted replaced
17:4bfd755294b7 21:51acc10b7a0c
     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