meetingrequest/mrgui/inc/esmrvcalexport.h
branchRCL_3
changeset 12 4ce476e64c59
parent 11 0396474f30f5
child 13 8592a65ad3fb
--- a/meetingrequest/mrgui/inc/esmrvcalexport.h	Mon Mar 15 12:39:10 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,70 +0,0 @@
-/*
-* 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:  VCal exporter for send ui wrapper
-*
-*/
-
-
-#ifndef TESMRVCALEXPORT_H
-#define TESMRVCALEXPORT_H
-
-//  INCLUDES
-#include <e32base.h>
-#include <f32file.h> // for TParse
-
-// FORWARD DECLARATIONS
-class CCalSession;
-class CCalEntry;
-
-
-// CLASS DECLARATION
-
-/**
- *  Exports Agenda entry to VCalendar data
- *
- */
-NONSHARABLE_CLASS( TESMRVCalExport )
-    {
-public:  // Constructors and destructor
-    /**
-     * C++ default constructor.
-     */
-    TESMRVCalExport(CCalSession& aCalSession, RFs& aFileServerSession);
-
-public: // New functions
-    /**
-     * Exports CCalEntry into VCalendar format
-     *
-     * @param aEntry - entry to be exported
-     * @return Descriptor that points to the exported data
-     */
-    HBufC8* ExportVCalLC(CCalEntry& aEntry);
-
-protected: // New functions
-    void ConvertVCalL(CBufFlat* aBuf, CCalEntry& aEntry);
-    void ConvertICalL(CBufFlat* aBuf, CCalEntry& aEntry);
-
-private:    // Data
-
-    // Ref: calendar session
-    CCalSession& iSession;
-
-    // Ref: file server session
-    RFs& iFs;
-    };
-
-#endif
-
-
-// End of File