sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#if (!defined __TEST_ECOM_INTERFACE1_H__)
|
sl@0
|
21 |
#define __TEST_ECOM_INTERFACE1_H__
|
sl@0
|
22 |
|
sl@0
|
23 |
#include "TestEComInterface.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
#define CTestEComInterface1_UID 0x2000371F
|
sl@0
|
26 |
|
sl@0
|
27 |
// ____________________________________________________________________________
|
sl@0
|
28 |
//
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
@internalComponent
|
sl@0
|
31 |
Intended usage: This class implements the functionality promised by
|
sl@0
|
32 |
the CTestEComInterface defintion 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 |
Its resolution is based upon its registered default data string.
|
sl@0
|
35 |
@since 7.0
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
class CTestEComInterface1 : public CTestEComInterface
|
sl@0
|
38 |
{
|
sl@0
|
39 |
// Methods
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
/**
|
sl@0
|
42 |
@fn NewL(TAny* aInitParams)
|
sl@0
|
43 |
Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
|
sl@0
|
44 |
Error Condition : Leaves with error code.
|
sl@0
|
45 |
@leave KErrNoMemory.
|
sl@0
|
46 |
@since 7.0
|
sl@0
|
47 |
@return CTestEComInterface1* The class instance.
|
sl@0
|
48 |
@pre None
|
sl@0
|
49 |
@post CTestEComInterface1 has been constructed,
|
sl@0
|
50 |
and initialised.
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
static CTestEComInterface1* NewL();
|
sl@0
|
53 |
|
sl@0
|
54 |
/**
|
sl@0
|
55 |
@fn ~CTestEComInterface1()
|
sl@0
|
56 |
Intended Usage : Default Destructor
|
sl@0
|
57 |
Error Condition : None
|
sl@0
|
58 |
@since 7.0
|
sl@0
|
59 |
@pre CTestEComInterface1 has been constructed
|
sl@0
|
60 |
@post CTestEComInterface1 has been completely destroyed.
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
virtual ~CTestEComInterface1();
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
@fn DoMethod1L()
|
sl@0
|
66 |
Intended Usage : Overload of the pure interface method
|
sl@0
|
67 |
Representative of a method provided on
|
sl@0
|
68 |
the interface by the interface definer.
|
sl@0
|
69 |
Error Condition : Leaves with an error code.
|
sl@0
|
70 |
@leave KErrNoMemory, KErrNotSupported.
|
sl@0
|
71 |
@since 7.0
|
sl@0
|
72 |
@return None
|
sl@0
|
73 |
@pre CTestEComInterface1 has been constructed
|
sl@0
|
74 |
@post Unspecified
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
void DoMethod1L();
|
sl@0
|
77 |
|
sl@0
|
78 |
/**
|
sl@0
|
79 |
@fn DoMethod2L()
|
sl@0
|
80 |
Intended Usage : Overload of the pure interface method
|
sl@0
|
81 |
Representative of a method provided on
|
sl@0
|
82 |
the interface by the interface definer.
|
sl@0
|
83 |
Error Condition : Leaves with an error code.
|
sl@0
|
84 |
@leave KErrNoMemory, KErrNotSupported.
|
sl@0
|
85 |
@since 7.0
|
sl@0
|
86 |
@return Number of calls to DoMethod1L()
|
sl@0
|
87 |
@pre CTestEComInterface1 has been constructed
|
sl@0
|
88 |
@post Unspecified
|
sl@0
|
89 |
*/
|
sl@0
|
90 |
TInt DoMethod2L();
|
sl@0
|
91 |
|
sl@0
|
92 |
private:
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
@fn CTestEComInterface1()
|
sl@0
|
95 |
Intended Usage : Default Constructor : usable only by derived classes
|
sl@0
|
96 |
Error Condition : None
|
sl@0
|
97 |
@since 7.0
|
sl@0
|
98 |
@pre None
|
sl@0
|
99 |
@post CTestEComInterface1 has been constructed
|
sl@0
|
100 |
*/
|
sl@0
|
101 |
CTestEComInterface1();
|
sl@0
|
102 |
|
sl@0
|
103 |
/**
|
sl@0
|
104 |
@fn ConstructL(TAny* aInitParams)
|
sl@0
|
105 |
Intended Usage : Completes the safe construction of the CTestEComInterface1 object
|
sl@0
|
106 |
Error Condition : Leaves with the error code.
|
sl@0
|
107 |
@leave KErrNoMemory.
|
sl@0
|
108 |
@since 7.0
|
sl@0
|
109 |
@pre CTestEComInterface1 has been constructed
|
sl@0
|
110 |
@post CTestEComInterface1 has been fully initialised.
|
sl@0
|
111 |
*/
|
sl@0
|
112 |
void ConstructL();
|
sl@0
|
113 |
|
sl@0
|
114 |
private:
|
sl@0
|
115 |
TInt iDoMethodL1Calls;
|
sl@0
|
116 |
}; // End of CTestEComInterface1 definition
|
sl@0
|
117 |
#endif /* __TEST_ECOM_INTERFACE_H__ */
|