Yep, it looks like the CGI part failed, I parsed the text OK on command line.
Looking through the dump xml I see it has isStatic property, but I can't seem to get it to set "true".
I can get isPointer, isArray, isReference to set "true". Maybe I'm doing something wrong, but it looks hopeful..
namespace ns1
{
class t_class
{
public:
int member1 ( const volatile int & param1 ) ;
static int member2 ( int param2_1[] ) ;
int * member3 ;
int member4[5] ;
} ;
t_class my_class ;
} ;