multimediacommscontroller/mmccredpayloadformat/src/mccredpayloadformatimplproxy.cpp
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     1 /*
       
     2 * Copyright (c) 2005-2006 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:    This file contains the exported proxy for instantiation method
       
    15 *                resolution for the Redundancy RTP payload format plugin.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 // INCLUDE FILES
       
    23 #include <e32std.h>
       
    24 #include <ecom/implementationproxy.h>
       
    25 #include "mccredpayloadread.h"
       
    26 #include "mccredpayloadwrite.h"
       
    27 #include "mccuids.hrh"
       
    28 
       
    29 // EXTERNAL DATA STRUCTURES
       
    30 
       
    31 // EXTERNAL FUNCTION PROTOTYPES  
       
    32 
       
    33 // CONSTANTS
       
    34 
       
    35 // MACROS
       
    36 
       
    37 // LOCAL CONSTANTS AND MACROS
       
    38 
       
    39 // Disabled PC-Lint warning for "suspicious typecast" caused by Symbian's
       
    40 // ECom declarations (IMPLEMENTATION_PROXY_ENTRY that follows)
       
    41 /*lint -e611 */
       
    42 
       
    43 const TImplementationProxy ImplementationTable[] = 
       
    44     {
       
    45     IMPLEMENTATION_PROXY_ENTRY( KImplUidRedPayloadFormatDecode,
       
    46         CMccRedPayloadRead::NewL ),
       
    47     IMPLEMENTATION_PROXY_ENTRY( KImplUidRedPayloadFormatEncode,
       
    48         CMccRedPayloadWrite::NewL )
       
    49     };
       
    50 
       
    51 
       
    52 // MODULE DATA STRUCTURES
       
    53 
       
    54 // LOCAL FUNCTION PROTOTYPES
       
    55 
       
    56 // FORWARD DECLARATIONS
       
    57 
       
    58 // ============================= LOCAL FUNCTIONS ==============================
       
    59 
       
    60 // ============================ MEMBER FUNCTIONS ==============================
       
    61 
       
    62 // ========================== OTHER EXPORTED FUNCTIONS ========================
       
    63 
       
    64 // ----------------------------------------------------------------------------
       
    65 // ImplementationGroupProxy
       
    66 //
       
    67 // Function to return the implementation proxy table
       
    68 // ----------------------------------------------------------------------------
       
    69 //
       
    70 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    71     {
       
    72     aTableCount = sizeof(ImplementationTable) / sizeof( TImplementationProxy );
       
    73 
       
    74     return ImplementationTable;
       
    75     }
       
    76 
       
    77 //  End of File