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.
23 lines
296 B
23 lines
296 B
9 years ago
|
#ifndef _TG_VENUE_H_
|
||
|
#define _TG_VENUE_H_
|
||
|
|
||
|
#include <string>
|
||
|
|
||
9 years ago
|
#include <Telegram/Location.h>
|
||
9 years ago
|
|
||
|
namespace Telegram {
|
||
|
|
||
|
class Venue {
|
||
|
public:
|
||
|
Venue(Json::Value);
|
||
|
|
||
|
private:
|
||
|
Location *location;
|
||
|
std::string title;
|
||
|
std::string address;
|
||
|
std::string foursquare_id;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|