mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-24 04:29:44 +00:00
22 lines
411 B
Objective-C
22 lines
411 B
Objective-C
//
|
|
// NSSpellCheckerTagData.h
|
|
// AppKit
|
|
//
|
|
// Created by Christopher Lloyd on 8/23/11.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/NSObject.h>
|
|
|
|
@class NSMutableSet, NSArray;
|
|
|
|
@interface NSSpellCheckerTagData : NSObject {
|
|
NSMutableSet *_ignoredWords;
|
|
}
|
|
|
|
- (void)ignoreWord:(NSString *)word;
|
|
- (NSArray *)ignoredWords;
|
|
- (void)setIgnoredWords:(NSArray *)words;
|
|
|
|
@end
|