diff -r 2b7283837edb -r 3104fc151679 uiservicetab/vimpstcmdprocess/inc/cvimpstcmdcall.h --- a/uiservicetab/vimpstcmdprocess/inc/cvimpstcmdcall.h Thu Aug 19 09:41:53 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,117 +0,0 @@ -/* -* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: IM Settings command object -* -*/ - - -#ifndef CVIMPSTCMDCALL_H -#define CVIMPSTCMDCALL_H - -// INCLUDES -#include -#include "mvimpstcmd.h" - -// CLASS DECLARATION - -class MVIMPSTProcessArray; - -/** - * IM Settings command object. - */ -NONSHARABLE_CLASS(CVIMPSTCmdCall) : public CBase, - public MVIMPSTCmd - { - public: // Construction and destruction - - /** - * Creates a new instance of this class. - * - * @param aCommandId Command id. - * @return A new instance of this class. - */ - static CVIMPSTCmdCall* NewL( - const TInt aCommandId, TInt& aIndex, - MVIMPSTProcessArray& mArrayProcess, - TInt aWindowGroup, - TUint32 aServiceId); - /** - * Destructor. - */ - ~CVIMPSTCmdCall(); - - public: // From MImCommand - /** - * see mvimpstcmd - */ - void ExecuteLD(); - - /** - * see mvimpstcmd - */ - void AddObserver( - MVIMPSTCmdObserver& aObserver ); - - /** - * see mvimpstcmd - */ - TInt CommandId() const; - /** - * see mvimpstcmd - */ - TInt Result() const; - - - - private: // Implementation - - /** - * symbian default constructor - */ - CVIMPSTCmdCall(const TInt aCommandId, TInt& aIndex, - MVIMPSTProcessArray& mArrayProcess, - TInt aWindowGroup, - TUint32 aServiceId); - /** - * symbian second phase constructor - */ - void ConstructL(); - - - private: // Data - - //Command id - const TInt iCommandId; - - //Doesnt own - MVIMPSTCmdObserver* iObserver; - - //Index of the list item chosen - TInt& iIndex; - - //Doesnt own - MVIMPSTProcessArray& iArrayProcess; - - //window group - TInt iWindowGroup; - - //Service Id - TUint32 iServiceId; - - - }; - -#endif // CVIMPSTCMDCALL_H - -// End of File