right, an export header usually looks like this
#ifndef MYLIB_EXPORT_H
#define MYLIB_EXPORT_H
#include <qglobal.h>
#ifndef MYLIB_EXPORT
# if defined(MAKE_MYLIB)
/* We are building this library */
# define MYLIB_EXPORT Q_DECL_EXPORT
# else
/* We are using this library */
# define MYLIB_EXPORT Q_DECL_IMPORT
# endif
#endif
#endif // MYLIB_EXPORT_H
#ifndef MYLIB_EXPORT_H
#define MYLIB_EXPORT_H
#include <qglobal.h>
#ifndef MYLIB_EXPORT
# if defined(MAKE_MYLIB)
/* We are building this library */
# define MYLIB_EXPORT Q_DECL_EXPORT
# else
/* We are using this library */
# define MYLIB_EXPORT Q_DECL_IMPORT
# endif
#endif
#endif // MYLIB_EXPORT_H
To copy to clipboard, switch view to plain text mode
Cheers,
_
Bookmarks