Move classes into separate files
FossilOrigin-Name: 14861826d4c1f561aca909afe773366a46b57b20cf41fd668092dfb98d960d80
This commit is contained in:
parent
3661ce9a40
commit
623076a034
17 changed files with 366 additions and 322 deletions
|
@ -5,21 +5,7 @@
|
|||
|
||||
#include <memory>
|
||||
|
||||
enum { ID_VAR, ID_COMMAND, ID_ALIAS };
|
||||
|
||||
@interface Ident : OFObject
|
||||
@property (nonatomic) int type; // one of ID_* above
|
||||
@property (copy, nonatomic) OFString *name;
|
||||
@property (nonatomic) int min, max; // ID_VAR
|
||||
@property (nonatomic) int *storage; // ID_VAR
|
||||
@property (nonatomic) void (*fun)(); // ID_VAR, ID_COMMAND
|
||||
@property (nonatomic) int narg; // ID_VAR, ID_COMMAND
|
||||
@property (copy, nonatomic) OFString *action; // ID_ALIAS
|
||||
@property (nonatomic) bool persist;
|
||||
@end
|
||||
|
||||
@implementation Ident
|
||||
@end
|
||||
#import "Ident.h"
|
||||
|
||||
void
|
||||
itoa(char *s, int i)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue