wrt-plugins-tizen_0.4.23
[framework/web/wrt-plugins-tizen.git] / src / DataControl / EventRemoveValue.h
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 #ifndef TIZENAPIS_API_EVENT_REMOVE_VALUE_H_
20 #define TIZENAPIS_API_EVENT_REMOVE_VALUE_H_
21
22 #include <Commons/IEvent.h>
23 #include <dpl/shared_ptr.h>\r
24 #include <Logger.h>
25
26 namespace DeviceAPI {
27 namespace DataControl {
28
29 class EventRemoveValue : public WrtDeviceApis::Commons::IEvent<EventRemoveValue>
30 {
31 private :
32         unsigned int  m_reqId;
33         std::string m_errorMsg;
34         std::map<std::string, std::string> m_map;
35         std::string m_key;      
36         std::string m_value;
37 public:
38         unsigned int  getReqId() { return m_reqId; }
39         std::string getErrorMsg() { return m_errorMsg; }
40         void setReqId(const     unsigned int & reqId) { m_reqId = reqId;}
41         std::string getKey() { return m_key;}
42         std::string getValue() { return m_value;}
43         void setKey(const std::string &key) { m_key = key;}
44         void setValue(const std::string &value) { m_value = value;} 
45         void setErrorMsg(const std::string &msg) { m_errorMsg = msg; }
46
47         EventRemoveValue() { LoggerD("entered"); }
48         ~EventRemoveValue() { }
49 };
50
51 typedef DPL::SharedPtr<EventRemoveValue> EventRemoveValuePtr;
52 }
53 }
54
55 #endif 
56