1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/Example/examplefourteen.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,66 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// The definition of a class to be provided by ECom. Uses the CExampleInterface class as a base.
1.18 +//
1.19 +//
1.20 +
1.21 +/**
1.22 + @file
1.23 + @internalComponent
1.24 +*/
1.25 +
1.26 +#include "Interface.h"
1.27 +#include "ExampleResolver.h"
1.28 +#include "TestUtilities.h" // For __FILE__LINE__
1.29 +
1.30 +const TUid KImplUid = {0x10009E48};
1.31 +
1.32 +// ____________________________________________________________________________
1.33 +//
1.34 +/** Intended usage: This class implements the functionality promised by
1.35 + the CExampleInterface definition class. It does little apart from provides a test instance
1.36 + which may be retrieved and run for testing purposes.
1.37 + */
1.38 +class CImplementationClassFourteen : public CExampleInterface
1.39 +{
1.40 +// Methods
1.41 +public:
1.42 + static CImplementationClassFourteen* NewL(TAny* aInitParams);
1.43 +
1.44 + virtual ~CImplementationClassFourteen();
1.45 +
1.46 + void DoMethodL();
1.47 +
1.48 + TInt FireAndForget();
1.49 +
1.50 + TUid ImplId();
1.51 +
1.52 +private:
1.53 +
1.54 + CImplementationClassFourteen();
1.55 +
1.56 + void ConstructL(TAny* aInitParams);
1.57 +
1.58 +// Provide the CActive overloads
1.59 + void RunL();
1.60 + void DoCancel();
1.61 + TInt RunError(TInt aError);
1.62 +
1.63 +private:
1.64 +/** A place for allocating some memory in the ConstructL */
1.65 + HBufC* iInternalDescriptor;
1.66 +/** An int to be stored in TLS to test its usage */
1.67 + TInt iTLSInt;
1.68 +
1.69 +}; // End of CImplementationClassFourteen definition