Integrations (PTC products, 3rd party products and code) > Code integration (Ada, ARINC 653, C, C#, C++, IDL, Java, SQL and VB) > C++ code > Auxiliary Topics > Example Code
  
Example Code
// C++ can have one, and only one, anonymous namespace
// i.e. the namespace with no name.
// The namespace would get reversed with the name unnamed0
// but generated as you see below
namespace
{
class foo
{
};
}