//
//  PWObservationInfo.h
//  PWAppKit
//
//  Created by Frank Illenberger on 05.03.06.
//  Copyright 2006 ProjectWizards, Melle, Germany. 
//

#import <Cocoa/Cocoa.h>


@interface PWObservationInfo : NSObject
{
	@public
	id 							observer;
	NSString 					*keyPath;
	void 						*context;
	NSKeyValueObservingOptions 	options;
}

- (id)initWithObserver:(id)anObserver keyPath:(NSString *)path options:(NSKeyValueObservingOptions)theOptions context:(void *)aContext;
@end
