tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Messaging / VirtualMessage.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       VirtualMessage.cpp
20  * @author     Pawel Misiak (p.misiak@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24 #include <dpl/log/log.h>
25 #include "Commons/Exception.h"
26 #include "IMessage.h"
27 #include "VirtualMessage.h"
28
29 using namespace std;
30
31 namespace WrtDeviceApis {
32 namespace Messaging {
33 namespace Api {
34 VirtualMessage::VirtualMessage() :
35     IMessage(VIRTUAL_MESSAGE, "")
36 {
37 }
38
39 VirtualMessage::~VirtualMessage()
40 {
41 }
42
43 void VirtualMessage::send()
44 {
45 }
46
47 void VirtualMessage::sendCancel()
48 {
49 }
50
51 void VirtualMessage::update(bool /*draftsOnly*/)
52 {
53 }
54
55 void VirtualMessage::readAllData()
56 {
57 }
58
59 void VirtualMessage::moveToFolder(const FolderType /*newFolder*/)
60 {
61 }
62
63 void VirtualMessage::moveToFolder(const std::string& /*newFolder*/)
64 {
65 }
66
67 void VirtualMessage::copyToFolder(const FolderType /*newFolder*/)
68 {
69 }
70
71 void VirtualMessage::copyToFolder(const std::string& /*newFolder*/)
72 {
73 }
74
75 void VirtualMessage::remove()
76 {
77 }
78 }}
79 }