messagingappbase/smsmtm/clientmtm/inc/csmssendmessageoperation.h
changeset 25 84d9eb65b26f
parent 23 238255e8b033
child 27 e4592d119491
child 37 518b245aa84c
child 79 2981cb3aa489
equal deleted inserted replaced
23:238255e8b033 25:84d9eb65b26f
     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 
       
    17 #ifndef __CSMSSENDMESSAGEOPERATION_H__
       
    18 #define __CSMSSENDMESSAGEOPERATION_H__
       
    19 
       
    20 
       
    21 #include <msvapi.h>
       
    22 
       
    23 /**
       
    24 Encapsulates the parameters to schedule the sms send operation.
       
    25 
       
    26 @publishedAll
       
    27 @released
       
    28 */
       
    29 NONSHARABLE_CLASS (CSmsSendMessageOperation) : public CMsvSendOperation
       
    30 	{
       
    31 public:
       
    32 	static CSmsSendMessageOperation* NewL(CMsvSession& aMsvSession, 
       
    33 									   	  const CMsvEntrySelection& aSelection, 
       
    34 									   	  const TDesC8& aParameter, 
       
    35 									   	  TRequestStatus& aObserverRequestStatus);
       
    36 private:		
       
    37 	void ConstructL(const CMsvEntrySelection& aSelection, const TDesC8& aParameter);
       
    38 	CSmsSendMessageOperation(CMsvSession& aMsvSession, TRequestStatus& aObserverRequestStatus);
       
    39 	// from CMsvSendOperation		
       
    40 	virtual const TDesC8& TranslateProgress(const TDesC8& aProgress);
       
    41 	};
       
    42 
       
    43 
       
    44 #endif // __CSMSSENDMESSAGEOPERATION_H__
       
    45