sl@0: /* sl@0: * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #if (!defined __TEST_ECOM_INTERFACE1_H__) sl@0: #define __TEST_ECOM_INTERFACE1_H__ sl@0: sl@0: #include "TestEComInterface.h" sl@0: sl@0: #define CTestEComInterface1_UID 0x2000371F sl@0: sl@0: // ____________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Intended usage: This class implements the functionality promised by sl@0: the CTestEComInterface defintion class. It does little apart from provides a test instance sl@0: which may be retrieved and run for testing purposes. sl@0: Its resolution is based upon its registered default data string. sl@0: @since 7.0 sl@0: */ sl@0: class CTestEComInterface1 : public CTestEComInterface sl@0: { sl@0: // Methods sl@0: public: sl@0: /** sl@0: @fn NewL(TAny* aInitParams) sl@0: Intended Usage : Standardised safe construction which leaves nothing the cleanup stack. sl@0: Error Condition : Leaves with error code. sl@0: @leave KErrNoMemory. sl@0: @since 7.0 sl@0: @return CTestEComInterface1* The class instance. sl@0: @pre None sl@0: @post CTestEComInterface1 has been constructed, sl@0: and initialised. sl@0: */ sl@0: static CTestEComInterface1* NewL(); sl@0: sl@0: /** sl@0: @fn ~CTestEComInterface1() sl@0: Intended Usage : Default Destructor sl@0: Error Condition : None sl@0: @since 7.0 sl@0: @pre CTestEComInterface1 has been constructed sl@0: @post CTestEComInterface1 has been completely destroyed. sl@0: */ sl@0: virtual ~CTestEComInterface1(); sl@0: sl@0: /** sl@0: @fn DoMethod1L() sl@0: Intended Usage : Overload of the pure interface method sl@0: Representative of a method provided on sl@0: the interface by the interface definer. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, KErrNotSupported. sl@0: @since 7.0 sl@0: @return None sl@0: @pre CTestEComInterface1 has been constructed sl@0: @post Unspecified sl@0: */ sl@0: void DoMethod1L(); sl@0: sl@0: /** sl@0: @fn DoMethod2L() sl@0: Intended Usage : Overload of the pure interface method sl@0: Representative of a method provided on sl@0: the interface by the interface definer. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, KErrNotSupported. sl@0: @since 7.0 sl@0: @return Number of calls to DoMethod1L() sl@0: @pre CTestEComInterface1 has been constructed sl@0: @post Unspecified sl@0: */ sl@0: TInt DoMethod2L(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CTestEComInterface1() sl@0: Intended Usage : Default Constructor : usable only by derived classes sl@0: Error Condition : None sl@0: @since 7.0 sl@0: @pre None sl@0: @post CTestEComInterface1 has been constructed sl@0: */ sl@0: CTestEComInterface1(); sl@0: sl@0: /** sl@0: @fn ConstructL(TAny* aInitParams) sl@0: Intended Usage : Completes the safe construction of the CTestEComInterface1 object sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory. sl@0: @since 7.0 sl@0: @pre CTestEComInterface1 has been constructed sl@0: @post CTestEComInterface1 has been fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: TInt iDoMethodL1Calls; sl@0: }; // End of CTestEComInterface1 definition sl@0: #endif /* __TEST_ECOM_INTERFACE_H__ */