Kdevelop 1.1beta2 Namespaces
Eric OURSEL
eric.oursel at serfrance.fr
Tue Feb 8 08:32:51 GMT 2000
There are some problems with the Namespace support in Kdevelop 1.1beta2.
It does not work for me. My C++ code is generated by Rational Rose.
As a simple example: two imbricated namespaces. This kind of
implementation works well in MS Studio.
aClass.h:
--------
namespace SER
{
namespace X
{
class aClass
{
aClass();
doSomething();
}
}
}
aClass.cpp:
----------
namespace SER
{
namespace X
{
aClass::aClass()
{ cout << "hello world" << endl;
};
aClass::doSomething()
{
cout << "hello again";
}
}
}
I am trying to fix that. Anyway, I am discovering the architecture of
the classparser. Not very easy for me.
Thanks for this wonderful product.
Best regards
Eric OURSEL
Software Architect
More information about the KDevelop
mailing list