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: #ifndef CINTERFACEIMPL_H sl@0: #define CINTERFACEIMPL_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: #include "Interface.h" sl@0: sl@0: // CLASS DECLARATION sl@0: sl@0: class CInterfaceImpl : public CExampleInterface sl@0: { sl@0: public: // Constructors and destructor sl@0: sl@0: /** sl@0: * Two-phased constructor. sl@0: * @return A new instance of this class. sl@0: */ sl@0: static CInterfaceImpl* NewL(TAny* aConstructionParams); sl@0: sl@0: /** sl@0: * Destructor. sl@0: */ sl@0: virtual ~CInterfaceImpl(); sl@0: void DoMethodL(); sl@0: TInt FireAndForget(); sl@0: TUid ImplId(); sl@0: sl@0: public: // New functions sl@0: sl@0: TInt Version() const; sl@0: sl@0: protected: sl@0: sl@0: /** sl@0: * C++ default constructor. sl@0: */ sl@0: CInterfaceImpl(); sl@0: sl@0: private: sl@0: sl@0: // By default, prohibit copy constructor sl@0: CInterfaceImpl( const CInterfaceImpl& ); sl@0: // Prohibit assigment operator sl@0: CInterfaceImpl& operator= ( const CInterfaceImpl& ); sl@0: sl@0: void RunL(); sl@0: void DoCancel(); sl@0: TInt RunError(TInt aError); sl@0: sl@0: }; sl@0: sl@0: #endif // CINTERFACEIMPL_H sl@0: sl@0: // End of File