#import <Cocoa/Cocoa.h>
#import "CLIPS/clips.h"
@interface CLIPSFactInstance : NSObject
{
NSString *name;
NSArray *attributeValues;
NSString *relationName;
NSNumber *index;
void *environment;
void *scopeMap;
void *theCPointer;
}
- initWithFact: (Fact *) theFact
fromEnvironment: (void *) theEnvironment;
- initWithInstance: (Instance *) theInstance
fromEnvironment: (void *) theEnvironment;
- (BOOL) searchForString: (NSString *) theString;
- (void) setAttributeValues: (NSArray *) theAttributeValues;
- (NSArray *) attributeValues;
- (void) setRelationName: (NSString *) theRelationName;
- (NSString *) relationName;
- (void) setName: (NSString *) theName;
- (NSString *) name;
- (void) setIndex: (NSNumber *) theIndex;
- (NSNumber *) index;
- (void) setScopeMap: (void *) theValue;
- (void *) scopeMap;
- (void *) CPointer;
@end