1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/syslibsapitest/syslibssvs/ecom/TestPlugin/Inc/TestEComInterface1.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,117 @@
1.4 +/*
1.5 +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +#if (!defined __TEST_ECOM_INTERFACE1_H__)
1.24 +#define __TEST_ECOM_INTERFACE1_H__
1.25 +
1.26 +#include "TestEComInterface.h"
1.27 +
1.28 +#define CTestEComInterface1_UID 0x2000371F
1.29 +
1.30 +// ____________________________________________________________________________
1.31 +//
1.32 +/**
1.33 + @internalComponent
1.34 + Intended usage: This class implements the functionality promised by
1.35 + the CTestEComInterface defintion class. It does little apart from provides a test instance
1.36 + which may be retrieved and run for testing purposes.
1.37 + Its resolution is based upon its registered default data string.
1.38 + @since 7.0
1.39 + */
1.40 +class CTestEComInterface1 : public CTestEComInterface
1.41 +{
1.42 +// Methods
1.43 +public:
1.44 +/**
1.45 + @fn NewL(TAny* aInitParams)
1.46 + Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
1.47 + Error Condition : Leaves with error code.
1.48 + @leave KErrNoMemory.
1.49 + @since 7.0
1.50 + @return CTestEComInterface1* The class instance.
1.51 + @pre None
1.52 + @post CTestEComInterface1 has been constructed,
1.53 + and initialised.
1.54 + */
1.55 + static CTestEComInterface1* NewL();
1.56 +
1.57 +/**
1.58 + @fn ~CTestEComInterface1()
1.59 + Intended Usage : Default Destructor
1.60 + Error Condition : None
1.61 + @since 7.0
1.62 + @pre CTestEComInterface1 has been constructed
1.63 + @post CTestEComInterface1 has been completely destroyed.
1.64 + */
1.65 + virtual ~CTestEComInterface1();
1.66 +
1.67 +/**
1.68 + @fn DoMethod1L()
1.69 + Intended Usage : Overload of the pure interface method
1.70 + Representative of a method provided on
1.71 + the interface by the interface definer.
1.72 + Error Condition : Leaves with an error code.
1.73 + @leave KErrNoMemory, KErrNotSupported.
1.74 + @since 7.0
1.75 + @return None
1.76 + @pre CTestEComInterface1 has been constructed
1.77 + @post Unspecified
1.78 + */
1.79 + void DoMethod1L();
1.80 +
1.81 +/**
1.82 + @fn DoMethod2L()
1.83 + Intended Usage : Overload of the pure interface method
1.84 + Representative of a method provided on
1.85 + the interface by the interface definer.
1.86 + Error Condition : Leaves with an error code.
1.87 + @leave KErrNoMemory, KErrNotSupported.
1.88 + @since 7.0
1.89 + @return Number of calls to DoMethod1L()
1.90 + @pre CTestEComInterface1 has been constructed
1.91 + @post Unspecified
1.92 + */
1.93 + TInt DoMethod2L();
1.94 +
1.95 +private:
1.96 +/**
1.97 + @fn CTestEComInterface1()
1.98 + Intended Usage : Default Constructor : usable only by derived classes
1.99 + Error Condition : None
1.100 + @since 7.0
1.101 + @pre None
1.102 + @post CTestEComInterface1 has been constructed
1.103 + */
1.104 + CTestEComInterface1();
1.105 +
1.106 +/**
1.107 + @fn ConstructL(TAny* aInitParams)
1.108 + Intended Usage : Completes the safe construction of the CTestEComInterface1 object
1.109 + Error Condition : Leaves with the error code.
1.110 + @leave KErrNoMemory.
1.111 + @since 7.0
1.112 + @pre CTestEComInterface1 has been constructed
1.113 + @post CTestEComInterface1 has been fully initialised.
1.114 + */
1.115 + void ConstructL();
1.116 +
1.117 +private:
1.118 + TInt iDoMethodL1Calls;
1.119 +}; // End of CTestEComInterface1 definition
1.120 +#endif /* __TEST_ECOM_INTERFACE_H__ */