I have a header file with the following enum definition.
enum Example
{
one = 10,
two = 12,
three = 13
};
When I parse using gccxml 0.9 version, I get the following output in xml.
<Enumeration id="_49" name="Example" context="_1" location="f0:135" file="f0"
line="135" size="32" align="32">
<EnumValue name="one" init="0"/>
<EnumValue name="two" init="1"/>
<EnumValue name="three" init="2"/>
</Enumeration>
Is there any way to get the custom values of the enum?
_______________________________________________
Powered by www.kitware.com
Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html
Follow this link to subscribe/unsubscribe:
http://www.gccxml.org/mailman/listinfo/gccxml