2016-04-29 19:38:14 +02:00
|
|
|
#ifndef _TG_VENUE_H_
|
|
|
|
#define _TG_VENUE_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-04-30 07:18:32 +02:00
|
|
|
#include <Telegram/Location.h>
|
2016-04-29 19:38:14 +02:00
|
|
|
|
|
|
|
namespace Telegram {
|
|
|
|
|
|
|
|
class Venue {
|
|
|
|
public:
|
|
|
|
Venue(Json::Value);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Location *location;
|
|
|
|
std::string title;
|
|
|
|
std::string address;
|
|
|
|
std::string foursquare_id;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|