cpp anonymous namespace code example
Example 1: c++ custom namespace
//using namespaces
using namespace std;
//creating namespaces
namespace custom{
class example{
public:
static int method(){
return 0;
}
};
};
//using custom namespaces
using namespace custom;
Example 2: alias namespaces c++
// Instead of
boost::numeric::ublas::vector<double> v;
// Use namespace aliasing
namespace ublas = boost::numeric::ublas;
ublas::vector<double> v;