8a068ae7ba3b509e116d23dc274481ee7a85ed73
[framework/web/wrt-plugins-common.git] / src / modules / API / Messaging / IMessagingTypes.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  *
18  *
19  * @file       IMessagingTypes.h
20  * @author     Pawel Misiak (p.misiak@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24 #ifndef IMESSAGINGTYPES_H
25 #define IMESSAGINGTYPES_H
26
27 namespace WrtDeviceApis {
28 namespace Messaging {
29 namespace Api {
30 //--------------------------------------------------------------------------
31
32 enum MessageType
33 {
34     SMS,
35     BINARYSMS,
36     MMS,
37     EMAIL,
38     VIRTUAL_MESSAGE,
39     MESSAGETYPE_COUNT
40 };
41
42 //--------------------------------------------------------------------------
43
44 enum FolderType
45 {
46     INBOX,
47     OUTBOX,
48     SENTBOX,
49     DRAFTBOX,
50     SPAMBOX,
51     ALL_FOLDERS,
52     USERDEFINED_FOLDER,
53     FOLDERTYPE_COUNT
54 };
55
56 //--------------------------------------------------------------------------
57
58 enum AddressType
59 {
60     TO_ADDRESS,
61     CC_ADDRESS,
62     BCC_ADDRESS,
63     ADDRESS_COUNT
64 };
65 }
66 }
67
68 }
69 #endif