| 123456789101112131415161718192021222324252627282930313233 | 
							
- // .NAME __@MY_EXPORT_HEADER_PREFIX@Export - manage Windows system differences
 
- // .SECTION Description
 
- // The __@MY_EXPORT_HEADER_PREFIX@Export captures some system differences between Unix
 
- // and Windows operating systems. 
 
- #ifndef __@MY_EXPORT_HEADER_PREFIX@Export_h
 
- #define __@MY_EXPORT_HEADER_PREFIX@Export_h
 
- #include "ctkCompilerDetections_p.h"
 
- #include <QtGlobal>
 
- #if defined(Q_OS_WIN) || defined(Q_OS_SYMBIAN)
 
- #  if defined(@MY_LIBNAME@_EXPORTS)
 
- #    define @MY_LIBRARY_EXPORT_DIRECTIVE@ Q_DECL_EXPORT
 
- #  else
 
- #    define @MY_LIBRARY_EXPORT_DIRECTIVE@ Q_DECL_IMPORT
 
- #  endif
 
- #endif
 
- #if !defined(@MY_LIBRARY_EXPORT_DIRECTIVE@)
 
- //#  if defined(CTK_SHARED)
 
- #    define @MY_LIBRARY_EXPORT_DIRECTIVE@ Q_DECL_EXPORT
 
- //#  else
 
- //#    define @MY_LIBRARY_EXPORT_DIRECTIVE@
 
- //#  endif
 
- #endif
 
- #endif
 
 
  |