Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] How to get data from the parser


Use org.eclipse.cdt.core.parser.ParserFactory.createScanner() to create an IScanner instance.  
Use org.eclipse.cdt.core.parser.ParserFactory.createParser() to create an IParser instance.

There is javadoc available there that will let you know what to send in as parameters.  

Thanks
JohnC
www.eclipse.org/cdt


cdt-dev-admin@xxxxxxxxxxx wrote on 06/07/2004 11:55:04 PM:

> Hi,
>      I am developing a plugin to CDT to convert web services in to WSDL.
> for that I want to parse C++ header files and want to get the class
> names, method signatures and variables.
>      Please can anyone tell me what is the structure of the parser and how
> do I get that data from the parser.(If u can please send any example
> code or any documentation for that)
>      Please help.
>
> _______________________________________________
> cdt-dev mailing list
> cdt-dev@xxxxxxxxxxx
> http://dev.eclipse.org/mailman/listinfo/cdt-dev

Back to the top