All Classes Functions Variables Typedefs Friends Pages
IPlaceSearchResult.h
1 //------------------------------------------------------------------------------
2 //
3 // Copyright (c) 2014 Glympse Inc. All rights reserved.
4 //
5 //------------------------------------------------------------------------------
6 
7 #ifndef IPLACESEARCHRESULT_H__GLYMPSE__
8 #define IPLACESEARCHRESULT_H__GLYMPSE__
9 
10 namespace Glympse
11 {
12 
16 /*O*public**/ struct IPlaceSearchResult : public ICommon
17 {
21  public: virtual GLatLng getLocation() = 0;
22 
26  public: virtual GString getName() = 0;
27 
31  public: virtual GString getAddress() = 0;
32 
36  public: virtual GString getUrl() = 0;
37 
41  public: virtual GImage getIcon() = 0;
42 
46  public: virtual GArray<GString>::ptr getPhoneNumberTypes() = 0;
47 
51  public: virtual GArray<GString>::ptr getPhoneNumbers() = 0;
52 };
53 
55 
56 }
57 
58 #endif // !IPLACESEARCHRESULT_H__GLYMPSE__