emailservices/emailframework/commonlib/inc/mmrorganizer.h
branchRCL_3
changeset 25 3533d4323edc
parent 0 8466d47a6819
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/emailservices/emailframework/commonlib/inc/mmrorganizer.h	Wed Sep 01 12:28:57 2010 +0100
@@ -0,0 +1,63 @@
+/*
+* Copyright (c)  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:  MR organizer definition
+*
+*/
+
+
+#ifndef M_MRINFOORGANIZER_H
+#define M_MRINFOORGANIZER_H
+
+#include <e32base.h>
+
+/**
+ * MMROrganizer defines meeting request organizer.
+ */
+class MMROrganizer
+    {
+public: // Destruction
+
+    /**
+     * Virtual destructor.
+     */
+    virtual ~MMROrganizer()  { }
+
+public: // Interface
+    /**
+     * Sets MR organizer email address.
+     * @param aAddress Email address.
+     */
+    virtual void SetAddressL(const TDesC& aAddress ) = 0;
+
+    /**
+     * Fetches MR organizer email address.
+     * @return MR Organzier email address. KNullDesC, if address is not set.
+     */     
+    virtual const TDesC& Address() const = 0;
+    
+    /**
+     * Sets MR organizer common name.
+     * @param aCommonName MR organizer common name.
+     */
+    virtual void SetCommonNameL(const TDesC& aCommonName) = 0; 
+    
+    /**
+     * Fetches MR Organizer common name.
+     * @return MR Organzer common name. KNullDesC, if common name is not set.
+     */
+    virtual const TDesC& CommonName() const = 0;
+    };
+
+
+#endif // M_MRINFOORGANIZER_H