In C++ I have a file A.cpp that has the following in it:
namespace Foo {
bool Bar()
{
return true;
}
}
How would I declare this function in A.h? How do I handle the namespace?
In C++ I have a file A.cpp that has the following in it:
namespace Foo {
bool Bar()
{
return true;
}
}
How would I declare this function in A.h? How do I handle the namespace?