Re: Interfacing D with C++ functions that take reference values

2018-10-03 Thread kinke via Digitalmars-d-learn
On Wednesday, 3 October 2018 at 23:05:10 UTC, solidstate1991 wrote: I need some C++ stuff, but some of the functions take reference values (Stuff&), and I don't know if this feature is emulated on D side with extern(C++) functions. Of course; you're restricted to D value types though (D class

Interfacing D with C++ functions that take reference values

2018-10-03 Thread solidstate1991 via Digitalmars-d-learn
I need some C++ stuff, but some of the functions take reference values (Stuff&), and I don't know if this feature is emulated on D side with extern(C++) functions. While I don't have to worry about it with functions that are defined in the header, other ones and classes are a different matter.