os/ossrv/lowlevellibsandfws/pluginfw/Framework/T_PlatSecECom/T_PlatSecInterface.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-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 __T_PLATSECINTERFACE_H__
    17 #define __T_PLATSECINTERFACE_H__
    18 
    19 #include <e32base.h>
    20 #include <ecom/ecom.h>
    21 
    22 /**
    23 Test interface used in PlatSec ECOM tests
    24 @internalComponent
    25 */
    26 class CPlatSecInterface1 : public CBase
    27 {
    28 public:
    29 	static CPlatSecInterface1* NewL();
    30 	virtual ~CPlatSecInterface1();
    31 	virtual TUid ImplId() = 0;
    32 
    33 protected:
    34 	inline CPlatSecInterface1();
    35 
    36 private:
    37 	TUid iDtor_ID_Key;
    38 };
    39 
    40 /**
    41 Test interface used in PlatSec ECOM tests
    42 @internalComponent
    43 */
    44 class CPlatSecInterface2: public CBase
    45 {
    46 public:
    47 	static CPlatSecInterface2* NewL();
    48 	virtual ~CPlatSecInterface2();
    49 	virtual TUid ImplId() = 0;
    50 
    51 protected:
    52 	inline CPlatSecInterface2();
    53 
    54 private:
    55 	TUid iDtor_ID_Key;
    56 };
    57 
    58 /**
    59 Test interface used in PlatSec ECOM tests
    60 @internalComponent
    61 */
    62 class CPlatSecInterface3: public CBase
    63 {
    64 public:
    65 	static CPlatSecInterface3* NewL();
    66 	virtual ~CPlatSecInterface3();
    67 	virtual TUid ImplId() = 0;
    68 
    69 protected:
    70 	inline CPlatSecInterface3();
    71 
    72 private:
    73 	TUid iDtor_ID_Key;
    74 };
    75 
    76 /**
    77 Test interface used in PlatSec ECOM tests
    78 @internalComponent
    79 */
    80 class CPlatSecInterface4: public CBase
    81 {
    82 public:
    83 	static CPlatSecInterface4* NewL();
    84 	virtual ~CPlatSecInterface4();
    85 	virtual TUid ImplId() = 0;
    86 
    87 protected:
    88 	inline CPlatSecInterface4();
    89 
    90 private:
    91 	TUid iDtor_ID_Key;
    92 };
    93 #include "T_PlatSecInterface.inl"
    94 
    95 #endif//__T_PLATSECINTERFACE_H__
    96