- Timestamp:
- 02/15/11 20:53:46 (15 months ago)
- Files:
-
- 1 modified
-
trunk/src/doc_system__define.pro (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/doc_system__define.pro
r736 r737 2 2 3 3 ;+ 4 ; This class represents the entire IDLdoc run. All information/settings for the5 ; run are stored (or at least accessible from) here.4 ; This class represents the entire IDLdoc run. All information/settings for 5 ; the run are stored (or at least accessible from) here. 6 6 ; 7 7 ; :Author: … … 14 14 ; the directory to which to output the documentation 15 15 ; classes 16 ; hash table (classname -> DOCtreeClass) containing all class definitions 16 ; hash table (classname -> `DOCtreeClass`) containing all class 17 ; definitions 17 18 ; format 18 19 ; format style … … 95 96 'has_overview_comments': return, obj_valid(self.overviewComments) 96 97 'overview_comments': return, self->processComments(self.overviewComments) 98 97 99 'footer': return, self.footer 98 100 … … 498 500 if (nEntries gt 0) then self->processIndex 499 501 502 doctree_fill_links, self.overviewComments, self 503 500 504 directories = self.directories->get(/all, count=ndirectories) 501 505 for i = 0L, ndirectories - 1L do (directories[i])->fillLinks … … 519 523 function doc_system::lookupName, name, exclude=exclude 520 524 compile_opt strictarr 521 525 522 526 dirs = self.directories->get(/all, count=ndirs) 523 527 for i = 0L, ndirs - 1L do begin … … 657 661 658 662 if (~obj_valid(tree)) then return, '' 659 660 663 commentParser = self->getParser(self.commentStyle + 'output') 661 664 return, commentParser->process(tree)
