酷店

AppMonitorDimensionValueSet.h 587B

123456789101112131415161718192021222324252627
  1. //
  2. // AppMonitorDimensionValueSet.h
  3. // AppMonitor
  4. //
  5. // Created by christ.yuj on 15/2/15.
  6. // Copyright (c) 2015年 君展. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. 其实就是个字典
  11. */
  12. @interface AppMonitorDimensionValueSet : NSObject<NSCopying>
  13. - (instancetype)initWithDictionary:(NSDictionary *)dictionary;
  14. /**
  15. * 存储维度值
  16. */
  17. @property (nonatomic, strong) NSMutableDictionary *dict;
  18. - (void)setValue:(NSString *)value forName:(NSString *)name;
  19. - (BOOL)containValueForName:(NSString *)name;
  20. - (NSString *)valueForName:(NSString *)name;
  21. @end