util/PropertyDef.h

Go to the documentation of this file.
00001 /*--------------------------------------------------------------------------
00002 Name:      PropertyDef.h
00003 Project:   xmlBlaster.org
00004 Copyright: xmlBlaster.org, see xmlBlaster-LICENSE file
00005 Comment:   Handling the Client data, defines operating system specific stuff.
00006 ---------------------------------------------------------------------------*/
00007 
00008 #ifndef _UTIL_PROPERTYDEF_H
00009 #define _UTIL_PROPERTYDEF_H
00010 
00011 // _WIN32 is deprecated, use _WINDOWS
00012 #if defined(_WIN32) || defined(_WINDOWS)
00013 #  define FILE_SEP "\\"
00014 #  define PATH_SEP ";"
00015 #else
00016 #  define FILE_SEP "/"
00017 #  define PATH_SEP ":"
00018 #  define _TERM_WITH_COLORS_ 1 // UNIX xterm can display colors (escape sequences) for nicer logging output
00019 #endif
00020 
00021 #endif