2009-09-28 19:37:35 +04:00
|
|
|
/*============================================================================
|
|
|
|
KWSys - Kitware System Library
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2003-07-10 22:32:30 +04:00
|
|
|
|
2009-09-28 19:37:35 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2003-07-10 22:32:30 +04:00
|
|
|
|
2009-09-28 19:37:35 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2003-07-10 22:32:30 +04:00
|
|
|
#ifndef KWSYS_NAMESPACE
|
2009-05-14 17:27:02 +04:00
|
|
|
# error "Do not include kwsysPrivate.h outside of kwsys c and cxx files."
|
2003-07-10 22:32:30 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _kwsysPrivate_h
|
|
|
|
#define _kwsysPrivate_h
|
|
|
|
|
|
|
|
/*
|
|
|
|
Define KWSYS_HEADER macro to help the c and cxx files include kwsys
|
|
|
|
headers from the configured namespace directory. The macro can be
|
|
|
|
used like this:
|
2009-05-14 17:26:47 +04:00
|
|
|
|
2003-07-10 22:32:30 +04:00
|
|
|
#include KWSYS_HEADER(Directory.hxx)
|
|
|
|
#include KWSYS_HEADER(std/vector)
|
|
|
|
*/
|
|
|
|
#define KWSYS_HEADER(x) KWSYS_HEADER0(KWSYS_NAMESPACE/x)
|
|
|
|
#define KWSYS_HEADER0(x) KWSYS_HEADER1(x)
|
|
|
|
#define KWSYS_HEADER1(x) <x>
|
|
|
|
|
2003-12-14 21:44:20 +03:00
|
|
|
/*
|
|
|
|
Define KWSYS_NAMESPACE_STRING to be a string constant containing the
|
|
|
|
name configured for this instance of the kwsys library.
|
|
|
|
*/
|
|
|
|
#define KWSYS_NAMESPACE_STRING KWSYS_NAMESPACE_STRING0(KWSYS_NAMESPACE)
|
|
|
|
#define KWSYS_NAMESPACE_STRING0(x) KWSYS_NAMESPACE_STRING1(x)
|
|
|
|
#define KWSYS_NAMESPACE_STRING1(x) #x
|
|
|
|
|
2003-07-10 22:32:30 +04:00
|
|
|
#else
|
2009-06-10 19:46:06 +04:00
|
|
|
# error "kwsysPrivate.h included multiple times."
|
2003-07-10 22:32:30 +04:00
|
|
|
#endif
|