-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDocFunction.h
43 lines (30 loc) · 929 Bytes
/
DocFunction.h
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
<abstract>Functions in the doc element tree.</abstract>
Copyright (C) 2008 Nicolas Roard
Author: Nicolas Roard
Author: Quentin Mathe <[email protected]>
Date: June 2008
License: Modified BSD (see COPYING)
*/
#import <Foundation/Foundation.h>
#import <EtoileFoundation/EtoileFoundation.h>
#import <SourceCodeKit/SourceCodeKit.h>
#import "GSDocParser.h"
#import "DocElement.h"
@class DocHTMLElement;
/** @group Doc Element Tree
A DocFunction object represents a function in the documentation element tree. */
@interface DocFunction : DocSubroutine <GSDocParserDelegate>
{
}
/** @taskunit GSDoc Parsing */
/** <override-dummy />
Returns <em>function</em>.
See -[DocElement GSDocElementName]. */
- (NSString *) GSDocElementName;
/** <override-dummy />
Returns -weaveFunction:.
See -[DocElement weaveSelector]. */
- (SEL) weaveSelector;
- (void) parseProgramComponent: (SCKFunction *)aFunction;
@end