Next: , Up: C++ mappings


6.2.1 Scoped names

The C++ mappings for scoped names use C++ scopes. IDL modules are mapped to namespaces. For instance, the following IDL:

      module m {
         const string str = "scoped string";
      };

would map into

      namespace m {
         const std::string str = "scoped string";
      }