MarkLogic Connect
MarkLogic Connect Client API Collection
pugiconfig.hpp
1 
14 #ifndef HEADER_PUGICONFIG_HPP
15 #define HEADER_PUGICONFIG_HPP
16 
17 #ifdef _WIN32
18 #define PUGIXML_API __declspec(dllexport)
19 #endif
20 
21 // Uncomment this to enable wchar_t mode
22 // #define PUGIXML_WCHAR_MODE
23 
24 // Uncomment this to enable compact mode
25 // #define PUGIXML_COMPACT
26 
27 // Uncomment this to disable XPath
28 // #define PUGIXML_NO_XPATH
29 
30 // Uncomment this to disable STL
31 // #define PUGIXML_NO_STL
32 
33 // Uncomment this to disable exceptions
34 // #define PUGIXML_NO_EXCEPTIONS
35 
36 // Set this to control attributes for public classes/functions, i.e.:
37 // #define PUGIXML_API __declspec(dllexport) // to export all public symbols from DLL
38 // #define PUGIXML_CLASS __declspec(dllimport) // to import all classes from DLL
39 // #define PUGIXML_FUNCTION __fastcall // to set calling conventions to all public functions to fastcall
40 // In absence of PUGIXML_CLASS/PUGIXML_FUNCTION definitions PUGIXML_API is used instead
41 
42 // Tune these constants to adjust memory-related behavior
43 // #define PUGIXML_MEMORY_PAGE_SIZE 32768
44 // #define PUGIXML_MEMORY_OUTPUT_STACK 10240
45 // #define PUGIXML_MEMORY_XPATH_PAGE_SIZE 4096
46 
47 // Uncomment this to switch to header-only version
48 // #define PUGIXML_HEADER_ONLY
49 
50 // Uncomment this to enable long long support
51 // #define PUGIXML_HAS_LONG_LONG
52 
53 #endif
54