12345678910111213141516171819202122232425262728293031323334 |
- #ifndef KWSYS_NAMESPACE
- #error "Do not include kwsysPrivate.h outside of kwsys c and cxx files."
- #endif
- #ifndef _kwsysPrivate_h
- #define _kwsysPrivate_h
- #define KWSYS_HEADER(x) KWSYS_HEADER0(KWSYS_NAMESPACE/x)
- #define KWSYS_HEADER0(x) KWSYS_HEADER1(x)
- #define KWSYS_HEADER1(x) <x>
- #define KWSYS_NAMESPACE_STRING KWSYS_NAMESPACE_STRING0(KWSYS_NAMESPACE)
- #define KWSYS_NAMESPACE_STRING0(x) KWSYS_NAMESPACE_STRING1(x)
- #define KWSYS_NAMESPACE_STRING1(x) #x
- #else
- #error "kwsysPrivate.h included multiple times."
- #endif
|