Open
Graph Drawing
Framework

 v. 2025.10-dev (Foxglove)
 

Loading...
Searching...
No Matches
pugiconfig.h
Go to the documentation of this file.
1
14#ifndef HEADER_PUGICONFIG_HPP
15#define HEADER_PUGICONFIG_HPP
16
18
19// Uncomment this to enable wchar_t mode
20// #define PUGIXML_WCHAR_MODE
21
22// Uncomment this to enable compact mode
23// #define PUGIXML_COMPACT
24
25// Uncomment this to disable XPath
26// #define PUGIXML_NO_XPATH
27
28// Uncomment this to disable STL
29// #define PUGIXML_NO_STL
30
31// Uncomment this to disable exceptions
32#define PUGIXML_NO_EXCEPTIONS
33
34// Set this to control attributes for public classes/functions, i.e.:
35// #define PUGIXML_API __declspec(dllexport) // to export all public symbols from DLL
36// #define PUGIXML_CLASS __declspec(dllimport) // to import all classes from DLL
37// #define PUGIXML_FUNCTION __fastcall // to set calling conventions to all public functions to fastcall
38// In absence of PUGIXML_CLASS/PUGIXML_FUNCTION definitions PUGIXML_API is used instead
39#define PUGIXML_API OGDF_EXPORT
40
41// Tune these constants to adjust memory-related behavior
42// #define PUGIXML_MEMORY_PAGE_SIZE 32768
43// #define PUGIXML_MEMORY_OUTPUT_STACK 10240
44// #define PUGIXML_MEMORY_XPATH_PAGE_SIZE 4096
45
46// Tune this constant to adjust max nesting for XPath queries
47// #define PUGIXML_XPATH_DEPTH_LIMIT 1024
48
49// Uncomment this to switch to header-only version
50// #define PUGIXML_HEADER_ONLY
51
52// Uncomment this to enable long long support (usually enabled automatically)
53#define PUGIXML_HAS_LONG_LONG
54
55// Uncomment this to enable support for std::string_view (usually enabled automatically)
56// #define PUGIXML_HAS_STRING_VIEW
57
58#endif
59
Basic configuration file.