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