00001
#ifndef NMSTL_UTIL_H
00002
#define NMSTL_UTIL_H
00003
00004
00005
00006
#include <NMSTL/internal.h>
00007
#include <NMSTL/ptr>
00008
#include <NMSTL/text>
00009
#include <NMSTL/thread>
00010
#include <NMSTL/cthread>
00011
00012
#include <xercesc/util/XercesDefs.hpp>
00013
#include <xercesc/util/XMLException.hpp>
00014
#include <xercesc/dom/DOMException.hpp>
00015
00016
#ifdef XERCES_CPP_NAMESPACE
00017
using namespace xercesc;
00018
#endif
00019
00020 NMSTL_NAMESPACE_BEGIN;
00021
00022 string
to_string(
const XMLException& e);
00023 string
to_string(
const DOMException& e);
00024
00025 string
to_string(
const XMLCh* ch);
00026
00027 NMSTL_NAMESPACE_END;
00028
00029 #define memcpy __builtin_memcpy
00030
00031
#endif