ctkExport.h.in 508 B

123456789101112131415161718192021
  1. // .NAME __@MY_EXPORT_HEADER_PREFIX@Export - manage Windows system differences
  2. // .SECTION Description
  3. // The __@MY_EXPORT_HEADER_PREFIX@Export captures some system differences between Unix
  4. // and Windows operating systems.
  5. #ifndef __@MY_EXPORT_HEADER_PREFIX@Export_h
  6. #define __@MY_EXPORT_HEADER_PREFIX@Export_h
  7. #include <QtCore/qglobal.h>
  8. #if defined(@MY_LIBNAME@_EXPORTS)
  9. #define @MY_LIBRARY_EXPORT_DIRECTIVE@ Q_DECL_EXPORT
  10. #else
  11. #define @MY_LIBRARY_EXPORT_DIRECTIVE@ Q_DECL_IMPORT
  12. #endif
  13. #endif