meetingrequest/mricalviewer/src/cesmricalviewercanviewmr.cpp
changeset 0 8466d47a6819
child 8 e1b6206813b4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/meetingrequest/mricalviewer/src/cesmricalviewercanviewmr.cpp	Thu Dec 17 08:39:21 2009 +0200
@@ -0,0 +1,112 @@
+/*
+* Copyright (c) 2007-2009 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:  ESMR command base class implementation
+*
+*/
+
+
+// INCLUDE FILES
+#include "emailtrace.h"
+#include "cesmricalviewercanviewmr.h"
+//<cmail>
+#include "esmricalvieweropcodes.hrh"
+#include "CFSMailCommon.h"
+#include "CFSMailMessage.h"
+//</cmail>
+
+// ======== MEMBER FUNCTIONS ========
+
+// -----------------------------------------------------------------------------
+// CESMRIcalViewerCanViewMsgCmd::CESMRIcalViewerCanViewMsgCmd
+// -----------------------------------------------------------------------------
+//
+CESMRIcalViewerCanViewMsgCmd::CESMRIcalViewerCanViewMsgCmd(
+        CCalSession& aCalSession,
+        TBool& aFlag )
+:   CESMRIcalViewerCommandBase( EESMRCanViewMR, aCalSession ),
+    iFlag( aFlag )
+    {
+    FUNC_LOG;
+    //do nothing
+    }
+
+// -----------------------------------------------------------------------------
+// CESMRIcalViewerCanViewMsgCmd::CESMRIcalViewerCanViewMsgCmd
+// -----------------------------------------------------------------------------
+//
+CESMRIcalViewerCanViewMsgCmd::~CESMRIcalViewerCanViewMsgCmd()
+    {
+    FUNC_LOG;
+    CancelCommand();
+    }
+
+// -----------------------------------------------------------------------------
+// CESMRIcalViewerCanViewMsgCmd::CESMRIcalViewerCanViewMsgCmd
+// -----------------------------------------------------------------------------
+//
+CESMRIcalViewerCanViewMsgCmd* CESMRIcalViewerCanViewMsgCmd::NewL(
+            CCalSession& aCalSession,
+            TBool& aFlag )
+    {
+    FUNC_LOG;
+    CESMRIcalViewerCanViewMsgCmd* self =
+            new (ELeave) CESMRIcalViewerCanViewMsgCmd(
+                    aCalSession,
+                    aFlag );
+
+    CleanupStack::PushL( self );
+    self->ConstructL();
+    CleanupStack::Pop( self );
+    return self;
+    }
+
+// -----------------------------------------------------------------------------
+// CESMRIcalViewerCanViewMsgCmd::CESMRIcalViewerCanViewMsgCmd
+// -----------------------------------------------------------------------------
+//
+void CESMRIcalViewerCanViewMsgCmd::ConstructL()
+    {
+    FUNC_LOG;
+    //do nothing
+    }
+
+// -----------------------------------------------------------------------------
+// CESMRIcalViewerCanViewMsgCmd::CESMRIcalViewerCanViewMsgCmd
+// -----------------------------------------------------------------------------
+//
+void CESMRIcalViewerCanViewMsgCmd::ExecuteCommandL(
+        CFSMailMessage& aMessage,
+        MESMRIcalViewerObserver& aObserver )
+    {
+    FUNC_LOG;
+    iFlag = aMessage.IsFlagSet( EFSMsgFlag_CalendarMsg );
+
+    iResult.iOpType = OperationType();
+    iResult.iResultCode = KErrNone;
+    iResult.iMessage = &aMessage;
+
+    aObserver.OperationCompleted( iResult );
+    }
+
+// -----------------------------------------------------------------------------
+// CESMRIcalViewerCanViewMsgCmd::CESMRIcalViewerCanViewMsgCmd
+// -----------------------------------------------------------------------------
+//
+void CESMRIcalViewerCanViewMsgCmd::CancelCommand()
+    {
+    FUNC_LOG;
+    //do nothing
+    }
+
+