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.
22 lines
586 B
22 lines
586 B
// |
|
// GMSPlacesDeprecationUtils.h |
|
// Google Places SDK for iOS |
|
// |
|
// Copyright 2020 Google LLC |
|
// |
|
// Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of |
|
// Service: https://developers.google.com/maps/terms |
|
// |
|
|
|
#ifndef IPHONE_MAPS_SDK_PLACES_GMSPLACESDEPRECATIONUTILS_H_ |
|
#define IPHONE_MAPS_SDK_PLACES_GMSPLACESDEPRECATIONUTILS_H_ |
|
|
|
#ifndef __GMS_AVAILABLE_BUT_DEPRECATED |
|
#define __GMS_AVAILABLE_BUT_DEPRECATED __deprecated |
|
#endif |
|
|
|
#ifndef __GMS_AVAILABLE_BUT_DEPRECATED_MSG |
|
#define __GMS_AVAILABLE_BUT_DEPRECATED_MSG(msg) __deprecated_msg(msg) |
|
#endif |
|
|
|
#endif
|
|
|