yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
Location.h
Go to the documentation of this file.
1 #ifndef YATBCPP_LOCATION_H
2 #define YATBCPP_LOCATION_H
3 
4 namespace yatbcpp{
6  class Location {
7  public:
8  Location(float longitude, float latitude);
9 
10  Location(const Location& Location);
11 
12  float getLongitude() const;
13 
14  float getLatitude() const;
15 
16  private:
17  float longitude;
18  float latitude;
19  };
20 
21 }
22 
23 #endif //YATBCPP_LOCATION_H
Location(float longitude, float latitude)
Definition: Location.cc:11
Definition: Bot.h:27
float getLatitude() const
Definition: Location.cc:38
float getLongitude() const
Definition: Location.cc:34