xmlbeansxx icon indicating copy to clipboard operation
xmlbeansxx copied to clipboard

xmlbeansxx is an open source C++ library easing the processing of XML data. It is very similar to and in fact was inspired by Apache XMLBeans. The goal is to have the same functionalities and interfac...

Results 11 xmlbeansxx issues
Sort by recently updated
recently updated
newest added

File `c.xsd` defines types `car-type` and `content-type`. This produces code in `c.h`: ``` class car-type; class content-type; ``` which fails to compile: ``` make[4]: Entering directory `/tmp/xmlbeansxx/examples/small' ... In file...

Hi there! This is WhitespaceBot. I'm an [open-source](https://github.com/Gunio/LightWrite) robot that removes trailing white space in your code, and gives you a gitignore file if you didn't have one! Why whitespace?...

When I run program using xmlbeansxx and generated classes (large xsd scheme), whatever I do, memory usage never goes lower than 300k. Is there any way to destroy allocated memory...

I have a shema that includes enum values which has the same names as macro defines. ``` ``` It generates to: ``` static const Enum MACRO1; static const Enum MACRO2;...

I'm getting errors when building without cppunit: xmlbeansxx$ ./cbootstrap -- The C compiler identification is GNU -- The CXX compiler identification is GNU -- Check for working C compiler: /usr/bin/gcc...

When I run ./cbootstrap it says that log4cxx is missing, while the wiki says it is optional.

Valgrind reports possible memory leaks in my project that uses xmlbeansxx: ==26378== 32,196 bytes in 23 blocks are possibly lost in loss record 2,628 of 2,628 ==26378== at 0x4C27CC1: operator...

I'm trying to port xmlbeansxx to the system where exceptions are not available. So, I need to replace exceptions with return value. Do you have any suggestions? Where should I...