DBStorage_global.h 226 B

123456789101112
  1. #ifndef DBSTORAGE_GLOBAL_H
  2. #define DBSTORAGE_GLOBAL_H
  3. #include <QtCore/qglobal.h>
  4. #if defined(DBSTORAGE_LIBRARY)
  5. #define DBSTORAGE_EXPORT Q_DECL_EXPORT
  6. #else
  7. #define DBSTORAGE_EXPORT Q_DECL_IMPORT
  8. #endif
  9. #endif