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.
14 // The implementation of a some classes
15 // to be provided by ECom.
16 // 1. Using the CExampleInterface class as a base.
20 #include "Interface.h"
21 #include "ImplementationProxy.h"
22 #include "TestUtilities.h" // For __FILE__LINE__
24 // ____________________________________________________________________________
27 Intended usage: This class implements the functionality promised by
28 the CExampleInterface defintion class. It does little apart from provides a test instance
29 which may be retrieved and run for testing purposes.
30 Its resolution is based upon its registered default data string that
31 advertises this class as being able to handle 'text\wml' data.
34 class CImplementationClass16 : public CExampleInterface
39 @fn NewL(TAny* aInitParams)
40 Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
41 Error Condition : Leaves with error code.
44 @param aInitParams The parameter struct used for initialising this object
45 @return CImplementationClass16* The class instance.
47 @post CImplementationClass16 has been constructed,
53 @fn ~CImplementationClass16()
54 Intended Usage : Default Destructor
55 Error Condition : None
57 @pre CImplementationClass16 has been constructed
58 @post CImplementationClass16 has been completely destroyed.
60 virtual ~CImplementationClass16();
64 Intended Usage : Overload of the pure interface method
65 Representative of a method provided on
66 the interface by the interface definer.
67 Error Condition : Leaves with an error code.
68 @leave KErrNoMemory, KErrNotSupported.
71 @pre CImplementationClass16 has been constructed
79 Intended Usage : To verify the object returned by ECOM.
80 Error Condition : None.
82 @return TUid (ECOM's Implementation Uid for this class.)
83 @pre CImplementationClassThree has been constructed
90 @fn CImplementationClass16()
91 Intended Usage : Default Constructor : usable only by derived classes
92 Error Condition : None
95 @post CImplementationClass16 has been constructed
97 CImplementationClass16();
101 Intended Usage : Completes the safe construction of the CImplementationClass16 object
102 Error Condition : Leaves with the error code.
105 @pre CImplementationClass16 has been constructed
106 @post CImplementationClass16 has been fully initialised.
110 // Provide the CActive overloads
113 TInt RunError(TInt aError);
116 /** A place for allocating some memory in the ConstructL */
117 HBufC* iInternalDescriptor;
118 /** An int to be stored in TLS to test its useage */
121 }; // End of CImplementationClass16 definition
123 // __________________________________________________________________________
126 void CImplementationClass16::NewL()
127 // Intended Usage : Safe construction which leaves nothing upon the cleanup stack
128 // Error Condition : Will leave with an appropriate error code
129 // Dependencies : CBase
131 // @return CImplementationClass16* a pointer to the fully instantiated CImplementationClass16 object
133 // @post The object has been fully instantiated
136 User::Leave(KErrGeneral);
139 CImplementationClass16::~CImplementationClass16()
140 // Default virtual d'tor
142 delete iInternalDescriptor;
145 CImplementationClass16::CImplementationClass16()
146 // Default c'tor for use by derived and
147 // static construction methods only
148 : CExampleInterface()
150 // Deliberately do nothing here : See ConstructL() for initialisation completion.
153 void CImplementationClass16::ConstructL()
154 // Intended Usage : Safely complete the initialization of the constructed object
155 // Error Condition : Will leave with an appropriate error code
156 // Dependencies : CBase
158 // @pre CImplementationClass16 has been constructed
159 // @post The CImplementationClass16 object has been fully instantiated
164 void CImplementationClass16::DoMethodL()
168 // Provide the CActive overloads
169 void CImplementationClass16::RunL()
171 // Do nothing : should never be called
172 __ASSERT_DEBUG(EFalse,User::Invariant());
175 void CImplementationClass16::DoCancel()
180 TInt CImplementationClass16::RunError(TInt /*aError*/)
185 TUid CImplementationClass16::ImplId()
187 TUid idVal = {0x10009E4A};
191 // __________________________________________________________________________
192 // Exported proxy for instantiation method resolution
193 // Define the interface UIDs
194 const TImplementationProxy ImplementationTable[] =
196 IMPLEMENTATION_PROXY_ENTRY(0x10009DDC, CImplementationClass16::NewL)
199 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
201 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
202 return ImplementationTable;