Update contrib.
1 // Copyright (c) 2007-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.
14 // The implementation of CImplementationClassFourteen
23 #include "examplefourteen.h"
26 Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
27 Error Condition : Leaves with error code.
29 @param aInitParams The parameter struct used for initialising this object
30 @return CImplementationClassFourteen* The class instance.
32 @post CImplementationClassFourteen has been constructed,
35 CImplementationClassFourteen* CImplementationClassFourteen::NewL(TAny* aInitParams)
37 CImplementationClassFourteen* self=new(ELeave) CImplementationClassFourteen();
38 CleanupStack::PushL(self);
39 self->ConstructL(aInitParams);
40 CleanupStack::Pop(self);
45 Intended Usage : Destructor of CImplementationClassFourteen
46 Error Condition : None
47 @pre CImplementationClassFourteen has been constructed
48 @post CImplementationClassFourteen has been completely destroyed.
50 CImplementationClassFourteen::~CImplementationClassFourteen()
52 delete iInternalDescriptor;
56 Intended Usage : Default Constructor : usable only by derived classes
57 Error Condition : None
59 @post CImplementationClassFourteen has been constructed
61 CImplementationClassFourteen::CImplementationClassFourteen()
67 Intended Usage : Completes the safe construction of the CImplementationClassFourteen object
68 Error Condition : Leaves with the error code.
70 @param aInitParams The parameter struct used for initialising this object
71 @pre CImplementationClassFourteen has been constructed
72 @post CImplementationClassFourteen has been fully initialised.
74 void CImplementationClassFourteen::ConstructL(TAny* aInitParams)
76 TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*, aInitParams);
79 if(params->descriptor)
81 iInternalDescriptor = params->descriptor->AllocL();
84 User::LeaveIfError(Dll::SetTls(&iTLSInt));
88 Intended Usage : Overload of the pure interface method
89 Representative of a method provided on
90 the interface by the interface definer.
93 void CImplementationClassFourteen::DoMethodL()
95 // Access TLS to ensure it has been set properly
96 ASSERT(Dll::Tls()!=NULL);
100 Intended Usage : Overload of the pure interface method
101 asynchronous function which
102 an interface definer could specify.
103 @return TInt KErrNone for success.
105 TInt CImplementationClassFourteen::FireAndForget()
110 // Provide the CActive overloads
111 void CImplementationClassFourteen::RunL()
113 // Do nothing : should never be called
114 __ASSERT_DEBUG(EFalse,User::Invariant());
117 void CImplementationClassFourteen::DoCancel()
122 TInt CImplementationClassFourteen::RunError(TInt aError)
127 Intended Usage : To verify the object returned by ECOM.
128 @return TUid (ECOM's Implementation Uid for this class.)
130 TUid CImplementationClassFourteen::ImplId()