Git Init
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Geocoder / IGeocoder.h
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
20
21 /*
22  * @author
23  */
24
25 #ifndef WRTPLUGINS_API_IGEOCODER_H_
26 #define WRTPLUGINS_API_IGEOCODER_H_
27
28 #include "EventGeocoder.h"
29
30 #include <dpl/shared_ptr.h>
31 #include <Commons/ThreadPool.h>
32
33 namespace TizenApis {
34 namespace Tizen1_0 {
35 namespace Api {
36 namespace Geocoder {
37
38 class EventGeocoder;
39 typedef DPL::SharedPtr<EventGeocoder> EventGeocoderPtr;
40
41 class IGeocoder: public WrtDeviceApis::Commons::EventRequestReceiver<EventGeocoder> {
42 public:
43
44         virtual ~IGeocoder();
45
46 //      /**
47 //       * Gets address from position
48 //       * @param event @see WrtPlugins::Api::Geocoder::EventGeocoder.
49 //       * @exception Commons::PlatformException when platform error occurs
50 //       */
51         virtual void getAddressFromPosition(const EventGeocoderPtr& event) = 0;
52
53         //      /**
54         //       * Gets address from position
55         //       * @param event @see WrtPlugins::Api::Geocoder::EventGeocoder.
56         //       * @exception Commons::PlatformException when platform error occurs
57         //       */
58         virtual void getPositionFromAddress(const EventGeocoderPtr& event) = 0;
59
60 protected:
61         IGeocoder();
62
63         virtual void OnRequestReceived(const EventGeocoderPtr& event) = 0;
64 };
65
66 typedef DPL::SharedPtr<IGeocoder> IGeocoderPtr;
67
68 }
69 }
70 }
71 }
72
73 #endif /* WRTPLUGINS_API_IGEOCODER_H_ */