You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _TG_VENUE_H_ |
|
#define _TG_VENUE_H_ |
|
|
|
#include <string> |
|
|
|
#include <Telegram/Location.h> |
|
|
|
namespace Telegram { |
|
|
|
class Venue { |
|
public: |
|
Venue(Json::Value); |
|
|
|
private: |
|
Location *location; |
|
std::string title; |
|
std::string address; |
|
std::string foursquare_id; |
|
}; |
|
} |
|
|
|
#endif
|
|
|