| 123456789101112131415161718192021222324252627 |
- /*=========================================================================
- Program: KWSys - Kitware System Library
- Module: $RCSfile$
- Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #ifndef @KWSYS_NAMESPACE@_Configure_h
- #define @KWSYS_NAMESPACE@_Configure_h
- #if defined(_WIN32) && @KWSYS_BUILD_SHARED@
- # if defined(@KWSYS_NAMESPACE@_EXPORTS)
- # define @KWSYS_NAMESPACE@_EXPORT __declspec(dllexport)
- # else
- # define @KWSYS_NAMESPACE@_EXPORT __declspec(dllimport)
- # endif
- #else
- # define @KWSYS_NAMESPACE@_EXPORT
- #endif
- #endif
|