forked from Kentzo/F-Script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFSCNClassDefinition.h
More file actions
26 lines (22 loc) · 801 Bytes
/
FSCNClassDefinition.h
File metadata and controls
26 lines (22 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* FSCNClassDefinition.h Copyright (c) 2007-2009 Philippe Mougin. */
/* This software is open source. See the license. */
#import "FSCNBase.h"
@interface FSCNClassDefinition : FSCNBase
{
@public
NSString *className;
NSString *superclassName;
NSArray *civarNames;
NSArray *ivarNames;
NSArray *methods;
}
- (NSString *) className;
- (NSArray *) civarNames;
- (void) dealloc;
- (void) encodeWithCoder:(NSCoder *)coder;
- (id) initWithCoder:(NSCoder *)coder;
- (id) initWithClassName:(NSString *)theClassName superclassName:(NSString *)theSuperclassName civarNames:(NSArray *)theCIvarNames ivarNames:(NSArray *)theIvarNames methods:(NSArray *)theMethods;
- (NSArray *) ivarNames;
- (NSString *) superclassName;
- (void)translateCharRange:(long)translation;
@end