File indexing completed on 2025-01-19 03:55:38

0001 #pragma once
0002 
0003 #include "digikam_export.h"
0004 
0005 #define O0_EXPORT DIGIKAM_EXPORT
0006 /*
0007 #ifndef O0_EXPORT
0008 // For exporting symbols from Windows' DLLs
0009 #if defined (_WIN32) && defined(O2_SHARED_LIB)
0010     #ifdef O2_DLL_EXPORT
0011         //#define O0_EXPORT __declspec(dllexport)
0012         #define O0_EXPORT  Q_DECL_EXPORT
0013     #else
0014         //#define O0_EXPORT __declspec(dllimport)
0015         #define O0_EXPORT Q_DECL_IMPORT
0016     #endif
0017 #else
0018     #define O0_EXPORT
0019 #endif
0020 
0021 #endif // O0_EXPORT
0022 */