diff options
Diffstat (limited to 'mobile_src/Messaging/ScopedMailAttachment.h')
-rw-r--r-- | mobile_src/Messaging/ScopedMailAttachment.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/mobile_src/Messaging/ScopedMailAttachment.h b/mobile_src/Messaging/ScopedMailAttachment.h new file mode 100644 index 0000000..622fbdd --- /dev/null +++ b/mobile_src/Messaging/ScopedMailAttachment.h @@ -0,0 +1,55 @@ +// +// Tizen Web Device API +// Copyright (c) 2012 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the License); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +#ifndef TIZEN_MESSAGING_SCOPEDMAILATTACHMENT_H_ +#define TIZEN_MESSAGING_SCOPEDMAILATTACHMENT_H_ + +#include <dpl/scoped_ptr.h> +#include <email-types.h> +#include <email-api-mail.h> +#include <Logger.h> + +namespace DeviceAPI { +namespace Messaging { + +struct ScopedMailAttachmentPolicy +{ + typedef email_attachment_data_t* Type; + + static Type NullValue() + { + LoggerD("NullValue"); + return NULL; + } + + static void Destroy(Type attachment) + { + LoggerD("Destroy"); + if (NullValue() != attachment) { + LoggerD("email_free_attachment_info"); + int error = email_free_attachment_info(&attachment); + if (EMAIL_ERROR_NONE != error) { + LoggerE("Failed to destroy mail Attachment: " << error); + } + } + } +}; + +typedef DPL::ScopedPtr<email_attachment_data_t, ScopedMailAttachmentPolicy> ScopedMailAttachment; +} +} +#endif //TIZEN_MESSAGING_SCOPEDMAILATTACHMENT_H_
\ No newline at end of file |