Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #if (!defined __TEST_ECOM_INTERFACE2_H__)
21 #define __TEST_ECOM_INTERFACE2_H__
23 #include "TestEComInterface.h"
25 #define CTestEComInterface2_UID 0x20003724
27 // ____________________________________________________________________________
31 Intended usage: This class implements the functionality promised by
32 the CTestEComInterface defintion class. It does little apart from provides a test instance
33 which may be retrieved and run for testing purposes.
34 Its resolution is based upon its registered default data string.
37 class CTestEComInterface2 : public CTestEComInterface
42 @fn NewL(TAny* aInitParams)
43 Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
44 Error Condition : Leaves with error code.
47 @return CTestEComInterface2* The class instance.
49 @post CTestEComInterface2 has been constructed,
52 static CTestEComInterface2* NewL();
55 @fn ~CTestEComInterface2()
56 Intended Usage : Default Destructor
57 Error Condition : None
59 @pre CTestEComInterface2 has been constructed
60 @post CTestEComInterface2 has been completely destroyed.
62 virtual ~CTestEComInterface2();
66 Intended Usage : Overload of the pure interface method
67 Representative of a method provided on
68 the interface by the interface definer.
69 Error Condition : Leaves with an error code.
70 @leave KErrNoMemory, KErrNotSupported.
73 @pre CTestEComInterface2 has been constructed
80 Intended Usage : Overload of the pure interface method
81 Representative of a method provided on
82 the interface by the interface definer.
83 Error Condition : Leaves with an error code.
84 @leave KErrNoMemory, KErrNotSupported.
86 @return Number of calls to DoMethod1L()
87 @pre CTestEComInterfaceImplementation1 has been constructed
94 @fn CTestEComInterface2()
95 Intended Usage : Default Constructor : usable only by derived classes
96 Error Condition : None
99 @post CTestEComInterface2 has been constructed
101 CTestEComInterface2();
104 @fn ConstructL(TAny* aInitParams)
105 Intended Usage : Completes the safe construction of the CTestEComInterface2 object
106 Error Condition : Leaves with the error code.
109 @pre CTestEComInterface2 has been constructed
110 @post CTestEComInterface2 has been fully initialised.
115 TInt iDoMethodL1Calls;
116 }; // End of CTestEComInterface2 definition
117 #endif /* __TEST_ECOM_INTERFACE2_H__ */