Is there a way to achieve the following using C++/Swift interoperability:
class MyCppClass
{
public:
...
...
private:
bool member1;
ACppClass member2;
ASwiftClass member3;
}
I'm aware of the recent C++/Objective-C interoperability compiler setting, but can't find any information on whether this is possible.
I've watched the Apple video: https://developer.apple.com/videos/play/wwdc2023/10172/
and seen this post from Quinn: https://developer.apple.com/forums/thread/768928
but I don't see anyone discussing this kind of situation. Thanks in advance.