blob: 391df5f1ce5b04cbfd5099f54d6ebc8ff4495b87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#ifndef __BUSINESS_H__
#define __BUSINESS_H__
#include <QString>
class Business
{
public:
Business():
ReviewCount(0),
Rating(0.0),
Latitude(0.0),
Longitude(0.0),
Distance(0.0),
Name(""),
ImageUrl(""),
Phone(""),
Address(""),
City(""),
State(""),
ZipCode(""),
Country("") {}
unsigned ReviewCount;
double Rating;
double Latitude;
double Longitude;
double Distance;
QString Name;
QString ImageUrl;
QString Phone;
QString Address;
QString City;
QString State;
QString ZipCode;
QString Country;
};
#endif // __BUSINESS_H__
|