GADCorrelator.h 420 B

1234567891011121314151617
  1. //
  2. // GADCorrelator.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2015 Google Inc. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. /// Represents a correlation between multiple ads. Set an instance of this object on multiple ads to
  9. /// indicate they are being used in a common context.
  10. @interface GADCorrelator : NSObject
  11. /// Resets the correlator to force a new set of correlated ads.
  12. - (void)reset;
  13. @end