Program Listing for File macros.hpp

Return to documentation for file (/tmp/ws/src/ecl_lite/ecl_time_lite/include/ecl/time_lite/macros.hpp)

/*****************************************************************************
** Ifdefs
*****************************************************************************/

#ifndef ECL_TIME_LITE_MACROS_HPP_
#define ECL_TIME_LITE_MACROS_HPP_

/*****************************************************************************
** Includes
*****************************************************************************/

#include <ecl/config/macros.hpp>

/*****************************************************************************
** PreProcessing
*****************************************************************************/
/*
 * Import/exports symbols for the library
 */
#ifdef ECL_HAS_SHARED_LIBS // ecl is being built around shared libraries
  #ifdef ecl_time_lite_EXPORTS // we are building a shared lib/dll
    #define ecl_time_lite_PUBLIC ECL_HELPER_EXPORT
  #else // we are using shared lib/dll
    #define ecl_time_lite_PUBLIC ECL_HELPER_IMPORT
  #endif
  #define ecl_time_lite_LOCAL ECL_HELPERS_LOCAL
#else // ecl is being built around static libraries
  #define ecl_time_lite_PUBLIC
  #define ecl_time_lite_LOCAL
#endif


#endif /* ECL_TIME_LITE_MACROS_HPP_*/