LibTgBotPP
 All Classes Namespaces Files Functions Variables Typedefs Macros
Venue.h
Go to the documentation of this file.
1 #ifndef _TG_VENUE_H_
2 #define _TG_VENUE_H_
3 
4 #include <string>
5 
6 #include <Telegram/Location.h>
7 
8 namespace Telegram {
9 
10  class Venue {
11  public:
12  Venue(Json::Value);
13 
14  private:
16  std::string title;
17  std::string address;
18  std::string foursquare_id;
19  };
20 }
21 
22 #endif
Definition: Venue.h:10
std::string foursquare_id
Definition: Venue.h:18
std::string address
Definition: Venue.h:17
std::string title
Definition: Venue.h:16
Definition: Location.h:8
Location * location
Definition: Venue.h:15
Venue(Json::Value)
Definition: Venue.cc:3