passwordfile/global.h

28 lines
664 B
C
Raw Normal View History

2016-08-29 15:42:07 +02:00
// Created via CMake from template global.h.in
// WARNING! Any changes to this file will be overwritten by the next CMake run!
#ifndef PASSWORD_FILE_GLOBAL
#define PASSWORD_FILE_GLOBAL
#include <c++utilities/application/global.h>
#ifdef PASSWORD_FILE_STATIC
2017-05-01 03:25:30 +02:00
#define PASSWORD_FILE_EXPORT
#define PASSWORD_FILE_IMPORT
2016-08-29 15:42:07 +02:00
#else
2017-05-01 03:25:30 +02:00
#define PASSWORD_FILE_EXPORT LIB_EXPORT
#define PASSWORD_FILE_IMPORT LIB_IMPORT
2016-08-29 15:42:07 +02:00
#endif
2016-11-08 20:02:31 +01:00
/*!
* \def PASSWORD_FILE_EXPORT
* \brief Marks the symbol to be exported by the passwordfile library.
*/
/*!
* \def PASSWORD_FILE_IMPORT
* \brief Marks the symbol to be imported from the passwordfile library.
*/
2016-08-29 15:42:07 +02:00
#endif // PASSWORD_FILE_GLOBAL