I know that if I want to use Objective-C classes in Swift, I have to use the bridging header. I know that I can use Objective-C and C++ in the same file via the .mm extension.
Now can I have a file that uses a class written in Objective-C++ and import it into a Swift based project via the bridging header?
I know a similar question that has been asked on Stack Overflow, but the user asked if he/she can use Swift and C++ in the same FILE, not project via a bridging header.