Update contrib.
1 // Copyright (c) 2006-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 // A simple ECOM interface for testing purpose.
23 #ifndef __EXAMPLENINE_H__
24 #define __EXAMPLENINE_H__
26 #include <ecom/ecom.h>
28 const TUid KRogueInterfaceUid = {0x00001001};
29 const TInt32 KRogueImplUidValue = 0x10009DC3;
30 const TUid KRogueImplUid = {KRogueImplUidValue};
32 /** A dummy plugin for testing purpose */
33 NONSHARABLE_CLASS(CRoguePlugin) : public CBase
36 static CRoguePlugin* NewL(TAny*);
37 virtual ~CRoguePlugin();
39 // a virtual function to test this interface
40 virtual TUid InterfaceUid();
49 #endif // __EXAMPLENINE_H__