If I have a class Foo in namespace bar:
namespace bar
{
class Foo { ... }
};
I can then:
using Baz = bar::Foo;
and now it is just like I defined the class in my namespace with the name Baz.
Is it possible to do the same for functions?
namespace bar
{
void f();
}
And then:
using g = bar::f; // error: ‘f’ in namespace ‘bar’ does not name a type
What is the safest method to carry this out?
The answer ought to apply to template functions as well.
Definition: If some entity B is an alias of some other entity A, then the (stripped) generated code is unchanged if any or all instances of A are substituted by B in the source code (but not declarations or definitions, of course).
An alias is typedef A B, for instance.
#define B A is a code name (at least).
In contrast to a "unaliased" A, which can have "immediate semantics," T& B = A is not an alias and B can be effectively implemented as an indirect pointer.