I made an enhancement to Protodef to allow for the ability to eliminate the namespace when pulling in the prototypes. So now you can make them look like this:
[cpp]
one::two::SomeClass::functionA()
{
}
one::two::SomeClass::functionB()
{
}
[/cpp]
… or this:
[cpp]
namespace one { namespace two {
SomeClass::functionA()
{
}
SomeClass::functionB()
{
}
} }
[/cpp]
(Protodef doesn’t put the namespace wrappers in for you – you would have done that by yourself. What it does do is allow you to skip putting in the one::two::.)
Comments