First public contribution.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The definition of a class to be provided by ECom. Uses the CExampleInterface class as a base.
23 #include "Interface.h"
24 #include "ExampleResolver.h"
25 #include "TestUtilities.h" // For __FILE__LINE__
27 const TUid KImplUid = {0x10009E48};
29 // ____________________________________________________________________________
31 /** Intended usage: This class implements the functionality promised by
32 the CExampleInterface definition class. It does little apart from provides a test instance
33 which may be retrieved and run for testing purposes.
35 class CImplementationClassFourteen : public CExampleInterface
39 static CImplementationClassFourteen* NewL(TAny* aInitParams);
41 virtual ~CImplementationClassFourteen();
51 CImplementationClassFourteen();
53 void ConstructL(TAny* aInitParams);
55 // Provide the CActive overloads
58 TInt RunError(TInt aError);
61 /** A place for allocating some memory in the ConstructL */
62 HBufC* iInternalDescriptor;
63 /** An int to be stored in TLS to test its usage */
66 }; // End of CImplementationClassFourteen definition