-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename Dictionary into RNNDictionary (#7853)
- Loading branch information
Showing
8 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#import "Dictionary.h" | ||
#import "RNNDictionary.h" | ||
#import <Foundation/Foundation.h> | ||
|
||
@interface DictionaryParser : NSObject | ||
|
||
+ (Dictionary *)parse:(NSDictionary *)json key:(NSString *)key; | ||
+ (RNNDictionary *)parse:(NSDictionary *)json key:(NSString *)key; | ||
|
||
@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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#import "Dictionary.h" | ||
#import "RNNDictionary.h" | ||
|
||
@interface NullDictionary : Dictionary | ||
@interface NullDictionary : RNNDictionary | ||
|
||
@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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#import "Param.h" | ||
|
||
@interface RNNDictionary : Param | ||
|
||
@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,11 @@ | ||
#import "RNNDictionary.h" | ||
|
||
@interface RNNDictionary () | ||
|
||
@property(nonatomic, retain) NSDictionary *value; | ||
|
||
@end | ||
|
||
@implementation RNNDictionary | ||
|
||
@end |