Hi
I want to reverse engineer (untouched) C++ Code with nested namespaces.
They are declared in a dedicated header file. The analyzer can't resolve this.
Are there special settings in the analyzer I have to respect?
I wrote the simplified Code for my problem
in File a.h--------------------------
namespace nspace_1{
class CB;
namespace nspace_2{
class CC;
}
}
in File b.h--------------------------
#include "a.h"
class nspace_1::CB{
public:
int getVar1;
protected:
int var1;
}
in File c.h--------------------------
#include "a.h"
class nspace_1::nspace_2::CC{
public:
int getVar1;
protected:
int var1;
}
************************************************************************
* Rose Forum is a public venue for ideas and discussions.
* For technical support, visit http://www.rational.com/support
*
* Admin.Subscription Requests: [EMAIL PROTECTED]
* Archive of messages:
http://www.rational.com/products/rose/usergroups/rose_forum.jtmpl
* Other Requests: [EMAIL PROTECTED]
*
* To unsubscribe from the list, please send email
*
* To: [EMAIL PROTECTED]
* Subject:<BLANK>
* Body: unsubscribe rose_forum
*
*************************************************************************