sl@0
|
1 |
// Copyright (c) 2007-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 |
// The definition of a class to be provided by ECom. Uses the CExampleInterface class as a base.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@internalComponent
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#include "Interface.h"
|
sl@0
|
24 |
#include "ExampleResolver.h"
|
sl@0
|
25 |
#include "TestUtilities.h" // For __FILE__LINE__
|
sl@0
|
26 |
|
sl@0
|
27 |
const TUid KImplUid = {0x10009E48};
|
sl@0
|
28 |
|
sl@0
|
29 |
// ____________________________________________________________________________
|
sl@0
|
30 |
//
|
sl@0
|
31 |
/** Intended usage: This class implements the functionality promised by
|
sl@0
|
32 |
the CExampleInterface definition class. It does little apart from provides a test instance
|
sl@0
|
33 |
which may be retrieved and run for testing purposes.
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
class CImplementationClassFourteen : public CExampleInterface
|
sl@0
|
36 |
{
|
sl@0
|
37 |
// Methods
|
sl@0
|
38 |
public:
|
sl@0
|
39 |
static CImplementationClassFourteen* NewL(TAny* aInitParams);
|
sl@0
|
40 |
|
sl@0
|
41 |
virtual ~CImplementationClassFourteen();
|
sl@0
|
42 |
|
sl@0
|
43 |
void DoMethodL();
|
sl@0
|
44 |
|
sl@0
|
45 |
TInt FireAndForget();
|
sl@0
|
46 |
|
sl@0
|
47 |
TUid ImplId();
|
sl@0
|
48 |
|
sl@0
|
49 |
private:
|
sl@0
|
50 |
|
sl@0
|
51 |
CImplementationClassFourteen();
|
sl@0
|
52 |
|
sl@0
|
53 |
void ConstructL(TAny* aInitParams);
|
sl@0
|
54 |
|
sl@0
|
55 |
// Provide the CActive overloads
|
sl@0
|
56 |
void RunL();
|
sl@0
|
57 |
void DoCancel();
|
sl@0
|
58 |
TInt RunError(TInt aError);
|
sl@0
|
59 |
|
sl@0
|
60 |
private:
|
sl@0
|
61 |
/** A place for allocating some memory in the ConstructL */
|
sl@0
|
62 |
HBufC* iInternalDescriptor;
|
sl@0
|
63 |
/** An int to be stored in TLS to test its usage */
|
sl@0
|
64 |
TInt iTLSInt;
|
sl@0
|
65 |
|
sl@0
|
66 |
}; // End of CImplementationClassFourteen definition
|