(file) Return to Config.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/Config.h between version 1.10 and 1.14

version 1.10, 2001/04/26 17:21:28 version 1.14, 2001/05/24 00:48:36
Line 25 
Line 25 
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 ////////////////////////////////////////////////////////////////////////////////  
 //  
 // Config.h  
 //  
 ////////////////////////////////////////////////////////////////////////////////  
   
 #ifndef Pegasus_Config_h #ifndef Pegasus_Config_h
 #define Pegasus_Config_h #define Pegasus_Config_h
  
 #include <iostream> #include <iostream>
   #include <cstdlib>
  
 #if defined(PEGASUS_PLATFORM_WIN32_IX86_MSVC) #if defined(PEGASUS_PLATFORM_WIN32_IX86_MSVC)
 # include <Pegasus/Common/Platform_WIN32_IX86_MSVC.h> # include <Pegasus/Common/Platform_WIN32_IX86_MSVC.h>
 #elif defined (PEGASUS_PLATFORM_LINUX_IX86_GNU) #elif defined (PEGASUS_PLATFORM_LINUX_IX86_GNU)
 # include <Pegasus/Common/Platform_LINUX_IX86_GNU.h> # include <Pegasus/Common/Platform_LINUX_IX86_GNU.h>
   #elif defined (PEGASUS_PLATFORM_AIX_RS_IBMCXX)
   # include <Pegasus/Common/Platform_AIX_RS_IBMCXX.h>
   #elif defined (PEGASUS_PLATFORM_HPUX_PARISC_ACC)
   # include <Pegasus/Common/Platform_HPUX_PARISC_ACC.h>
 #else #else
 # error "<Pegasus/Common/Config.h>: Unsupported Platform" # error "<Pegasus/Common/Config.h>: Unsupported Platform"
 #endif #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 <Pegasus/Common/Boolean.h>
   #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 \ #define PEGASUS_TRACE \
     std::cout << __FILE__ << '(' << __LINE__ << ')' << std::endl      PEGASUS_STD(cout) << __FILE__ << '(' << __LINE__ << ')' << PEGASUS_STD(endl)
  
 #define PEGASUS_OUT(X) std::cout << #X << "=[" << X << "]" << std::endl  #define PEGASUS_OUT(X) \
       PEGASUS_STD(cout) << #X << "=[" << X << "]" << PEGASUS_STD(endl)
  
 #endif  /* Pegasus_Config_h */ #endif  /* Pegasus_Config_h */


Legend:
Removed from v.1.10  
changed lines
  Added in v.1.14

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2