diff options
Diffstat (limited to 'Business.h')
-rw-r--r-- | Business.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Business.h b/Business.h new file mode 100644 index 0000000..391df5f --- /dev/null +++ b/Business.h @@ -0,0 +1,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__ |