The R Project SVN R-packages

Rev

Rev 1363 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1363 Rev 6107
Line 31... Line 31...
31
#import <Cocoa/Cocoa.h>
31
#import <Cocoa/Cocoa.h>
32
#import "PreferenceKeys.h"
32
#import "PreferenceKeys.h"
33
#import "Preferences.h"
33
#import "Preferences.h"
34
 
34
 
35
@interface History : NSObject <PreferencesDependent> {
35
@interface History : NSObject <PreferencesDependent> {
36
    NSMutableArray* hist;
36
	NSMutableArray* hist;
-
 
37
	NSMutableCharacterSet *trimmingCharSet;
37
    NSString* dirtyEntry;
38
	NSString* dirtyEntry;
38
    int pos;
39
	int pos;
39
}
40
}
40
 
41
 
41
 
42
 
42
- (void) commit: (NSString*) entry;
43
- (void) commit: (NSString*) entry;
43
- (NSString*) next;
44
- (NSString*) next;