I've got a namespace like
namespace FOO::BAR {
[..] myNameSpaceContent [..]
}
The MOC compiler spots an error on the first ligne. This error disappears when I put :
namespace FOO {
namespace BAR {
[..] myNameSpaceContent [..]
}
}
Do you happen to know how I can solve that MOC problem ?