sl@0: // Copyright (c) 2004-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 __T_PLATSECINTERFACE_H__ sl@0: #define __T_PLATSECINTERFACE_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: /** sl@0: Test interface used in PlatSec ECOM tests sl@0: @internalComponent sl@0: */ sl@0: class CPlatSecInterface1 : public CBase sl@0: { sl@0: public: sl@0: static CPlatSecInterface1* NewL(); sl@0: virtual ~CPlatSecInterface1(); sl@0: virtual TUid ImplId() = 0; sl@0: sl@0: protected: sl@0: inline CPlatSecInterface1(); sl@0: sl@0: private: sl@0: TUid iDtor_ID_Key; sl@0: }; sl@0: sl@0: /** sl@0: Test interface used in PlatSec ECOM tests sl@0: @internalComponent sl@0: */ sl@0: class CPlatSecInterface2: public CBase sl@0: { sl@0: public: sl@0: static CPlatSecInterface2* NewL(); sl@0: virtual ~CPlatSecInterface2(); sl@0: virtual TUid ImplId() = 0; sl@0: sl@0: protected: sl@0: inline CPlatSecInterface2(); sl@0: sl@0: private: sl@0: TUid iDtor_ID_Key; sl@0: }; sl@0: sl@0: /** sl@0: Test interface used in PlatSec ECOM tests sl@0: @internalComponent sl@0: */ sl@0: class CPlatSecInterface3: public CBase sl@0: { sl@0: public: sl@0: static CPlatSecInterface3* NewL(); sl@0: virtual ~CPlatSecInterface3(); sl@0: virtual TUid ImplId() = 0; sl@0: sl@0: protected: sl@0: inline CPlatSecInterface3(); sl@0: sl@0: private: sl@0: TUid iDtor_ID_Key; sl@0: }; sl@0: sl@0: /** sl@0: Test interface used in PlatSec ECOM tests sl@0: @internalComponent sl@0: */ sl@0: class CPlatSecInterface4: public CBase sl@0: { sl@0: public: sl@0: static CPlatSecInterface4* NewL(); sl@0: virtual ~CPlatSecInterface4(); sl@0: virtual TUid ImplId() = 0; sl@0: sl@0: protected: sl@0: inline CPlatSecInterface4(); sl@0: sl@0: private: sl@0: TUid iDtor_ID_Key; sl@0: }; sl@0: #include "T_PlatSecInterface.inl" sl@0: sl@0: #endif//__T_PLATSECINTERFACE_H__ sl@0: