On quarta-feira, 20 de março de 2013 08.52.45, Friedemann Kleint wrote: > But it should be possible by introducing a special export macro for it - > such that the application sees "export", and while building the library, > "import" is seen?
It might be possible to do that. Someone needs to test it:
class Q_CORE_EXPORT Foo
{
public:
void thisMethodIsInCore();
Q_GUI_EXPORT void thisMethodIsInGui();
bool thisIsInline() { return true; }
};
Please try compiling QtCore, QtGui and an application, in debug mode, calling
all three methods (except for the Gui method in QtCore).
--
Thiago Macieira - thiago.macieira (AT) intel.com
Software Architect - Intel Open Source Technology Center
signature.asc
Description: This is a digitally signed message part.
_______________________________________________ Releasing mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/releasing
