lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/MultipleImageExampleInterface.h
equal
deleted
inserted
replaced
|
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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __MULTIPLEIMAGEEXAMPLEINTERFACE_H__ |
|
17 #define __MULTIPLEIMAGEEXAMPLEINTERFACE_H__ |
|
18 |
|
19 #include <e32base.h> |
|
20 #include <Ecom/ECom.h> |
|
21 |
|
22 /** |
|
23 Test interface used in ECOM Multiple Image tests |
|
24 @internalComponent |
|
25 */ |
|
26 class CMultipleImageInterface1 : public CBase |
|
27 { |
|
28 public: |
|
29 static CMultipleImageInterface1* NewL(); |
|
30 virtual ~CMultipleImageInterface1(); |
|
31 virtual TUid ImplId() = 0; |
|
32 |
|
33 protected: |
|
34 inline CMultipleImageInterface1(); |
|
35 |
|
36 private: |
|
37 TUid iDtor_ID_Key; |
|
38 }; |
|
39 |
|
40 |
|
41 #include "MultipleImageExampleInterface.inl" |
|
42 |
|
43 #endif//__MULTIPLEIMAGEEXAMPLEINTERFACE_H__ |
|
44 |