Update change log and spec for wrt-plugins-tizen_0.2.73
[profile/ivi/wrt-plugins-tizen.git] / src / platform / Tizen / Messaging / BinarySms.cpp
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  *
20  *
21  * @file       BinarySms.cpp
22  * @author     Pawel Misiak (p.misiak@samsung.com)
23  * @version    0.1
24  * @brief
25  */
26 #include "BinarySms.h"
27 #include <dpl/log/log.h>
28
29 using namespace std;
30 using namespace TizenApis::Api::Messaging;
31
32 namespace TizenApis {
33 namespace Platform {
34 namespace Messaging {
35
36 BinarySms::BinarySms(const string& id) :
37     IMessage(BINARYSMS, id)
38 {
39     LogDebug("enter");
40
41     LogDebug("m_id=" << getIdRef());
42     LogDebug("m_msgType=" << getMessageType());
43 }
44
45 BinarySms::~BinarySms()
46 {
47     LogDebug("enter");
48 }
49
50 void BinarySms::update(bool /*draftsOnly*/)
51 {
52     LogDebug("updating m_id=" << getIdRef());
53 }
54
55 void BinarySms::readAllData()
56 {
57     //#warning "TODO"
58 }
59
60 void BinarySms::moveToFolder(const FolderType newFolder)
61 {
62     //#warning "TODO"
63 }
64
65 void BinarySms::moveToFolder(const string& newFolder)
66 {
67     //#warning "TODO"
68 }
69
70 void BinarySms::copyToFolder(const FolderType newFolder)
71 {
72     //#warning "TODO"
73 }
74
75 void BinarySms::copyToFolder(const string& newFolder)
76 {
77     //#warning "TODO"
78 }
79
80 void BinarySms::remove()
81 {
82     //#warning "TODO"
83 }
84
85 void BinarySms::updateIsRead()
86 {
87     //#warning "TODO"
88 }
89
90 void BinarySms::updateMessage()
91 {
92     //#warning "TODO"
93 }
94
95 void BinarySms::addMessageToDraft()
96 {
97     //#warning "TODO"
98 }
99
100 void BinarySms::createSendMessage()
101 {
102     //#warning "TODO"
103 }
104
105 int BinarySms::send()
106 {
107     //#warning "TODO"
108     return -1;
109 }
110
111 void BinarySms::sendCancel(int handle)
112 {
113     //#warning "TODO"
114 }
115 }
116 }
117 }