Animación Vulkan 1.0
Animación de tiro libre baloncesto con motor gráfico desarrollado en clase
Cargando...
Buscando...
Nada coincide
pugiconfig.hpp
Ir a la documentación de este archivo.
1
11
12#ifndef HEADER_PUGICONFIG_HPP
13#define HEADER_PUGICONFIG_HPP
14
15// Uncomment this to enable wchar_t mode
16// #define PUGIXML_WCHAR_MODE
17
18// Uncomment this to enable compact mode
19// #define PUGIXML_COMPACT
20
21// Uncomment this to disable XPath
22// #define PUGIXML_NO_XPATH
23
24// Uncomment this to disable STL
25// #define PUGIXML_NO_STL
26
27// Uncomment this to disable exceptions
28// #define PUGIXML_NO_EXCEPTIONS
29
30// Set this to control attributes for public classes/functions, i.e.:
31// #define PUGIXML_API __declspec(dllexport) // to export all public symbols from DLL
32// #define PUGIXML_CLASS __declspec(dllimport) // to import all classes from DLL
33// #define PUGIXML_FUNCTION __fastcall // to set calling conventions to all public functions to fastcall
34// In absence of PUGIXML_CLASS/PUGIXML_FUNCTION definitions PUGIXML_API is used instead
35
36// Tune these constants to adjust memory-related behavior
37// #define PUGIXML_MEMORY_PAGE_SIZE 32768
38// #define PUGIXML_MEMORY_OUTPUT_STACK 10240
39// #define PUGIXML_MEMORY_XPATH_PAGE_SIZE 4096
40
41// Tune this constant to adjust max nesting for XPath queries
42// #define PUGIXML_XPATH_DEPTH_LIMIT 1024
43
44// Uncomment this to switch to header-only version
45// #define PUGIXML_HEADER_ONLY
46
47// Uncomment this to enable long long support (usually enabled automatically)
48// #define PUGIXML_HAS_LONG_LONG
49
50// Uncomment this to enable support for std::string_view (usually enabled automatically)
51// #define PUGIXML_HAS_STRING_VIEW
52
53#endif
54