What is the difference between #include and #import in C++?
|
|
|
|
|||||||||||||
|
|
Import in VC++: The content of the type library is converted into C++ classes, mostly describing the COM interfaces for you automatically, and then it is included into your file. The The Import in gcc:
The import in gcc is different from the import in VC++. It is a simple way to include a header at most once only. (In VC++ and GCC you can do this via The Include: |
||||
|
|
|
work-around. It might be worth noting that Apple's Objective-C also uses |
||||
|
|
|
Please note that in gcc 4.1,
|
||||
|
|
|
import was also one of the keywords associated with n2073, Modules in C++, proposed to the language committee by Daveed Vandevoorde in September 2006. I'm not enough of a language geek to know if that proposal was definitively shelved or if it's awaiting an implementation (proof of concept) from the author or someone else... |
|||||||||||
|