Added const
This commit is contained in:
parent
94df1fbe9b
commit
e51f09fb02
|
@ -267,7 +267,7 @@ namespace detail {
|
|||
_pimpl->AsyncCall("set_weather_parameters", weather);
|
||||
}
|
||||
|
||||
float Client::GetIMUISensorGravity() {
|
||||
float Client::GetIMUISensorGravity() const {
|
||||
return _pimpl->CallAndWait<float>("get_imui_gravity");
|
||||
}
|
||||
|
||||
|
|
|
@ -149,7 +149,7 @@ namespace detail {
|
|||
|
||||
void SetWeatherParameters(const rpc::WeatherParameters &weather);
|
||||
|
||||
float GetIMUISensorGravity();
|
||||
float GetIMUISensorGravity() const;
|
||||
|
||||
void SetIMUISensorGravity( float NewIMUISensorGravity );
|
||||
|
||||
|
|
|
@ -259,7 +259,7 @@ namespace detail {
|
|||
_client.SetWeatherParameters(weather);
|
||||
}
|
||||
|
||||
float GetIMUISensorGravity() {
|
||||
float GetIMUISensorGravity() const {
|
||||
return _client.GetIMUISensorGravity();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue