sl@0: // Copyright (c) 2007-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: // The definition of a class to be provided by ECom. Uses the CExampleInterface class as a base. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent sl@0: */ sl@0: sl@0: #include "Interface.h" sl@0: #include "ExampleResolver.h" sl@0: #include "TestUtilities.h" // For __FILE__LINE__ sl@0: sl@0: const TUid KImplUid = {0x10009E48}; sl@0: sl@0: // ____________________________________________________________________________ sl@0: // sl@0: /** Intended usage: This class implements the functionality promised by sl@0: the CExampleInterface definition class. It does little apart from provides a test instance sl@0: which may be retrieved and run for testing purposes. sl@0: */ sl@0: class CImplementationClassFourteen : public CExampleInterface sl@0: { sl@0: // Methods sl@0: public: sl@0: static CImplementationClassFourteen* NewL(TAny* aInitParams); sl@0: sl@0: virtual ~CImplementationClassFourteen(); sl@0: sl@0: void DoMethodL(); sl@0: sl@0: TInt FireAndForget(); sl@0: sl@0: TUid ImplId(); sl@0: sl@0: private: sl@0: sl@0: CImplementationClassFourteen(); sl@0: sl@0: void ConstructL(TAny* aInitParams); sl@0: sl@0: // Provide the CActive overloads sl@0: void RunL(); sl@0: void DoCancel(); sl@0: TInt RunError(TInt aError); sl@0: sl@0: private: sl@0: /** A place for allocating some memory in the ConstructL */ sl@0: HBufC* iInternalDescriptor; sl@0: /** An int to be stored in TLS to test its usage */ sl@0: TInt iTLSInt; sl@0: sl@0: }; // End of CImplementationClassFourteen definition