// BWSnippetKeeper -- container object that keeps track of HTML fragments.
//		      Individual values accessed by KVC because I'm lazy

// Copyright (C) 2005 Borkware, LLC
// We use the BSD License.  Check out http://borkware.com/license

#import <Cocoa/Cocoa.h>

@interface BWSnippetKeeper : NSObject
{
    // Doing this with Bindings now so we can probably get rid of these

    IBOutlet NSTextView *documentHeaderTextView;
    IBOutlet NSTextView *beforeThumbnailsTextView;
    IBOutlet NSTextView *forEachImageTextView;
    IBOutlet NSTextView *forEveryXImagesTextView;
    IBOutlet NSTextView *afterThumbnailsTextView;
    IBOutlet NSTextView *documentFooterTextView;
    IBOutlet NSTextField *xField;

    IBOutlet NSWindow *window;
}

@end // BWSnippetKeeper

