Skip to content

Commit

Permalink
Merge pull request #1 from kevinlawler/master
Browse files Browse the repository at this point in the history
Compile when including sourcefiles in a separate project
Kyle Hickinson committed Aug 11, 2011
2 parents 5702d48 + 31daf3e commit b5d0825
Showing 9 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ForrstAPI/FTCache.m
Original file line number Diff line number Diff line change
@@ -9,6 +9,8 @@
#import "FTCache.h"
#import "NSString+Crypto.h"
#import <UIKit/UIKit.h>
#import "FTConstants.h"


@interface FTCache ()
@property (strong) NSFileManager *fileManager;
1 change: 1 addition & 0 deletions ForrstAPI/FTComment.m
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@

#import "FTComment.h"
#import "FTUser.h"
#import "FTConstants.h"

@implementation FTComment
@synthesize commentID = _commentID,
1 change: 1 addition & 0 deletions ForrstAPI/FTDownloadQueue.m
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@

#import "FTDownloadQueue.h"
#import "NSString+Crypto.h"
#import "FTConstants.h"

#define FTStackCapacity 10

2 changes: 2 additions & 0 deletions ForrstAPI/FTForrstMe.m
Original file line number Diff line number Diff line change
@@ -7,6 +7,8 @@
//

#import "FTForrstMe.h"
#import "FTConstants.h"


@interface FTForrstMe ()
@property (strong) NSDictionary *data;
1 change: 1 addition & 0 deletions ForrstAPI/FTPost.m
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@
#import "FTCache.h"
#import "FTDownloadQueue.h"
#import "NSString+Crypto.h"
#import "FTConstants.h"

#import <UIKit/UIKit.h>

1 change: 1 addition & 0 deletions ForrstAPI/FTRequest.m
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@

#import "FTRequest.h"
#import "JSONKit.h"
#import "FTConstants.h"

#import <UIKit/UIApplication.h>

1 change: 1 addition & 0 deletions ForrstAPI/FTResponse.m
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@
//

#import "FTResponse.h"
#import "FTConstants.h"

@implementation FTResponse
@synthesize status = _status,
1 change: 1 addition & 0 deletions ForrstAPI/FTUser.m
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@
#import "FTCache.h"
#import "FTDownloadQueue.h"
#import "NSString+Crypto.h"
#import "FTConstants.h"

#import <UIKit/UIKit.h>

1 change: 1 addition & 0 deletions ForrstAPI/ForrstAPI.h
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@
#import "FTUser.h"
#import "FTPost.h"
#import "FTComment.h"
#import "FTConstants.h"

typedef void (^FTStatsCompletionBlock)(NSUInteger rateLimit, NSInteger callsMade);
typedef void (^FTUserCompletionBlock)(FTUser *user);

0 comments on commit b5d0825

Please sign in to comment.