blob: d8c6d2e98c5b2a0931aa1d929cf74e8f93f6d3ac [file] [log] [blame]
/*
* Copyright 2004-2004 The Apache Software Foundation.
// (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#if !defined(_PLATFORM_AUTOSENSE_HPP)
#define _PLATFORM_AUTOSENSE_HPP
#if defined( WIN32 )
#include "windows/PlatformSpecificWindows.hpp"
#elif defined ( __OS400__ )
#include "os400/PlatformSpecificOS400.hpp"
#elif defined ( AIX )
#include "aix/PlatformSpecificAIX.hpp"
#elif defined ( HPUX )
#include "hp-ux/PlatformSpecificHP-UX.hpp"
#else
#include "unix/PlatformSpecificUnix.hpp"
#endif
#endif