00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _XQILLAPLATFORMUTILS_HPP
00023 #define _XQILLAPLATFORMUTILS_HPP
00024
00025 #include <xqilla/framework/XQillaExport.hpp>
00026
00027 #include <xercesc/util/XercesDefs.hpp>
00028 XERCES_CPP_NAMESPACE_BEGIN
00029 class MemoryManager;
00030 XERCES_CPP_NAMESPACE_END
00031
00036 class XQILLA_API XQillaPlatformUtils
00037 {
00038 public:
00039
00047 static void initialize(XERCES_CPP_NAMESPACE_QUALIFIER MemoryManager* memMgr = 0);
00048
00054 static void terminate();
00055
00062 static void enableExtendedPrecision(bool bEnable);
00063
00064 };
00065 #endif
00066