Hi All!
I'd like to use namespaces with classes and __declspec(dllimport),
__declspec(dllexport).
first case:
//----------------------------------------------------------
//! \namespace NS Doc for namespace NS.
namespace NS {
//! Doc for C1 class.
class C1 {
.
.
.
};
}
works fine NS::C1 class documented correctly.
//----------------------------------------------------------
second case:
//----------------------------------------------------------
//! \namespace NS Doc for namespace NS.
namespace NS {
//! Doc for C1 class.
class __declspec(dllexport) C1 {
.
.
.
};
}
does not work :(( NS::C1 not documented
//----------------------------------------------------------
third case: // no namespace
//----------------------------------------------------------
//! Doc for C1 class.
class __declspec(dllexport) C1 {
.
.
.
};
works fine (of course) C1 class documented correctly
//----------------------------------------------------------
What am i doing wrong?
TIA
Hofi
|