Code Review
/
apps
/
poi-yelp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
review
|
tree
history
|
raw
|
HEAD
poi-yelp: fix compile issue with SDK
[apps/poi-yelp.git]
/
Business.h
1
#ifndef __BUSINESS_H__
2
#define __BUSINESS_H__
3
4
#include <QString>
5
6
class Business
7
{
8
public:
9
10
Business():
11
ReviewCount(0),
12
Rating(0.0),
13
Latitude(0.0),
14
Longitude(0.0),
15
Distance(0.0),
16
Name(""),
17
ImageUrl(""),
18
Phone(""),
19
Address(""),
20
City(""),
21
State(""),
22
ZipCode(""),
23
Country("") {}
24
25
unsigned ReviewCount;
26
double Rating;
27
double Latitude;
28
double Longitude;
29
double Distance;
30
QString Name;
31
QString ImageUrl;
32
QString Phone;
33
QString Address;
34
QString City;
35
QString State;
36
QString ZipCode;
37
QString Country;
38
};
39
40
#endif // __BUSINESS_H__