forked from gnachman/iTerm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iTermHostRecordMO+CoreDataProperties.h
39 lines (29 loc) · 1.26 KB
/
iTermHostRecordMO+CoreDataProperties.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// iTermHostRecordMO+CoreDataProperties.h
// iTerm2
//
// Created by George Nachman on 10/12/15.
//
//
// Choose "Create NSManagedObject Subclass…" from the Core Data editor menu
// to delete and recreate this implementation file for your updated model.
//
#import "iTermHostRecordMO.h"
NS_ASSUME_NONNULL_BEGIN
@interface iTermHostRecordMO (CoreDataProperties)
@property (nullable, nonatomic, retain) NSString *hostname;
@property (nullable, nonatomic, retain) NSString *username;
@property (nullable, nonatomic, retain) NSSet<iTermCommandHistoryEntryMO *> *entries;
@property (nullable, nonatomic, retain) NSSet<iTermRecentDirectoryMO *> *directories;
@end
@interface iTermHostRecordMO (CoreDataGeneratedAccessors)
- (void)addEntriesObject:(iTermCommandHistoryEntryMO *)value;
- (void)removeEntriesObject:(iTermCommandHistoryEntryMO *)value;
- (void)addEntries:(NSSet<iTermCommandHistoryEntryMO *> *)values;
- (void)removeEntries:(NSSet<iTermCommandHistoryEntryMO *> *)values;
- (void)addDirectoriesObject:(iTermRecentDirectoryMO *)value;
- (void)removeDirectoriesObject:(iTermRecentDirectoryMO *)value;
- (void)addDirectories:(NSSet<iTermRecentDirectoryMO *> *)values;
- (void)removeDirectories:(NSSet<iTermRecentDirectoryMO *> *)values;
@end
NS_ASSUME_NONNULL_END