Implement support for 'standatrds' markup.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11811 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2001-12-18 15:49:59 +00:00
parent 92cb1fb37b
commit e1a0d02d21
5 changed files with 251 additions and 8 deletions

View file

@ -56,6 +56,7 @@
unsigned pos;
BOOL commentsRead;
NSString *declared; // Where classes were declared.
NSMutableArray *ifStack; // track preprocessor conditionals.
NSString *comment; // Documentation accumulator.
NSMutableDictionary *info; // All information parsed.
@ -84,11 +85,13 @@
- (unsigned) skipBlock;
- (unsigned) skipComment;
- (unsigned) skipLiteral;
- (unsigned) skipPreprocessor;
- (unsigned) skipRemainderOfLine;
- (unsigned) skipSpaces;
- (unsigned) skipStatement;
- (unsigned) skipStatementLine;
- (unsigned) skipUnit;
- (unsigned) skipWhiteSpace;
- (void) setStandards: (NSMutableDictionary*)dict;
@end
#endif