moved FOP to libs subdir
[TestXSLT.git] / ParameterSet.h
1 //
2 //  ParameterSet.h
3 //  TestXSLT
4 //
5 //  Created by Marc Liyanage on Sat Mar 09 2002.
6 //  Copyright (c) 2001 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10
11
12 @interface ParameterSet : NSObject <NSCoding> {
13
14         NSMutableArray *parameters;
15         const char **cArray;
16
17 }
18
19 - (void)addParameter:(NSString *)name withValue:(NSString *)value;
20 - (void)setField:(NSString *)fieldName atIndex:(int)index toString:(NSString *)s;
21 - (NSString *)getField:(NSString *)fieldName atIndex:(int)index;
22 - (void)removeParameterAtIndex:(int)index;
23 - (void)setParameterSet:(NSMutableArray *)array;
24 - (void)removeParameterByName:(NSString *)name;
25
26 - (const char **)cArray;
27
28 - (int)count;
29
30
31
32
33
34 @end