author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
sl@0 | 1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). |
sl@0 | 2 |
// All rights reserved. |
sl@0 | 3 |
// This component and the accompanying materials are made available |
sl@0 | 4 |
// under the terms of "Eclipse Public License v1.0" |
sl@0 | 5 |
// which accompanies this distribution, and is available |
sl@0 | 6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html". |
sl@0 | 7 |
// |
sl@0 | 8 |
// Initial Contributors: |
sl@0 | 9 |
// Nokia Corporation - initial contribution. |
sl@0 | 10 |
// |
sl@0 | 11 |
// Contributors: |
sl@0 | 12 |
// |
sl@0 | 13 |
// Description: |
sl@0 | 14 |
// |
sl@0 | 15 |
|
sl@0 | 16 |
// Includes |
sl@0 | 17 |
#include <ecom/ecom.h> |
sl@0 | 18 |
#include <ecom/implementationinformation.h> |
sl@0 | 19 |
#include <ecom/implementationproxy.h> |
sl@0 | 20 |
#include "nullExample.h" |
sl@0 | 21 |
|
sl@0 | 22 |
|
sl@0 | 23 |
// ================= MEMBER FUNCTIONS ======================= |
sl@0 | 24 |
|
sl@0 | 25 |
// C++ default constructor can NOT contain any code, that |
sl@0 | 26 |
// might leave. |
sl@0 | 27 |
// |
sl@0 | 28 |
CInterfaceImpl::CInterfaceImpl(): |
sl@0 | 29 |
CExampleInterface() |
sl@0 | 30 |
{ |
sl@0 | 31 |
|
sl@0 | 32 |
} |
sl@0 | 33 |
|
sl@0 | 34 |
// Two-phased constructor. |
sl@0 | 35 |
CInterfaceImpl* CInterfaceImpl::NewL(TAny* aConstructionParams) |
sl@0 | 36 |
{ |
sl@0 | 37 |
__ASSERT_ALWAYS(aConstructionParams == NULL, User::Leave(KErrArgument)); |
sl@0 | 38 |
//return new (ELeave) CInterfaceImpl; |
sl@0 | 39 |
CInterfaceImpl* self= new (ELeave) CInterfaceImpl(); |
sl@0 | 40 |
return self; |
sl@0 | 41 |
} |
sl@0 | 42 |
|
sl@0 | 43 |
// Destructor |
sl@0 | 44 |
CInterfaceImpl::~CInterfaceImpl() |
sl@0 | 45 |
{ |
sl@0 | 46 |
} |
sl@0 | 47 |
|
sl@0 | 48 |
TInt CInterfaceImpl::Version() const |
sl@0 | 49 |
{ |
sl@0 | 50 |
return 2; |
sl@0 | 51 |
} |
sl@0 | 52 |
|
sl@0 | 53 |
void CInterfaceImpl::DoMethodL() |
sl@0 | 54 |
{ |
sl@0 | 55 |
// Access TLS to ensure it has been set properly |
sl@0 | 56 |
REINTERPRET_CAST(TInt*, Dll::Tls()); |
sl@0 | 57 |
} |
sl@0 | 58 |
|
sl@0 | 59 |
TInt CInterfaceImpl::FireAndForget() |
sl@0 | 60 |
{ |
sl@0 | 61 |
TRAPD(error,DoMethodL()); |
sl@0 | 62 |
return error; // Always KErrNotSupported |
sl@0 | 63 |
} |
sl@0 | 64 |
|
sl@0 | 65 |
TUid CInterfaceImpl::ImplId() |
sl@0 | 66 |
{ |
sl@0 | 67 |
TUid idVal = {0x01aa500c}; |
sl@0 | 68 |
return (idVal); |
sl@0 | 69 |
} |
sl@0 | 70 |
|
sl@0 | 71 |
// Provide the CActive overloads |
sl@0 | 72 |
void CInterfaceImpl::RunL() |
sl@0 | 73 |
{ |
sl@0 | 74 |
// Do nothing : should never be called |
sl@0 | 75 |
__ASSERT_DEBUG(EFalse,User::Invariant()); |
sl@0 | 76 |
} |
sl@0 | 77 |
|
sl@0 | 78 |
void CInterfaceImpl::DoCancel() |
sl@0 | 79 |
{ |
sl@0 | 80 |
// Do nothing |
sl@0 | 81 |
} |
sl@0 | 82 |
|
sl@0 | 83 |
TInt CInterfaceImpl::RunError(TInt aError) |
sl@0 | 84 |
{ |
sl@0 | 85 |
return aError; |
sl@0 | 86 |
} |
sl@0 | 87 |
|
sl@0 | 88 |
// __________________________________________________________________________ |
sl@0 | 89 |
// Exported proxy for instantiation method resolution |
sl@0 | 90 |
// Define the interface UIDs |
sl@0 | 91 |
const TImplementationProxy KImplTable[] = |
sl@0 | 92 |
{ |
sl@0 | 93 |
//{{0x01aa500c}, CInterfaceImpl::NewL} |
sl@0 | 94 |
IMPLEMENTATION_PROXY_ENTRY(0x01aa500c, CInterfaceImpl::NewL) |
sl@0 | 95 |
}; |
sl@0 | 96 |
|
sl@0 | 97 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) |
sl@0 | 98 |
{ |
sl@0 | 99 |
aTableCount = sizeof(KImplTable) / sizeof(TImplementationProxy); |
sl@0 | 100 |
return KImplTable; |
sl@0 | 101 |
} |
sl@0 | 102 |
|
sl@0 | 103 |
// End of File |