COMP: Fix problem with namespace

This commit is contained in:
Andy Cedilnik 2006-03-16 11:21:01 -05:00
parent 8e137c54d6
commit 974e9d4667
1 changed files with 11 additions and 4 deletions

View File

@ -16,6 +16,17 @@
#include <@KWSYS_NAMESPACE@/Configure.h>
#if defined(__hpux)
#include <dl.h>
#elif defined(_WIN32)
#include <windows.h>
#elif defined(__APPLE__)
#include <AvailabilityMacros.h>
#if MAC_OS_X_VERSION_MIN_REQUIRED < 1030
#include <mach-o/dyld.h>
#endif
#endif
namespace @KWSYS_NAMESPACE@
{
/** \class DynamicLoader
@ -42,15 +53,11 @@ public:
// Ugly stuff for library handles
// They are different on several different OS's
#if defined(__hpux)
#include <dl.h>
typedef shl_t LibraryHandle;
#elif defined(_WIN32)
#include <windows.h>
typedef HMODULE LibraryHandle;
#elif defined(__APPLE__)
#include <AvailabilityMacros.h>
#if MAC_OS_X_VERSION_MIN_REQUIRED < 1030
#include <mach-o/dyld.h>
typedef NSModule LibraryHandle;
#else
typedef void* LibraryHandle;