diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:42:50 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:42:50 +0300 |
| commit | 5fad10f89c485cfdc7b99011f07609f8871160d4 (patch) | |
| tree | 1860b39753b652dfe54d3cbbc80c875f40198d1f /json4cpp/nlohmann_json.natvis | |
| parent | 292baed7ac0cf84263263966ed32ed113cae857f (diff) | |
| parent | 9a737481aed085fd289f82dff1fa8c3c66627a7e (diff) | |
| download | Project-Tick-5fad10f89c485cfdc7b99011f07609f8871160d4.tar.gz Project-Tick-5fad10f89c485cfdc7b99011f07609f8871160d4.zip | |
Add 'json4cpp/' from commit '9a737481aed085fd289f82dff1fa8c3c66627a7e'
git-subtree-dir: json4cpp
git-subtree-mainline: 292baed7ac0cf84263263966ed32ed113cae857f
git-subtree-split: 9a737481aed085fd289f82dff1fa8c3c66627a7e
Diffstat (limited to 'json4cpp/nlohmann_json.natvis')
| -rw-r--r-- | json4cpp/nlohmann_json.natvis | 278 |
1 files changed, 278 insertions, 0 deletions
diff --git a/json4cpp/nlohmann_json.natvis b/json4cpp/nlohmann_json.natvis new file mode 100644 index 0000000000..09a46d67d8 --- /dev/null +++ b/json4cpp/nlohmann_json.natvis @@ -0,0 +1,278 @@ +<?xml version="1.0" encoding="utf-8"?> + +<!-- * * * * * * * * AUTO-GENERATED FILE * * * * * * * * --> +<!-- Edit ./tools/generate_natvis/nlohmann_json.natvis.j2 --> +<!-- * * * * * * * * AUTO-GENERATED FILE * * * * * * * * --> + +<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010"> + <!-- Namespace nlohmann --> + <Type Name="nlohmann::basic_json<*>"> + <DisplayString Condition="m_data.m_type == nlohmann::detail::value_t::null">null</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::detail::value_t::object">{*(m_data.m_value.object)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::detail::value_t::array">{*(m_data.m_value.array)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::detail::value_t::string">{*(m_data.m_value.string)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::detail::value_t::boolean">{m_data.m_value.boolean}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::detail::value_t::number_integer">{m_data.m_value.number_integer}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::detail::value_t::number_unsigned">{m_data.m_value.number_unsigned}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::detail::value_t::number_float">{m_data.m_value.number_float}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::detail::value_t::discarded">discarded</DisplayString> + <Expand> + <ExpandedItem Condition="m_data.m_type == nlohmann::detail::value_t::object"> + *(m_data.m_value.object),view(simple) + </ExpandedItem> + <ExpandedItem Condition="m_data.m_type == nlohmann::detail::value_t::array"> + *(m_data.m_value.array),view(simple) + </ExpandedItem> + </Expand> + </Type> + + <!-- Skip the pair first/second members in the treeview while traversing a map. + Only works in VS 2015 Update 2 and beyond using the new visualization --> + <Type Name="std::pair<*, nlohmann::basic_json<*>>" IncludeView="MapHelper"> + <DisplayString>{second}</DisplayString> + <Expand> + <ExpandedItem>second</ExpandedItem> + </Expand> + </Type> + + <!-- Namespace nlohmann::json_abi --> + <Type Name="nlohmann::json_abi::basic_json<*>"> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi::detail::value_t::null">null</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi::detail::value_t::object">{*(m_data.m_value.object)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi::detail::value_t::array">{*(m_data.m_value.array)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi::detail::value_t::string">{*(m_data.m_value.string)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi::detail::value_t::boolean">{m_data.m_value.boolean}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi::detail::value_t::number_integer">{m_data.m_value.number_integer}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi::detail::value_t::number_unsigned">{m_data.m_value.number_unsigned}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi::detail::value_t::number_float">{m_data.m_value.number_float}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi::detail::value_t::discarded">discarded</DisplayString> + <Expand> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi::detail::value_t::object"> + *(m_data.m_value.object),view(simple) + </ExpandedItem> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi::detail::value_t::array"> + *(m_data.m_value.array),view(simple) + </ExpandedItem> + </Expand> + </Type> + + <!-- Skip the pair first/second members in the treeview while traversing a map. + Only works in VS 2015 Update 2 and beyond using the new visualization --> + <Type Name="std::pair<*, nlohmann::json_abi::basic_json<*>>" IncludeView="MapHelper"> + <DisplayString>{second}</DisplayString> + <Expand> + <ExpandedItem>second</ExpandedItem> + </Expand> + </Type> + + <!-- Namespace nlohmann::json_abi_v3_12_0 --> + <Type Name="nlohmann::json_abi_v3_12_0::basic_json<*>"> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_v3_12_0::detail::value_t::null">null</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_v3_12_0::detail::value_t::object">{*(m_data.m_value.object)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_v3_12_0::detail::value_t::array">{*(m_data.m_value.array)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_v3_12_0::detail::value_t::string">{*(m_data.m_value.string)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_v3_12_0::detail::value_t::boolean">{m_data.m_value.boolean}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_v3_12_0::detail::value_t::number_integer">{m_data.m_value.number_integer}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_v3_12_0::detail::value_t::number_unsigned">{m_data.m_value.number_unsigned}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_v3_12_0::detail::value_t::number_float">{m_data.m_value.number_float}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_v3_12_0::detail::value_t::discarded">discarded</DisplayString> + <Expand> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_v3_12_0::detail::value_t::object"> + *(m_data.m_value.object),view(simple) + </ExpandedItem> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_v3_12_0::detail::value_t::array"> + *(m_data.m_value.array),view(simple) + </ExpandedItem> + </Expand> + </Type> + + <!-- Skip the pair first/second members in the treeview while traversing a map. + Only works in VS 2015 Update 2 and beyond using the new visualization --> + <Type Name="std::pair<*, nlohmann::json_abi_v3_12_0::basic_json<*>>" IncludeView="MapHelper"> + <DisplayString>{second}</DisplayString> + <Expand> + <ExpandedItem>second</ExpandedItem> + </Expand> + </Type> + + <!-- Namespace nlohmann::json_abi_diag --> + <Type Name="nlohmann::json_abi_diag::basic_json<*>"> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag::detail::value_t::null">null</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag::detail::value_t::object">{*(m_data.m_value.object)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag::detail::value_t::array">{*(m_data.m_value.array)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag::detail::value_t::string">{*(m_data.m_value.string)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag::detail::value_t::boolean">{m_data.m_value.boolean}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag::detail::value_t::number_integer">{m_data.m_value.number_integer}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag::detail::value_t::number_unsigned">{m_data.m_value.number_unsigned}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag::detail::value_t::number_float">{m_data.m_value.number_float}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag::detail::value_t::discarded">discarded</DisplayString> + <Expand> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_diag::detail::value_t::object"> + *(m_data.m_value.object),view(simple) + </ExpandedItem> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_diag::detail::value_t::array"> + *(m_data.m_value.array),view(simple) + </ExpandedItem> + </Expand> + </Type> + + <!-- Skip the pair first/second members in the treeview while traversing a map. + Only works in VS 2015 Update 2 and beyond using the new visualization --> + <Type Name="std::pair<*, nlohmann::json_abi_diag::basic_json<*>>" IncludeView="MapHelper"> + <DisplayString>{second}</DisplayString> + <Expand> + <ExpandedItem>second</ExpandedItem> + </Expand> + </Type> + + <!-- Namespace nlohmann::json_abi_diag_v3_12_0 --> + <Type Name="nlohmann::json_abi_diag_v3_12_0::basic_json<*>"> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_v3_12_0::detail::value_t::null">null</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_v3_12_0::detail::value_t::object">{*(m_data.m_value.object)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_v3_12_0::detail::value_t::array">{*(m_data.m_value.array)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_v3_12_0::detail::value_t::string">{*(m_data.m_value.string)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_v3_12_0::detail::value_t::boolean">{m_data.m_value.boolean}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_v3_12_0::detail::value_t::number_integer">{m_data.m_value.number_integer}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_v3_12_0::detail::value_t::number_unsigned">{m_data.m_value.number_unsigned}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_v3_12_0::detail::value_t::number_float">{m_data.m_value.number_float}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_v3_12_0::detail::value_t::discarded">discarded</DisplayString> + <Expand> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_diag_v3_12_0::detail::value_t::object"> + *(m_data.m_value.object),view(simple) + </ExpandedItem> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_diag_v3_12_0::detail::value_t::array"> + *(m_data.m_value.array),view(simple) + </ExpandedItem> + </Expand> + </Type> + + <!-- Skip the pair first/second members in the treeview while traversing a map. + Only works in VS 2015 Update 2 and beyond using the new visualization --> + <Type Name="std::pair<*, nlohmann::json_abi_diag_v3_12_0::basic_json<*>>" IncludeView="MapHelper"> + <DisplayString>{second}</DisplayString> + <Expand> + <ExpandedItem>second</ExpandedItem> + </Expand> + </Type> + + <!-- Namespace nlohmann::json_abi_ldvcmp --> + <Type Name="nlohmann::json_abi_ldvcmp::basic_json<*>"> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp::detail::value_t::null">null</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp::detail::value_t::object">{*(m_data.m_value.object)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp::detail::value_t::array">{*(m_data.m_value.array)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp::detail::value_t::string">{*(m_data.m_value.string)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp::detail::value_t::boolean">{m_data.m_value.boolean}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp::detail::value_t::number_integer">{m_data.m_value.number_integer}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp::detail::value_t::number_unsigned">{m_data.m_value.number_unsigned}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp::detail::value_t::number_float">{m_data.m_value.number_float}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp::detail::value_t::discarded">discarded</DisplayString> + <Expand> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_ldvcmp::detail::value_t::object"> + *(m_data.m_value.object),view(simple) + </ExpandedItem> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_ldvcmp::detail::value_t::array"> + *(m_data.m_value.array),view(simple) + </ExpandedItem> + </Expand> + </Type> + + <!-- Skip the pair first/second members in the treeview while traversing a map. + Only works in VS 2015 Update 2 and beyond using the new visualization --> + <Type Name="std::pair<*, nlohmann::json_abi_ldvcmp::basic_json<*>>" IncludeView="MapHelper"> + <DisplayString>{second}</DisplayString> + <Expand> + <ExpandedItem>second</ExpandedItem> + </Expand> + </Type> + + <!-- Namespace nlohmann::json_abi_ldvcmp_v3_12_0 --> + <Type Name="nlohmann::json_abi_ldvcmp_v3_12_0::basic_json<*>"> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp_v3_12_0::detail::value_t::null">null</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp_v3_12_0::detail::value_t::object">{*(m_data.m_value.object)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp_v3_12_0::detail::value_t::array">{*(m_data.m_value.array)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp_v3_12_0::detail::value_t::string">{*(m_data.m_value.string)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp_v3_12_0::detail::value_t::boolean">{m_data.m_value.boolean}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp_v3_12_0::detail::value_t::number_integer">{m_data.m_value.number_integer}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp_v3_12_0::detail::value_t::number_unsigned">{m_data.m_value.number_unsigned}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp_v3_12_0::detail::value_t::number_float">{m_data.m_value.number_float}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_ldvcmp_v3_12_0::detail::value_t::discarded">discarded</DisplayString> + <Expand> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_ldvcmp_v3_12_0::detail::value_t::object"> + *(m_data.m_value.object),view(simple) + </ExpandedItem> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_ldvcmp_v3_12_0::detail::value_t::array"> + *(m_data.m_value.array),view(simple) + </ExpandedItem> + </Expand> + </Type> + + <!-- Skip the pair first/second members in the treeview while traversing a map. + Only works in VS 2015 Update 2 and beyond using the new visualization --> + <Type Name="std::pair<*, nlohmann::json_abi_ldvcmp_v3_12_0::basic_json<*>>" IncludeView="MapHelper"> + <DisplayString>{second}</DisplayString> + <Expand> + <ExpandedItem>second</ExpandedItem> + </Expand> + </Type> + + <!-- Namespace nlohmann::json_abi_diag_ldvcmp --> + <Type Name="nlohmann::json_abi_diag_ldvcmp::basic_json<*>"> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp::detail::value_t::null">null</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp::detail::value_t::object">{*(m_data.m_value.object)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp::detail::value_t::array">{*(m_data.m_value.array)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp::detail::value_t::string">{*(m_data.m_value.string)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp::detail::value_t::boolean">{m_data.m_value.boolean}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp::detail::value_t::number_integer">{m_data.m_value.number_integer}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp::detail::value_t::number_unsigned">{m_data.m_value.number_unsigned}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp::detail::value_t::number_float">{m_data.m_value.number_float}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp::detail::value_t::discarded">discarded</DisplayString> + <Expand> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp::detail::value_t::object"> + *(m_data.m_value.object),view(simple) + </ExpandedItem> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp::detail::value_t::array"> + *(m_data.m_value.array),view(simple) + </ExpandedItem> + </Expand> + </Type> + + <!-- Skip the pair first/second members in the treeview while traversing a map. + Only works in VS 2015 Update 2 and beyond using the new visualization --> + <Type Name="std::pair<*, nlohmann::json_abi_diag_ldvcmp::basic_json<*>>" IncludeView="MapHelper"> + <DisplayString>{second}</DisplayString> + <Expand> + <ExpandedItem>second</ExpandedItem> + </Expand> + </Type> + + <!-- Namespace nlohmann::json_abi_diag_ldvcmp_v3_12_0 --> + <Type Name="nlohmann::json_abi_diag_ldvcmp_v3_12_0::basic_json<*>"> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp_v3_12_0::detail::value_t::null">null</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp_v3_12_0::detail::value_t::object">{*(m_data.m_value.object)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp_v3_12_0::detail::value_t::array">{*(m_data.m_value.array)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp_v3_12_0::detail::value_t::string">{*(m_data.m_value.string)}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp_v3_12_0::detail::value_t::boolean">{m_data.m_value.boolean}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp_v3_12_0::detail::value_t::number_integer">{m_data.m_value.number_integer}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp_v3_12_0::detail::value_t::number_unsigned">{m_data.m_value.number_unsigned}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp_v3_12_0::detail::value_t::number_float">{m_data.m_value.number_float}</DisplayString> + <DisplayString Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp_v3_12_0::detail::value_t::discarded">discarded</DisplayString> + <Expand> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp_v3_12_0::detail::value_t::object"> + *(m_data.m_value.object),view(simple) + </ExpandedItem> + <ExpandedItem Condition="m_data.m_type == nlohmann::json_abi_diag_ldvcmp_v3_12_0::detail::value_t::array"> + *(m_data.m_value.array),view(simple) + </ExpandedItem> + </Expand> + </Type> + + <!-- Skip the pair first/second members in the treeview while traversing a map. + Only works in VS 2015 Update 2 and beyond using the new visualization --> + <Type Name="std::pair<*, nlohmann::json_abi_diag_ldvcmp_v3_12_0::basic_json<*>>" IncludeView="MapHelper"> + <DisplayString>{second}</DisplayString> + <Expand> + <ExpandedItem>second</ExpandedItem> + </Expand> + </Type> + +</AutoVisualizer> |
