//%///////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // //============================================================================== // // Author: Mike Brasher (mbrasher@bmc.com) // // Modified By: // //%///////////////////////////////////////////////////////////////////////////// #ifndef Pegasus_Config_h #define Pegasus_Config_h #include #include #if defined(PEGASUS_PLATFORM_WIN32_IX86_MSVC) # include #elif defined (PEGASUS_PLATFORM_LINUX_IX86_GNU) # include #elif defined (PEGASUS_PLATFORM_AIX_RS_IBMCXX) # include #elif defined (PEGASUS_PLATFORM_HPUX_PARISC_ACC) # include #else # error ": Unsupported Platform" #endif #ifdef PEGASUS_HAVE_NAMESPACES # define PEGASUS_NAMESPACE_BEGIN namespace Pegasus { # define PEGASUS_NAMESPACE_END } # define PEGASUS_STD(X) std::X # define PEGASUS_USING_STD using namespace std # define PEGASUS_USING_PEGASUS using namespace Pegasus #else # define PEGASUS_NAMESPACE_BEGIN /* empty */ # define PEGASUS_NAMESPACE_END /* empty */ # define PEGASUS_STD(X) X # define PEGASUS_USING_STD # define PEGASUS_USING_PEGASUS #endif #ifdef PEGASUS_HAVE_EXPLICIT # define PEGASUS_EXPLICIT explicit #else # define PEGASUS_EXPLICIT /* empty */ #endif #ifdef PEGASUS_HAVE_MUTABLE # define PEGASUS_MUTABLE mutable #else # define PEGASUS_MUTABLE /* empty */ #endif #ifndef PEGASUS_HAVE_FOR_SCOPE # define for if (0) ; else for #endif #ifdef PEGASUS_HAVE_TEMPLATE_SPECIALIZATION # define PEGASUS_TEMPLATE_SPECIALIZATION template <> #else # define PEGASUS_TEMPLATE_SPECIALIZATION #endif PEGASUS_NAMESPACE_BEGIN #ifdef PEGASUS_HAVE_BOOLEAN typedef bool Boolean; #else # include #endif typedef unsigned char Uint8; typedef char Sint8; typedef unsigned short Uint16; typedef short Sint16; typedef unsigned int Uint32; typedef int Sint32; typedef float Real32; typedef double Real64; typedef PEGASUS_UINT64 Uint64; typedef PEGASUS_SINT64 Sint64; #define PEGASUS_NOT_FOUND Uint32(-1) #define PEG_NOT_FOUND Uint32(-1) PEGASUS_NAMESPACE_END #define PEGASUS_TRACE \ PEGASUS_STD(cout) << __FILE__ << '(' << __LINE__ << ')' << PEGASUS_STD(endl) #define PEGASUS_OUT(X) \ PEGASUS_STD(cout) << #X << "=[" << X << "]" << PEGASUS_STD(endl) #endif /* Pegasus_Config_h */