test_include_CXX.cxx 747 B

12345678910111213141516171819202122
  1. /*============================================================================
  2. Kitware Information Macro Library
  3. Copyright 2010-2011 Kitware, Inc.
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #include <string>
  11. /* Test KWIML header inclusion after above system headers. */
  12. #include "test.h"
  13. #include KWIML_HEADER(ABI.h)
  14. #include KWIML_HEADER(INT.h)
  15. extern "C" int test_include_CXX(void)
  16. {
  17. return 1;
  18. }