doxygen
Public Member Functions | List of all members
OutlineParserInterface Class Referenceabstract

Abstract interface for outline parsers. More...

#include <parserintf.h>

Inheritance diagram for OutlineParserInterface:
Inheritance graph
[legend]

Public Member Functions

virtual void parseInput (const QCString &fileName, const char *fileBuf, const std::shared_ptr< Entry > &root, ClangTUParser *clangParser)=0
 Parses a single input file with the goal to build an Entry tree. More...
 
virtual bool needsPreprocessing (const QCString &extension) const =0
 Returns TRUE if the language identified by extension needs the C preprocessor to be run before feed the result to the input parser. More...
 
virtual void parsePrototype (const QCString &text)=0
 Callback function called by the comment block scanner. More...
 

Detailed Description

Abstract interface for outline parsers.

By implementing the methods of this interface one can add a new language parser to doxygen. The parser implementation can make use of the comment block parser to parse the contents of special comment blocks.

Member Function Documentation

◆ needsPreprocessing()

virtual bool OutlineParserInterface::needsPreprocessing ( const QCString extension) const
pure virtual

Returns TRUE if the language identified by extension needs the C preprocessor to be run before feed the result to the input parser.

See also
parseInput()

Implemented in NullOutlineParser, MarkdownOutlineParser, PythonOutlineParser, COutlineParser, VHDLOutlineParser, FortranOutlineParser, and LexOutlineParser.

◆ parseInput()

virtual void OutlineParserInterface::parseInput ( const QCString fileName,
const char *  fileBuf,
const std::shared_ptr< Entry > &  root,
ClangTUParser clangParser 
)
pure virtual

Parses a single input file with the goal to build an Entry tree.

Parameters
[in]fileNameThe full name of the file.
[in]fileBufThe contents of the file (zero terminated).
[in,out]rootThe root of the tree of Entry *nodes representing the information extracted from the file.
[in]clangParserThe clang translation unit parser object or nullptr if disabled.

Implemented in NullOutlineParser, MarkdownOutlineParser, PythonOutlineParser, COutlineParser, FortranOutlineParser, LexOutlineParser, and VHDLOutlineParser.

◆ parsePrototype()

virtual void OutlineParserInterface::parsePrototype ( const QCString text)
pure virtual

Callback function called by the comment block scanner.

It provides a string text containing the prototype of a function or variable. The parser should parse this and store the information in the Entry node that corresponds with the node for which the comment block parser was invoked.

Implemented in NullOutlineParser, MarkdownOutlineParser, PythonOutlineParser, COutlineParser, VHDLOutlineParser, FortranOutlineParser, and LexOutlineParser.


The documentation for this class was generated from the following file: