wccapi_export.h 203 B

12345678910111213
  1. #ifndef WCCAPI_EXPORT_H
  2. #define WCCAPI_EXPORT_H
  3. #include <QtCore/qglobal.h>
  4. #if defined(WCCAPI_LIBRARY)
  5. # define WCCAPI_EXPORT Q_DECL_EXPORT
  6. #else
  7. # define WCCAPI_EXPORT Q_DECL_IMPORT
  8. #endif
  9. #endif