examples/Multimedia/MmfExSinkSource/Main.cpp

00001 //
00002 // main.cpp
00003 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
00004 // All rights reserved.
00005 // This component and the accompanying materials are made available
00006 // under the terms of "Eclipse Public License v1.0"
00007 // which accompanies this distribution, and is available
00008 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
00009 //
00010 // Initial Contributors:
00011 // Nokia Corporation - initial contribution.
00012 //
00013 // Contributors:
00014 //
00015 // Description:
00016 //
00017 
00018 //
00019 
00020 // __________________________________________________________________________
00021 // Exported proxy for instantiation method resolution
00022 // Define the interface UIDs
00023 
00024 #include <implementationproxy.h>
00025 #include "mmfexdes.h"
00026 #include "MmfExSinkSourceUIDs.hrh"
00027 
00028 const TImplementationProxy ImplementationTable[] = 
00029         {
00030                 IMPLEMENTATION_PROXY_ENTRY(KDescriptorSourceUID,        CMMFExDescriptor::NewSourceL),
00031                 IMPLEMENTATION_PROXY_ENTRY(KDescriptorSinkUID,  CMMFExDescriptor::NewSinkL)
00032         };
00033 
00034 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
00035         {
00036         aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
00037 
00038         return ImplementationTable;
00039         }
00040 

Generated by  doxygen 1.6.2