Captainup  2.4
/Users/yogs/Desktop/CaptainUp/Headers/BadgeProgressClass.h
1 //
2 // BadgeProgressClass.h
3 // captainup_sdk
4 //
5 // Created by David Azriel on 07/12/2015.
6 // Copyright © 2015 Captain Up. All rights reserved.
7 //
8 
9 #ifndef BadgeProgressClass_h
10 #define BadgeProgressClass_h
11 
12 #import "CPTBadgeProgress.h"
13 
14 @interface CPTBadgeProgress : NSObject <CPTBadgeProgress>
15 
16 - (instancetype) initWithBadgeProgress:(id<CPTBadgeProgress>)badgeProgress completedDate:(NSDate *)completedDate;
17 - (BOOL)isEqualToBadgeProgress:(CPTBadgeProgress*)other;
18 
19 -(instancetype) initWithProgress:(double)progress_ andCompletedComditionCount:(NSUInteger) completedConditionsCount_ andConditionProgress:(NSDictionary<NSString*,id<CPTConditionProgress>>*) conditionProgress_ andTimesCompleted:(NSUInteger) timesCompleted_ andCompletedDate:(NSDate*)completedDate_ andRewardProgress:(NSDictionary<NSString*,id<CPTRewardProgress>> *)rewardProgress_;
20 
21 @end
22 
23 #endif /* BadgeProgressClass_h */
Definition: BadgeProgressClass.h:14
Definition: CPTBadgeProgress.h:19
Definition: CPTConditionProgress.h:17
Definition: CPTRewardProgress.h:17