X-Git-Url: http://git.ithinksw.org/ITFoundation.git/blobdiff_plain/3275385775db14f654afff24919314941b8a1b7b..3d646c75403df6d5324833a701723a765555177f:/ITOSAScript.h diff --git a/ITOSAScript.h b/ITOSAScript.h deleted file mode 100755 index 7c8d337..0000000 --- a/ITOSAScript.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * ITFoundation - * ITOSAScript - * An extended NSAppleScript that allows any OSA language. - * - * Original Author : Kent Sutherland - * Responsibility : Kent Sutherland - * Responsibility : Joseph Spiros - * - * Copyright (c) 2002 - 2004 iThink Software. - * All Rights Reserved - * - */ - -#import -#import - -@class ITOSAComponent; - -@interface ITOSAScript : NSObject { - NSString *_source; - ITOSAComponent *_component; - OSAID _scriptID; -} - -- (id)initWithContentsOfFile:(NSString *)path; -- (id)initWithSource:(NSString *)source; - -- (NSString *)source; -- (ITOSAComponent *)component; -- (void)setComponent:(ITOSAComponent *)newComponent; - -- (BOOL)compileAndReturnError:(NSDictionary **)errorInfo; -- (BOOL)isCompiled; -- (NSString *)executeAndReturnError:(NSDictionary **)errorInfo; - -@end