Page 1 of 1

Class browsing xharbour/fivewin code

Posted: Fri Jul 15, 2005 9:37 am
by aschaft
Hi,

How involved would it be to browse xharbour/fw code in the class browser?

Alex

CLASS Myclass

// Definitions

Method New

Method End

DATA cVar1

ENDCLASS

// Implementation
Method New() CLASS Myclass

return Self

Posted: Sat Jul 16, 2005 1:41 am
by jussij
The Zeus class browser is nothing more than a graphical display of the tags information produced by Exuberant Ctags. I had a look at the languages currently supported and sure enough Clipper and xHabour are not on the list :(

So the in order for the Zeus browser to work the Exuberant Ctags would need to be extended to support the xharbour/fw language.

I found this link: Add Support for a New Language

and it describes what is needed to add a language to Exuberant Ctags.

Posted: Sat Jul 16, 2005 10:54 am
by aschaft
Thanks, I'll take a look

Alex