C++11 mapping for IDL modules

An IDL module is always mapped to a C++ namespace. The alternate mappings as currently described in the existing IDL to C++ mapping will not be supported with the C++11 mapping.

// IDL
module M
{
// definitions
};


// C++
namespace M
{
// definitions
}

Your rating: None Average: 5 (1 vote)