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.
15 // The definition of some classes to be provided by ECom.
16 // 1. Using the CExampleInterface class as a base.
17 // 2. Example of how extended interfaces could work.
26 #include "Interface.h"
27 //#include "ImplementationProxy.h"
28 #include "TestUtilities.h" // For __FILE__LINE__
29 #include "ExtendedInterfaceImplementationProxy.h"
31 const TUid KImplUid1 = {0x10009E39};
32 const TUid KImplUid2 = {0x10009E3C};
33 const TUid KImplUid3 = {0x10009E3D};
35 // ____________________________________________________________________________
36 // Class CImplementationClassTwelve
39 Intended usage: This class implements the functionality promised by
40 the CExampleInterface and MExampleInterfaceExtended definition classes.
41 It does little apart from provides a test instance
42 which may be retrieved and run for testing purposes. This is an example of
43 how extended interface is implemented in the same class as the original and
44 how to get/release the extended interface which is implemented in different class.
46 class CImplementationClassTwelve : public CExampleInterface, public MExampleInterfaceExtended
50 static CImplementationClassTwelve* NewL(TAny* aInitParams);
51 virtual ~CImplementationClassTwelve();
55 virtual void DoMethodExtended(); //from MExampleInterfaceExtended
56 static TAny* GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& aBitFlags,TAny*& releaseObject);
57 static void ReleaseExtendedInterface(TAny* aObject,const TUid& aInterface);
59 CImplementationClassTwelve();
60 void ConstructL(TAny* aInitParams);
61 // Provide the CActive overloads
64 TInt RunError(TInt aError);
66 /** A place for allocating some memory in the ConstructL */
67 HBufC* iInternalDescriptor;
68 /** An int to be stored in TLS to test its useage */
70 /** Uid of the extended interface */
71 TUid iExtendedInterfaceUid;
72 }; // End of CImplementationClassTwelve definition
74 // ____________________________________________________________________________
75 // Class CImplementationClassTwelveExtended
78 Intended usage: This class implements the functionality promised by
79 the MExampleInterfaceExtended2 definition class. This is an extended interface of
80 CImplementationClassTwelve. This is a sample extended interface that is
81 separate from the main interface. This extended interface does nothing, but shows
82 how one can set up a separately instantiated extended interface.
84 class CImplementationClassTwelveExtended : public CBase, public MExampleInterfaceExtended2
88 static CImplementationClassTwelveExtended* NewL();
89 virtual ~CImplementationClassTwelveExtended();
90 virtual void DoMethodExtended2(); //from MExampleInterfaceExtended2
92 CImplementationClassTwelveExtended();
95 TUid iExtendedInterfaceUid;
96 }; // End of CImplementationClassTwelveExtended definition
98 // ____________________________________________________________________________
99 // Class CImplementationClassTwelveExtended2
102 Intended usage: This class implements the functionality promised by
103 the MExampleInterfaceExtended2 definition class. This is an extended interface of
104 CImplementationClassTwelve. It is the same as CImplementationClassTwelveExtended,
105 but just shows that it is possible to have multiple extended interfaces in one implementation.
107 class CImplementationClassTwelveExtended2 : public CBase, public MExampleInterfaceExtended2
111 static CImplementationClassTwelveExtended2* NewL();
112 virtual ~CImplementationClassTwelveExtended2();
113 virtual void DoMethodExtended2(); //from MExampleInterfaceExtended2
115 CImplementationClassTwelveExtended2();
118 TUid iExtendedInterfaceUid;
119 }; // End of CImplementationClassTwelveExtended2 definition
122 // ____________________________________________________________________________
123 // Class CImplementationClassTwelveBasic
126 This class implements the functionality promised by
127 the CExampleInterface definition class. It does little apart from provides a test instance
128 which may be retrieved and run for testing purposes. This is an example that no extended interface
129 is implemented in this class.
131 class CImplementationClassTwelveBasic : public CExampleInterface
135 static CImplementationClassTwelveBasic* NewL(TAny* aInitParams);
136 virtual ~CImplementationClassTwelveBasic();
138 TInt FireAndForget();
141 CImplementationClassTwelveBasic();
142 void ConstructL(TAny* aInitParams);
143 // Provide the CActive overloads
146 TInt RunError(TInt aError);
148 /** A place for allocating some memory in the ConstructL */
149 HBufC* iInternalDescriptor;
150 /** An int to be stored in TLS to test its usage */
153 }; // End of CImplementationClassTwelveBasic definition
155 // ____________________________________________________________________________
156 // Class CImplementationClassTwelve2
159 Intended usage: This class implements the functionality promised by
160 the CExampleInterface definition class. It does little apart from provides a test instance
161 which may be retrieved and run for testing purposes.This is an example of
162 how extended interface is implemented in the same class as the original
164 class CImplementationClassTwelve2 : public CExampleInterface, public MExampleInterfaceExtended
168 static CImplementationClassTwelve2* NewL(TAny* aInitParams);
169 virtual ~CImplementationClassTwelve2();
171 TInt FireAndForget();
173 static TAny* GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& aBitFlags,TAny*& releaseObject);
175 virtual void DoMethodExtended(); // From MExampleInterfaceExtended
177 CImplementationClassTwelve2();
178 void ConstructL(TAny* aInitParams);
179 // Provide the CActive overloads
182 TInt RunError(TInt aError);
184 /** A place for allocating some memory in the ConstructL */
185 HBufC* iInternalDescriptor;
186 /** An int to be stored in TLS to test its useage */
188 /** Uid of the extended interface */
189 TUid iExtendedInterfaceUid;
190 }; // End of CImplementationClassTwelve2 definition