Update contrib.
1 // Copyright (c) 2005-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.
16 #ifndef CINTERFACEIMPL_H
17 #define CINTERFACEIMPL_H
21 #include "Interface.h"
25 class CInterfaceImpl : public CExampleInterface
27 public: // Constructors and destructor
30 * Two-phased constructor.
31 * @return A new instance of this class.
33 static CInterfaceImpl* NewL(TAny* aConstructionParams);
38 virtual ~CInterfaceImpl();
43 public: // New functions
50 * C++ default constructor.
56 // By default, prohibit copy constructor
57 CInterfaceImpl( const CInterfaceImpl& );
58 // Prohibit assigment operator
59 CInterfaceImpl& operator= ( const CInterfaceImpl& );
63 TInt RunError(TInt aError);
67 #endif // CINTERFACEIMPL_H