wrt-plugins-tizen_0.4.23
[framework/web/wrt-plugins-tizen.git] / src / Messaging / VirtualMessage.cpp
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  *
20  *
21  * @file       VirtualMessage.cpp
22  * @author     Pawel Misiak (p.misiak@samsung.com)
23  * @version    0.1
24  * @brief
25  */
26 #include "Commons/Exception.h"
27 #include "IMessage.h"
28 #include "VirtualMessage.h"
29 #include <Logger.h>
30
31 using namespace std;
32
33 namespace DeviceAPI {
34 namespace Messaging {
35
36 VirtualMessage::VirtualMessage() :
37     IMessage(VIRTUAL_MESSAGE, "")
38 {
39 }
40
41 VirtualMessage::~VirtualMessage()
42 {
43 }
44
45 int VirtualMessage::send()
46 {
47  return -1;
48 }
49
50 void VirtualMessage::sendCancel(int handle)
51 {
52 }
53
54 void VirtualMessage::update(bool /*draftsOnly*/)
55 {
56 }
57
58 void VirtualMessage::readAllData()
59 {
60 }
61
62 void VirtualMessage::moveToFolder(const FolderType newFolder)
63 {
64 }
65
66 void VirtualMessage::moveToFolder(const std::string& newFolder)
67 {
68 }
69
70 void VirtualMessage::copyToFolder(const FolderType newFolder)
71 {
72 }
73
74 void VirtualMessage::copyToFolder(const std::string& newFolder)
75 {
76 }
77
78 void VirtualMessage::remove()
79 {
80 }
81
82 void VirtualMessage::updateIsRead()
83 {
84 }
85
86 void VirtualMessage::updateMessage()
87 {
88 }
89
90 void VirtualMessage::addMessageToDraft()
91 {
92 }
93
94 void VirtualMessage::createSendMessage(){
95 }
96
97
98
99 }
100 }