sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: // Includes sl@0: #include sl@0: #include sl@0: #include sl@0: #include "nullExample.h" sl@0: sl@0: sl@0: // ================= MEMBER FUNCTIONS ======================= sl@0: sl@0: // C++ default constructor can NOT contain any code, that sl@0: // might leave. sl@0: // sl@0: CInterfaceImpl::CInterfaceImpl(): sl@0: CExampleInterface() sl@0: { sl@0: sl@0: } sl@0: sl@0: // Two-phased constructor. sl@0: CInterfaceImpl* CInterfaceImpl::NewL(TAny* aConstructionParams) sl@0: { sl@0: __ASSERT_ALWAYS(aConstructionParams == NULL, User::Leave(KErrArgument)); sl@0: //return new (ELeave) CInterfaceImpl; sl@0: CInterfaceImpl* self= new (ELeave) CInterfaceImpl(); sl@0: return self; sl@0: } sl@0: sl@0: // Destructor sl@0: CInterfaceImpl::~CInterfaceImpl() sl@0: { sl@0: } sl@0: sl@0: TInt CInterfaceImpl::Version() const sl@0: { sl@0: return 2; sl@0: } sl@0: sl@0: void CInterfaceImpl::DoMethodL() sl@0: { sl@0: // Access TLS to ensure it has been set properly sl@0: REINTERPRET_CAST(TInt*, Dll::Tls()); sl@0: } sl@0: sl@0: TInt CInterfaceImpl::FireAndForget() sl@0: { sl@0: TRAPD(error,DoMethodL()); sl@0: return error; // Always KErrNotSupported sl@0: } sl@0: sl@0: TUid CInterfaceImpl::ImplId() sl@0: { sl@0: TUid idVal = {0x01aa500c}; sl@0: return (idVal); sl@0: } sl@0: sl@0: // Provide the CActive overloads sl@0: void CInterfaceImpl::RunL() sl@0: { sl@0: // Do nothing : should never be called sl@0: __ASSERT_DEBUG(EFalse,User::Invariant()); sl@0: } sl@0: sl@0: void CInterfaceImpl::DoCancel() sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: TInt CInterfaceImpl::RunError(TInt aError) sl@0: { sl@0: return aError; sl@0: } sl@0: sl@0: // __________________________________________________________________________ sl@0: // Exported proxy for instantiation method resolution sl@0: // Define the interface UIDs sl@0: const TImplementationProxy KImplTable[] = sl@0: { sl@0: //{{0x01aa500c}, CInterfaceImpl::NewL} sl@0: IMPLEMENTATION_PROXY_ENTRY(0x01aa500c, CInterfaceImpl::NewL) sl@0: }; sl@0: sl@0: EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) sl@0: { sl@0: aTableCount = sizeof(KImplTable) / sizeof(TImplementationProxy); sl@0: return KImplTable; sl@0: } sl@0: sl@0: // End of File