2544054a0171ee0ee4705fb3d0d7358bf1638cc4
[framework/web/wrt-plugins-common.git] / src / modules / 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  * @file       BinarySms.cpp
20  * @author     Pawel Misiak (p.misiak@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24 #include "BinarySms.h"
25 #include <dpl/log/log.h>
26
27 using namespace std;
28
29 using namespace WrtDeviceApis::Messaging;
30 using namespace WrtDeviceApis::Messaging::Api;
31
32 namespace WrtDeviceApis {
33 namespace Messaging {
34 BinarySms::BinarySms(const string& id) :
35     IMessage(Api::BINARYSMS, id)
36 {
37     LogDebug("enter");
38
39     LogDebug("m_id=" << getIdRef());
40     LogDebug("m_msgType=" << getMessageType());
41 }
42
43 BinarySms::~BinarySms()
44 {
45     LogDebug("enter");
46 }
47
48 void BinarySms::update(bool /*draftsOnly*/)
49 {
50     LogDebug("updating m_id=" << getIdRef());
51 }
52
53 void BinarySms::readAllData()
54 {
55     //#warning "TODO"
56 }
57
58 void BinarySms::moveToFolder(const FolderType /*newFolder*/)
59 {
60     //#warning "TODO"
61 }
62
63 void BinarySms::moveToFolder(const string& /*newFolder*/)
64 {
65     //#warning "TODO"
66 }
67
68 void BinarySms::copyToFolder(const FolderType /*newFolder*/)
69 {
70     //#warning "TODO"
71 }
72
73 void BinarySms::copyToFolder(const string& /*newFolder*/)
74 {
75     //#warning "TODO"
76 }
77
78 void BinarySms::remove()
79 {
80     //#warning "TODO"
81 }
82
83 void BinarySms::send()
84 {
85     //#warning "TODO"
86 }
87
88 void BinarySms::sendCancel()
89 {
90     //#warning "TODO"
91 }
92 }
93 }