emailservices/emailclientapi/inc/emailattachment.h
branchRCL_3
changeset 24 d189ee25cf9d
parent 8 e1b6206813b4
child 25 3533d4323edc
--- a/emailservices/emailclientapi/inc/emailattachment.h	Thu Aug 19 09:38:05 2010 +0300
+++ b/emailservices/emailclientapi/inc/emailattachment.h	Tue Aug 31 15:04:17 2010 +0300
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
+* Copyright (c) 2010 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"
@@ -23,7 +23,7 @@
 #include <e32std.h>
 #include <e32base.h>
 
-#include "cfsmailclient.h"
+#include "CFSMailClient.h"
 #include <memailcontent.h>
 #include "emailapiutils.h"
 
@@ -66,72 +66,72 @@
         const TDataOwner aOwner );    
 
 public: // from MEmailInterface
-    virtual TEmailTypeId InterfaceId() const;
+    TEmailTypeId InterfaceId() const;
     
-    virtual void Release();
+    void Release();
 
 public: // from MEmailAttachment
     /**
     * Returns file handle of this attachment. If the attachment is
     * not associated with a file, null file handle is returned.
     */
-    virtual RFile FileL() const;
+    RFile FileL() const;
 
     /**
     * Sets file name field
     */
-    virtual void SetFileNameL( const TDesC& aFileName );
+    void SetFileNameL( const TDesC& aFileName );
 
     /**
     * Returns file name or null pointer descriptor if attachment
     * is not associated with any file
     */
-    virtual TPtrC FileNameL() const;
+    TPtrC FileNameL() const;
     
     
 public: // from MEmailMessageContent
     
-    virtual TMessageContentId Id() const;
+    TMessageContentId Id() const;
 
-    virtual TPtrC ContentType() const;
+    TPtrC ContentType() const;
 
-    virtual void SetContentType( const TDesC& aContentType );
+    void SetContentType( const TDesC& aContentType );
 
-    virtual TPtrC ContentId() const;
+    TPtrC ContentId() const;
 
-    virtual void SetContentId( const TDesC& aContentId );
+    void SetContentId( const TDesC& aContentId );
 
-    virtual TPtrC ContentDescription() const;
+    TPtrC ContentDescription() const;
 
-    virtual void SetContentDescription( const TDesC& aContentDescription );
+    void SetContentDescription( const TDesC& aContentDescription );
 
-    virtual TPtrC ContentDisposition() const;
+    TPtrC ContentDisposition() const;
 
-    virtual void SetContentDisposition( const TDesC& aContentDisposition );
+    void SetContentDisposition( const TDesC& aContentDisposition );
 
-    virtual TPtrC ContentClass() const;
+    TPtrC ContentClass() const;
 
-    virtual void SetContentClass( const TDesC& aContentClass );
+    void SetContentClass( const TDesC& aContentClass );
 
-    virtual TInt AvailableSize() const;
+    TInt AvailableSize() const;
 
-    virtual TInt TotalSize() const;
+    TInt TotalSize() const;
 
-    virtual TPtrC ContentL() const;
+    TPtrC ContentL() const;
 
-    virtual void SetContentL( const TDesC& aContent );
+    void SetContentL( const TDesC& aContent );
 
-    virtual void FetchL( MEmailFetchObserver& aObserver );
+    void FetchL( MEmailFetchObserver& aObserver );
 
-    virtual void CancelFetch();
+    void CancelFetch();
 
-    virtual void SaveToFileL( const TDesC& aPath );
+    void SaveToFileL( const TDesC& aPath );
 
-    virtual MEmailMultipart* AsMultipartOrNull() const;
+    MEmailMultipart* AsMultipartOrNull() const;
     
-    virtual MEmailTextContent* AsTextContentOrNull() const;
+    MEmailTextContent* AsTextContentOrNull() const;
 
-    virtual MEmailAttachment* AsAttachmentOrNull() const;
+    MEmailAttachment* AsAttachmentOrNull() const;
     
 private:
 
@@ -158,3 +158,5 @@
     };
 
 #endif // EMAILATTACHMENT_H
+
+// End of file