mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
* Headers/Foundation/NSMetadata.h: Add ivars.
* Source/NSMetadata.m: Cleanup compilation error. 2012-11-20 12:50-EST Gregory John Casamento <greg.casamento@gmail.com> git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@35812 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fd5ced2a49
commit
c08ff39f06
3 changed files with 20 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-11-21 12:10-EST Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* Headers/Foundation/NSMetadata.h: Add ivars.
|
||||
* Source/NSMetadata.m: Cleanup compilation error.
|
||||
|
||||
2012-11-20 12:50-EST Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* Headers/Foundation/NSMetadata.h: Declaratioins for constants and
|
||||
|
|
|
@ -67,9 +67,21 @@ GS_EXPORT NSString * const NSMetadataQueryGatheringProgressNotification;
|
|||
/* Abstract interface for metadata query... */
|
||||
@interface NSMetadataQuery : NSObject
|
||||
{
|
||||
NSUInteger _flags;
|
||||
NSTimeInterval _interval;
|
||||
BOOL _isStopped;
|
||||
BOOL _isGathering;
|
||||
BOOL _isStarted;
|
||||
|
||||
NSArray *_searchURLs;
|
||||
NSArray *_scopes;
|
||||
NSArray *_sortDescriptors;
|
||||
NSPredicate *_predicate;
|
||||
NSArray *_groupingAttributes;
|
||||
NSArray *_valueListAttributes;
|
||||
|
||||
NSTimeInterval _notificationBatchingInterval;
|
||||
NSMutableDictionary *_results;
|
||||
|
||||
id<NSMetadataQueryDelegate> delegate;
|
||||
}
|
||||
|
||||
/* Instance methods */
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#import <Foundation/NSMetadata.h>
|
||||
#import <Foundation/NSArray.h>
|
||||
#import <Foundation/NSDictionary.h>
|
||||
#import <Foundation/NSString.h>
|
||||
#import "GNUstepBase/NSObject+GNUstepBase.h"
|
||||
|
||||
// Metadata item constants...
|
||||
|
|
Loading…
Reference in a new issue