Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include <ecom/ecom.h>
18 #include <ecom/implementationinformation.h>
19 #include <ecom/implementationproxy.h>
20 #include "nullExample.h"
23 // ================= MEMBER FUNCTIONS =======================
25 // C++ default constructor can NOT contain any code, that
28 CInterfaceImpl::CInterfaceImpl():
34 // Two-phased constructor.
35 CInterfaceImpl* CInterfaceImpl::NewL(TAny* aConstructionParams)
37 __ASSERT_ALWAYS(aConstructionParams == NULL, User::Leave(KErrArgument));
38 //return new (ELeave) CInterfaceImpl;
39 CInterfaceImpl* self= new (ELeave) CInterfaceImpl();
44 CInterfaceImpl::~CInterfaceImpl()
48 TInt CInterfaceImpl::Version() const
53 void CInterfaceImpl::DoMethodL()
55 // Access TLS to ensure it has been set properly
56 REINTERPRET_CAST(TInt*, Dll::Tls());
59 TInt CInterfaceImpl::FireAndForget()
61 TRAPD(error,DoMethodL());
62 return error; // Always KErrNotSupported
65 TUid CInterfaceImpl::ImplId()
67 TUid idVal = {0x01aa500c};
71 // Provide the CActive overloads
72 void CInterfaceImpl::RunL()
74 // Do nothing : should never be called
75 __ASSERT_DEBUG(EFalse,User::Invariant());
78 void CInterfaceImpl::DoCancel()
83 TInt CInterfaceImpl::RunError(TInt aError)
88 // __________________________________________________________________________
89 // Exported proxy for instantiation method resolution
90 // Define the interface UIDs
91 const TImplementationProxy KImplTable[] =
93 //{{0x01aa500c}, CInterfaceImpl::NewL}
94 IMPLEMENTATION_PROXY_ENTRY(0x01aa500c, CInterfaceImpl::NewL)
97 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
99 aTableCount = sizeof(KImplTable) / sizeof(TImplementationProxy);