simongeilfus / Cinder-Runtime

Runtime-Compiled C++ for Cinder
57 stars 43 forks source link

Namespace support #17

Closed richardeakin closed 7 years ago

richardeakin commented 7 years ago

This adds support for types with namespaces (issue #14). It stores the type name in the BuildSettings and uses that instead of the module name when generating stuff like the factory placement new operators or vtable lookup. I added MiscTests with a test for namespaces, with the idea being we could add more little tests to that project as needed.

A couple notes:

simongeilfus commented 7 years ago

Thanks @richardeakin