Update change log and spec for wrt-plugins-tizen_0.4.46
[platform/framework/web/wrt-plugins-tizen.git] / src / Callhistory / CallHistoryFilterConverter.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  * @file        CallHistoryFilterConverter.h
20  * @version     0.1
21  * @description Reference from CalendarConverter.h
22  */
23
24 #ifndef _TIZEN_CALLHISTORY_FILTER_CONVERTER_H_
25 #define _TIZEN_CALLHISTORY_FILTER_CONVERTER_H_
26
27 #include <set>
28 #include <string>
29 #include <FilterConverter.h>
30
31 namespace DeviceAPI {
32 namespace CallHistory {
33
34 class CallHistoryFilterConverter : public DeviceAPI::Tizen::FilterConverter
35 {
36 public:
37         explicit CallHistoryFilterConverter(JSContextRef context);
38         virtual ~CallHistoryFilterConverter();
39 };
40 typedef WrtDeviceApis::CommonsJavaScript::ConverterFactory<CallHistoryFilterConverter> CallHistoryFilterConverterFactory;
41
42 } // CallHistory
43 } // DeviceAPI
44
45 #endif // _TIZEN_CALLHISTORY_FILTER_CONVERTER_H_
46