update for beta universally
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / POI / GeometryFilter.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 #include "GeometryFilter.h"
18 #include "LBSUtil.h"
19 #include <CommonsJavaScript/Converter.h>
20 #include <dlog.h>
21 #undef LOG_TAG
22 #define LOG_TAG "TIZEN_POI"
23
24 using namespace WrtDeviceApis::CommonsJavaScript;
25
26
27 namespace TizenApis {
28 namespace Tizen1_0 {
29 namespace LBS {
30
31 GeometryFilter GeometryFilter::convert(JSContextRef ctx, JSObjectRef object)
32 {
33         GeometryFilter filter;
34         convert(ctx, object, &filter);
35         return filter;
36 }
37
38 void GeometryFilter::convert(JSContextRef ctx, JSObjectRef object, GeometryFilter* filter)
39 {
40         if( filter == NULL )
41                 return;
42         filter->criteria = LBSUtil::getPropertyToString(ctx, object, "criteria");
43         filter->geometry = LBSUtil::getPropertyToString(ctx, object, "geometry");
44 }
45
46 }
47 }
48 }
49
50