Re: [Doxygen-develop] Adding a new [programming] language
Brought to you by:
dimitri
From: Dimitri v. H. <di...@st...> - 2001-11-03 13:58:39
|
On Mon, Oct 29, 2001 at 05:35:14PM +0530, Biswapesh Chattopadhyay wrote: > Hi > > How does one go about adding support for a new programming language in > Doxygen ? I would like to use Doxygen to generate docs from PL/SQL code. There is no easy way to do this at the moment. You could look at src/scanner.l and src/entry.h. The idea is that a tree of Entry objects is produced (Entries could be variables, functions, classes, documentation blocks, etc), which are then further processed by doxygen. Maybe you can write something similar for PL/SQL code. Regards, Dimitri |