-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from drodriguez/fix-circular-dependencies
Circular dependency broken test (commented out).
- Loading branch information
Showing
10 changed files
with
221 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// AppsQuick.ly | ||
// Copyright 2012 AppsQuick.ly | ||
// All Rights Reserved. | ||
// | ||
// NOTICE: AppsQuick.ly permits you to use, modify, and distribute this file | ||
// in accordance with the terms of the license agreement accompanying it. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
|
||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@class ClassDDependsOnC; | ||
@class ClassEDependsOnC; | ||
|
||
|
||
@interface ClassCDependsOnDAndE : NSObject | ||
|
||
@property(nonatomic, strong) ClassDDependsOnC* dependencyOnD; | ||
@property(nonatomic, strong) ClassEDependsOnC* dependencyOnE; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// AppsQuick.ly | ||
// Copyright 2012 AppsQuick.ly | ||
// All Rights Reserved. | ||
// | ||
// NOTICE: AppsQuick.ly permits you to use, modify, and distribute this file | ||
// in accordance with the terms of the license agreement accompanying it. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
|
||
|
||
#import "ClassCDependsOnDAndE.h" | ||
#import "ClassDDependsOnC.h" | ||
#import "ClassEDependsOnC.h" | ||
|
||
|
||
@implementation ClassCDependsOnDAndE | ||
{ | ||
|
||
} | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// AppsQuick.ly | ||
// Copyright 2012 AppsQuick.ly | ||
// All Rights Reserved. | ||
// | ||
// NOTICE: AppsQuick.ly permits you to use, modify, and distribute this file | ||
// in accordance with the terms of the license agreement accompanying it. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
|
||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@class ClassCDependsOnDAndE; | ||
|
||
|
||
@interface ClassDDependsOnC : NSObject | ||
|
||
@property(nonatomic, strong) ClassCDependsOnDAndE* dependencyOnC; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// AppsQuick.ly | ||
// Copyright 2012 AppsQuick.ly | ||
// All Rights Reserved. | ||
// | ||
// NOTICE: AppsQuick.ly permits you to use, modify, and distribute this file | ||
// in accordance with the terms of the license agreement accompanying it. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
|
||
|
||
#import "ClassDDependsOnC.h" | ||
#import "ClassCDependsOnDAndE.h" | ||
|
||
|
||
@implementation ClassDDependsOnC | ||
{ | ||
|
||
} | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// AppsQuick.ly | ||
// Copyright 2012 AppsQuick.ly | ||
// All Rights Reserved. | ||
// | ||
// NOTICE: AppsQuick.ly permits you to use, modify, and distribute this file | ||
// in accordance with the terms of the license agreement accompanying it. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
|
||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@class ClassCDependsOnDAndE; | ||
|
||
|
||
@interface ClassEDependsOnC : NSObject | ||
|
||
@property(nonatomic, strong) ClassCDependsOnDAndE* dependencyOnC; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// AppsQuick.ly | ||
// Copyright 2012 AppsQuick.ly | ||
// All Rights Reserved. | ||
// | ||
// NOTICE: AppsQuick.ly permits you to use, modify, and distribute this file | ||
// in accordance with the terms of the license agreement accompanying it. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
|
||
|
||
#import "ClassEDependsOnC.h" | ||
#import "ClassCDependsOnDAndE.h" | ||
|
||
|
||
@implementation ClassEDependsOnC | ||
{ | ||
|
||
} | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters