equal
deleted
inserted
replaced
168 mutable CEmailMultipart* iContent; |
168 mutable CEmailMultipart* iContent; |
169 RPointerArray<CEmailAttachment> iAttachments; |
169 RPointerArray<CEmailAttachment> iAttachments; |
170 TDataOwner iOwner; |
170 TDataOwner iOwner; |
171 |
171 |
172 }; |
172 }; |
|
173 //Class for compare email content type |
|
174 class TContentType |
|
175 { |
|
176 public: |
|
177 TContentType( const TDesC& aContentType ); |
|
178 // Returns ETrue iff the content type represented by this object |
|
179 // (after parameters have been removed) is equal to the given content type. |
|
180 TBool Equals( const TDesC& aContentType ); |
|
181 |
|
182 private: |
|
183 // Content type (without parameters) |
|
184 TPtrC iContentType; |
|
185 }; |
|
186 |
173 |
187 |
174 #endif // EMAILMESSAGE_H |
188 #endif // EMAILMESSAGE_H |
175 |
189 |
176 // End of file |
190 // End of file |