support of xs:list itemType
Development toolkit for Web Services and XML data bindings for C & C++
Brought to you by:
engelen
Hi,
I have a simple type defined as such in an XML schema>
<xs:simpleType name="FloatingPointXmlArray"> <xs:list itemType="xs:float"/> </xs:simpleType>
gSoap seems to generate a string for this simple type :
typedef std::string eml23__FloatingPointXmlArray;
I would like it to generate something like a std::vector<float>
instead
Would it be possible?
FYI, I have the same for double, long and bool.