Has anyone ever managed to set up a #define such that you can do code like: import("antigravity.cpp");
and have it expand to: #include "antigravity.cpp"
?
The preprocessor doesn't allow # inside a #define, unless it's inside a singly or doubly quoted string, so it's not possible.
And it'd be pretty pointless, anyway.