diff --git a/CMakeLists.txt b/CMakeLists.txt index 910cb77..1be22a6 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,4 +9,5 @@ message(STATUS "main project dir: " ${PROJECT_SOURCE_DIR}) add_subdirectory(sdk_core sdk_core) add_subdirectory(sample/hub) add_subdirectory(sample/lidar) - +add_subdirectory(sample/hub_lvx_file) +add_subdirectory(sample/lidar_lvx_file) diff --git a/LICENSE.txt b/LICENSE.txt index b31c2bc..0201796 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -6,9 +6,19 @@ Livox-SDK │   ├── hub │   │   ├── CMakeLists.txt │   │   └── main.c -│   └── lidar -│   ├── CMakeLists.txt -│   └── main.c +│   ├── hub_lvx_file +│   │   ├── CMakeLists.txt +│   │   ├── lvx_file.cpp +│   │   ├── lvx_file.h +│   │   └── main.cpp +│   ├── lidar +│   │   ├── CMakeLists.txt +│   │   └── main.c +│   └── lidar_lvx_file +│   ├── CMakeLists.txt +│   ├── lvx_file.cpp +│   ├── lvx_file.h +│   └── main.cpp └── sdk_core ├── CMakeLists.txt ├── include @@ -700,3 +710,58 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +=============================================================== +LIVOX’s Livox SDK uses unmodified libraries of rapidxml(http://rapidxml.sourceforge.net/), which is licensed under the Boost Software License and MIT license. A copy of the Boost Software License and MIT license is provided below and is also available at http://rapidxml.sourceforge.net/license.txt. + +Use of this software is granted under one of the following two licenses, +to be chosen freely by the user. + +1. Boost Software License - Version 1.0 - August 17th, 2003 +=============================================================================== + +Copyright (c) 2006, 2007 Marcin Kalicinski + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + +2. The MIT License +=============================================================================== + +Copyright (c) 2006, 2007 Marcin Kalicinski + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index 1db7eb5..bee1b65 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,13 @@ Livox SDK consists of Livox SDK communication protocol, Livox SDK core, Livox SD # 2 Livox SDK Communication Protocol -Livox SDK communication protocol opens to all users. It is the communication protocol between user programs and Livox products. The protocol consists of control commands and data format. Please refer to the [Livox SDK Communication Protocol](doc/Livox_SDK_Communication_Protocol_EN_20190117.pdf) for detailed information. +Livox SDK communication protocol opens to all users. It is the communication protocol between user programs and Livox products. The protocol consists of control commands and data format. Please refer to the [Livox SDK Communication Protocol]() for detailed information. # 3 Livox SDK Core Livox SDK provides the implementation of control commands and point cloud data transmission, as well as the C/C++ API. The basic structure of Livox SDK core is shown as below: -![sdk](doc/images/sdk.png) +![Livox SDK Architecture](doc/images/sdk.png) User Datagram Protocol (UDP) is used for communication between Livox SDK and LiDAR sensors. Please refer to the Livox SDK Communication Protocol for further information. Point cloud data handler supports point cloud data transmission, while command handler receives and sends control commands. And the C/C++ API is based on command handler and point cloud data handler. @@ -25,7 +25,7 @@ The Livox LiDAR sensors can be connected to host directly or through the Livox H # 4 Livox SDK API -Livox SDK API provides a set of C style functions which can be conveniently integrated in C/C++ programs. Please refer to the [Livox SDK API Reference](doc/Livox_LiDAR_SDK_API_Reference.pdf) for further information. +Livox SDK API provides a set of C style functions which can be conveniently integrated in C/C++ programs. Please refer to the [Livox SDK API Reference](https://livox-sdk.github.io/Livox-SDK/) for further information. ## 4.1 Installation The installation procedures in Ubuntu 16.04/14.04 LTS and Windows 7/10 are shown here as examples. @@ -79,30 +79,8 @@ You can now compile the Livox SDK in Visual Studio. ## 4.2 Run Livox SDK Sample Two samples are provided in Sample/Lidar and Sample/Hub, which demonstrate how to configure Livox LiDAR units and receive the point cloud data when directly connecting Livox SDK to LiDAR units or by using a Livox Hub, respectively. The sequence diagram is shown as below: -![sample](doc/images/sample.png) +![](doc/images/sample.png) -**NOTE**: We will connect all the broadcast device in default. You can also use program options in `4.2.3 Program Options` to connect specific device by the broadcast code. Or you can input the broadcast code list in sample. If you choose this way, please comment the following code section: -``` -/** Connect all the broadcast device. */ -int lidar_count = 0; -char broadcast_code_list[kMaxLidarCount][kBroadcastCodeSize]; -``` -Remove the comment of the following code section, set the BROADCAST_CODE_LIST_SIZE and replace the broadcast code lists in the `main.c` for both LiDAR sample ({Livox-SDK}/sample/lidar/main.c) and Hub sample ({Livox-SDK}/sample/hub/main.c) with the broadcast code of your devices before building. -``` -/** Connect the broadcast device in list, please input the broadcast code and modify the BROADCAST_CODE_LIST_SIZE. */ -/*#define BROADCAST_CODE_LIST_SIZE 3 -int lidar_count = BROADCAST_CODE_LIST_SIZE; -char broadcast_code_list[kMaxLidarCount][kBroadcastCodeSize] = { - "000000000000002", - "000000000000003", - "000000000000004" -};*/ -``` -The broadcast code consists of its serial number and an additional number (1,2, or 3). The serial number can be found on the body of the LiDAR unit (below the QR code). The detailed format is shown as below: - -![sample](doc/images/broadcast_code.png) - -Again, steps for running the samples in Ubuntu 16.04 LTS and Windows 7/10 are shown here as examples. ### 4.2.1 Ubuntu 16.04 /14.04 LTS For Ubuntun 16.04/14.04 LTS, run the *lidar_sample* if connect with the LiDAR unit(s): ``` @@ -117,12 +95,27 @@ After compiling the Livox SDK as shown in section 4.1.2, you can find `hub_sampl Then you can see the information as below: -![sample](doc/images/sdk_init.png) +![](doc/images/sdk_init.png) -### 4.2.3 Program Options -We provide the following program options for the broadcast code and log file: +### 4.3 Connect to the specific LiDAR units + +Samples we provided will connect all the broadcast device in you LAN in default.There are two ways to connect the specific units: + +* run sample with input options + +* edit the Broadcast Code list in source code + +**NOTE:** + +Each Livox LiDAR unit owns a unique Broadcast Code . The broadcast code consists of its serial number and an additional number (1,2, or 3). The serial number can be found on the body of the LiDAR unit (below the QR code).The Broadcast Code may be used when you want to connect to the specific LiDAR unit(s). The detailed format is shown as below: + +![Broadcast Code](doc/images/broadcast_code.png) + +#### 4.3.1 Program Options + +We provide the following program options for connecting the specific units and saving log file: ``` -[-c]:Register device broadcast code. +[-c]:Register LiDAR units by Broadcast Code. Connect the registered units ONLY. [-l]:Save the log file(In the executable file's directory). [-h]:Show help. ``` @@ -132,7 +125,48 @@ Here is the example: ./hub_sample -c "00000000000001" -l ``` +#### 4.3.2 Edit Broadcast Code List + + Comment the following code section: + +``` +/** Connect all the broadcast device. */ +int lidar_count = 0; +char broadcast_code_list[kMaxLidarCount][kBroadcastCodeSize]; +``` + +Remove the comment of the following code section, set the BROADCAST_CODE_LIST_SIZE and replace the broadcast code lists in the `main.c` for both LiDAR sample ({Livox-SDK}/sample/lidar/main.c) and Hub sample ({Livox-SDK}/sample/hub/main.c) with the broadcast code of your devices before building. + +``` +/** Connect the broadcast device in list, please input the broadcast code and modify the BROADCAST_CODE_LIST_SIZE. */ +/*#define BROADCAST_CODE_LIST_SIZE 3 +int lidar_count = BROADCAST_CODE_LIST_SIZE; +char broadcast_code_list[kMaxLidarCount][kBroadcastCodeSize] = { + "000000000000002", + "000000000000003", + "000000000000004" +};*/ +``` + +### 4.4 Generate the lvx file + +We provide the C++ sample to generate the lvx file for hub and LiDAR unit(s). You can use the same way in `4.2.1` and `4.2.2` to run them. + +#### 4.4.1 Program Options + +You can alse use the program options in `4.3.1` to connect specific device and generate the log file, and we provide two new options for lvx file: +``` +[-t] Time to save point cloud to the lvx file.(unit: s) +[-p] Get the extrinsic parameter from standard extrinsic.xml file(The same as viewer) in the executable file's directory.(Especially for LiDAR unit(s) as the hub will calculate the extrinsic parameter by itself) +``` +Here is the example: +``` +./lidar_lvx_sample -c "00000000000002&00000000000003&00000000000004" -l -t 10 -p +./hub_lvx_sample -c "00000000000001" -l -t 10 +``` + # 5 Support + You can get support from Livox with the following methods: * Send email to dev@livoxtech.com with a clear description of your problem and your setup * Github Issues diff --git a/doc/images/1.png b/doc/images/1.png new file mode 100644 index 0000000..2ce807c Binary files /dev/null and b/doc/images/1.png differ diff --git a/docs/_fast_c_r_c_8h.html b/docs/_fast_c_r_c_8h.html index 9c7747b..33b2f8e 100644 --- a/docs/_fast_c_r_c_8h.html +++ b/docs/_fast_c_r_c_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/_fast_c_r_c_8h_source.html b/docs/_fast_c_r_c_8h_source.html index 9c48108..5438699 100644 --- a/docs/_fast_c_r_c_8h_source.html +++ b/docs/_fast_c_r_c_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/_r_e_a_d_m_e_8md.html b/docs/_r_e_a_d_m_e_8md.html new file mode 100644 index 0000000..537a338 --- /dev/null +++ b/docs/_r_e_a_d_m_e_8md.html @@ -0,0 +1,106 @@ + + + + + + + +Livox SDK API: README.md File Reference + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
Livox SDK API +  V1.1.0 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
README.md File Reference
+
+
+
+
+ + + + diff --git a/docs/android__sink_8h.html b/docs/android__sink_8h.html index d6db82b..4a686d4 100644 --- a/docs/android__sink_8h.html +++ b/docs/android__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/android__sink_8h_source.html b/docs/android__sink_8h_source.html index eec7e32..1a15141 100644 --- a/docs/android__sink_8h_source.html +++ b/docs/android__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/annotated.html b/docs/annotated.html index 3ad8500..cbbcc80 100644 --- a/docs/annotated.html +++ b/docs/annotated.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/ansicolor__sink_8h.html b/docs/ansicolor__sink_8h.html index 50762f3..fdee1e2 100644 --- a/docs/ansicolor__sink_8h.html +++ b/docs/ansicolor__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/ansicolor__sink_8h_source.html b/docs/ansicolor__sink_8h_source.html index ec3bd59..ea34bf0 100644 --- a/docs/ansicolor__sink_8h_source.html +++ b/docs/ansicolor__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/async_8h.html b/docs/async_8h.html index 66dc9ca..527278f 100644 --- a/docs/async_8h.html +++ b/docs/async_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/async_8h_source.html b/docs/async_8h_source.html index b20ba75..ae7b287 100644 --- a/docs/async_8h_source.html +++ b/docs/async_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/async__logger_8h.html b/docs/async__logger_8h.html index d0df8f0..28c0c01 100644 --- a/docs/async__logger_8h.html +++ b/docs/async__logger_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/async__logger_8h_source.html b/docs/async__logger_8h_source.html index 2015fe5..47cb29d 100644 --- a/docs/async__logger_8h_source.html +++ b/docs/async__logger_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/async__logger__impl_8h.html b/docs/async__logger__impl_8h.html index 539d511..067250d 100644 --- a/docs/async__logger__impl_8h.html +++ b/docs/async__logger__impl_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/async__logger__impl_8h_source.html b/docs/async__logger__impl_8h_source.html index e78f1a0..cc8c065 100644 --- a/docs/async__logger__impl_8h_source.html +++ b/docs/async__logger__impl_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/base__sink_8h.html b/docs/base__sink_8h.html index 91e09b4..0049911 100644 --- a/docs/base__sink_8h.html +++ b/docs/base__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/base__sink_8h_source.html b/docs/base__sink_8h_source.html index 19436be..97d306b 100644 --- a/docs/base__sink_8h_source.html +++ b/docs/base__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/basic__file__sink_8h.html b/docs/basic__file__sink_8h.html index 5abc21e..8337969 100644 --- a/docs/basic__file__sink_8h.html +++ b/docs/basic__file__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/basic__file__sink_8h_source.html b/docs/basic__file__sink_8h_source.html index 19eec23..7b698fe 100644 --- a/docs/basic__file__sink_8h_source.html +++ b/docs/basic__file__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/bin__to__hex_8h.html b/docs/bin__to__hex_8h.html index 9c7b36f..f1c634f 100644 --- a/docs/bin__to__hex_8h.html +++ b/docs/bin__to__hex_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/bin__to__hex_8h_source.html b/docs/bin__to__hex_8h_source.html index 3154eb7..f579788 100644 --- a/docs/bin__to__hex_8h_source.html +++ b/docs/bin__to__hex_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/broadcast_code.png b/docs/broadcast_code.png new file mode 100644 index 0000000..78deb5a Binary files /dev/null and b/docs/broadcast_code.png differ diff --git a/docs/chrono_8h.html b/docs/chrono_8h.html index 74ac334..b30603d 100644 --- a/docs/chrono_8h.html +++ b/docs/chrono_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/chrono_8h_source.html b/docs/chrono_8h_source.html index 152d03a..b40ad93 100644 --- a/docs/chrono_8h_source.html +++ b/docs/chrono_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/circular__q_8h.html b/docs/circular__q_8h.html index 434afaa..91f38e5 100644 --- a/docs/circular__q_8h.html +++ b/docs/circular__q_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/circular__q_8h_source.html b/docs/circular__q_8h_source.html index eb80378..808267a 100644 --- a/docs/circular__q_8h_source.html +++ b/docs/circular__q_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/class_fast_c_r_c16-members.html b/docs/class_fast_c_r_c16-members.html index 7376d2f..ce923c6 100644 --- a/docs/class_fast_c_r_c16-members.html +++ b/docs/class_fast_c_r_c16-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/class_fast_c_r_c16.html b/docs/class_fast_c_r_c16.html index 9212a6a..e5f2329 100644 --- a/docs/class_fast_c_r_c16.html +++ b/docs/class_fast_c_r_c16.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/class_fast_c_r_c32-members.html b/docs/class_fast_c_r_c32-members.html index 51c71a4..b678241 100644 --- a/docs/class_fast_c_r_c32-members.html +++ b/docs/class_fast_c_r_c32-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/class_fast_c_r_c32.html b/docs/class_fast_c_r_c32.html index 3608347..44c3f9c 100644 --- a/docs/class_fast_c_r_c32.html +++ b/docs/class_fast_c_r_c32.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classes.html b/docs/classes.html index d5c53d5..67363b6 100644 --- a/docs/classes.html +++ b/docs/classes.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1arg__formatter-members.html b/docs/classfmt_1_1v5_1_1arg__formatter-members.html index cca1cf3..814a8b7 100644 --- a/docs/classfmt_1_1v5_1_1arg__formatter-members.html +++ b/docs/classfmt_1_1v5_1_1arg__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1arg__formatter.html b/docs/classfmt_1_1v5_1_1arg__formatter.html index 9d697c3..a8794c2 100644 --- a/docs/classfmt_1_1v5_1_1arg__formatter.html +++ b/docs/classfmt_1_1v5_1_1arg__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1back__insert__range-members.html b/docs/classfmt_1_1v5_1_1back__insert__range-members.html index 6b3c1f0..7ac6e66 100644 --- a/docs/classfmt_1_1v5_1_1back__insert__range-members.html +++ b/docs/classfmt_1_1v5_1_1back__insert__range-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1back__insert__range.html b/docs/classfmt_1_1v5_1_1back__insert__range.html index 5415dc7..cd52c2a 100644 --- a/docs/classfmt_1_1v5_1_1back__insert__range.html +++ b/docs/classfmt_1_1v5_1_1back__insert__range.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__cstring__view-members.html b/docs/classfmt_1_1v5_1_1basic__cstring__view-members.html index d4b169c..c266cfa 100644 --- a/docs/classfmt_1_1v5_1_1basic__cstring__view-members.html +++ b/docs/classfmt_1_1v5_1_1basic__cstring__view-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__cstring__view.html b/docs/classfmt_1_1v5_1_1basic__cstring__view.html index 3a279a8..c4c2e6e 100644 --- a/docs/classfmt_1_1v5_1_1basic__cstring__view.html +++ b/docs/classfmt_1_1v5_1_1basic__cstring__view.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__format__arg-members.html b/docs/classfmt_1_1v5_1_1basic__format__arg-members.html index 784ce53..75e1495 100644 --- a/docs/classfmt_1_1v5_1_1basic__format__arg-members.html +++ b/docs/classfmt_1_1v5_1_1basic__format__arg-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__format__arg.html b/docs/classfmt_1_1v5_1_1basic__format__arg.html index 9a93187..3f8754a 100644 --- a/docs/classfmt_1_1v5_1_1basic__format__arg.html +++ b/docs/classfmt_1_1v5_1_1basic__format__arg.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__format__arg_1_1handle-members.html b/docs/classfmt_1_1v5_1_1basic__format__arg_1_1handle-members.html index 4e998d4..eb17cf2 100644 --- a/docs/classfmt_1_1v5_1_1basic__format__arg_1_1handle-members.html +++ b/docs/classfmt_1_1v5_1_1basic__format__arg_1_1handle-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__format__arg_1_1handle.html b/docs/classfmt_1_1v5_1_1basic__format__arg_1_1handle.html index c83d539..7b6adf3 100644 --- a/docs/classfmt_1_1v5_1_1basic__format__arg_1_1handle.html +++ b/docs/classfmt_1_1v5_1_1basic__format__arg_1_1handle.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__format__args-members.html b/docs/classfmt_1_1v5_1_1basic__format__args-members.html index 322e1b7..ccbeeb8 100644 --- a/docs/classfmt_1_1v5_1_1basic__format__args-members.html +++ b/docs/classfmt_1_1v5_1_1basic__format__args-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__format__args.html b/docs/classfmt_1_1v5_1_1basic__format__args.html index 73f7107..4d110d2 100644 --- a/docs/classfmt_1_1v5_1_1basic__format__args.html +++ b/docs/classfmt_1_1v5_1_1basic__format__args.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__format__context-members.html b/docs/classfmt_1_1v5_1_1basic__format__context-members.html index 77c5b7e..e2c8441 100644 --- a/docs/classfmt_1_1v5_1_1basic__format__context-members.html +++ b/docs/classfmt_1_1v5_1_1basic__format__context-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__format__context.html b/docs/classfmt_1_1v5_1_1basic__format__context.html index 62bab92..8a5dd95 100644 --- a/docs/classfmt_1_1v5_1_1basic__format__context.html +++ b/docs/classfmt_1_1v5_1_1basic__format__context.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__memory__buffer-members.html b/docs/classfmt_1_1v5_1_1basic__memory__buffer-members.html index b83f370..1ac911f 100644 --- a/docs/classfmt_1_1v5_1_1basic__memory__buffer-members.html +++ b/docs/classfmt_1_1v5_1_1basic__memory__buffer-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__memory__buffer.html b/docs/classfmt_1_1v5_1_1basic__memory__buffer.html index ce93b20..e0b8cc5 100644 --- a/docs/classfmt_1_1v5_1_1basic__memory__buffer.html +++ b/docs/classfmt_1_1v5_1_1basic__memory__buffer.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__parse__context-members.html b/docs/classfmt_1_1v5_1_1basic__parse__context-members.html index 545bc98..73159c9 100644 --- a/docs/classfmt_1_1v5_1_1basic__parse__context-members.html +++ b/docs/classfmt_1_1v5_1_1basic__parse__context-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__parse__context.html b/docs/classfmt_1_1v5_1_1basic__parse__context.html index 951ba88..f43a56d 100644 --- a/docs/classfmt_1_1v5_1_1basic__parse__context.html +++ b/docs/classfmt_1_1v5_1_1basic__parse__context.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__printf__context-members.html b/docs/classfmt_1_1v5_1_1basic__printf__context-members.html index 7c85a19..480fe79 100644 --- a/docs/classfmt_1_1v5_1_1basic__printf__context-members.html +++ b/docs/classfmt_1_1v5_1_1basic__printf__context-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__printf__context.html b/docs/classfmt_1_1v5_1_1basic__printf__context.html index b86d9d0..c377c2a 100644 --- a/docs/classfmt_1_1v5_1_1basic__printf__context.html +++ b/docs/classfmt_1_1v5_1_1basic__printf__context.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__string__view-members.html b/docs/classfmt_1_1v5_1_1basic__string__view-members.html index 3d70b98..760697f 100644 --- a/docs/classfmt_1_1v5_1_1basic__string__view-members.html +++ b/docs/classfmt_1_1v5_1_1basic__string__view-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__string__view.html b/docs/classfmt_1_1v5_1_1basic__string__view.html index 02e81c4..70f45bd 100644 --- a/docs/classfmt_1_1v5_1_1basic__string__view.html +++ b/docs/classfmt_1_1v5_1_1basic__string__view.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__writer-members.html b/docs/classfmt_1_1v5_1_1basic__writer-members.html index 359224a..7f9adc1 100644 --- a/docs/classfmt_1_1v5_1_1basic__writer-members.html +++ b/docs/classfmt_1_1v5_1_1basic__writer-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1basic__writer.html b/docs/classfmt_1_1v5_1_1basic__writer.html index 6d266c0..d1abd8c 100644 --- a/docs/classfmt_1_1v5_1_1basic__writer.html +++ b/docs/classfmt_1_1v5_1_1basic__writer.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1buffered__file-members.html b/docs/classfmt_1_1v5_1_1buffered__file-members.html index 5fb5aba..d8e21f3 100644 --- a/docs/classfmt_1_1v5_1_1buffered__file-members.html +++ b/docs/classfmt_1_1v5_1_1buffered__file-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1buffered__file.html b/docs/classfmt_1_1v5_1_1buffered__file.html index cf15f21..520f1a2 100644 --- a/docs/classfmt_1_1v5_1_1buffered__file.html +++ b/docs/classfmt_1_1v5_1_1buffered__file.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1dynamic__formatter-members.html b/docs/classfmt_1_1v5_1_1dynamic__formatter-members.html index 666ff09..c74d4a2 100644 --- a/docs/classfmt_1_1v5_1_1dynamic__formatter-members.html +++ b/docs/classfmt_1_1v5_1_1dynamic__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1dynamic__formatter.html b/docs/classfmt_1_1v5_1_1dynamic__formatter.html index 03704c0..726d0b7 100644 --- a/docs/classfmt_1_1v5_1_1dynamic__formatter.html +++ b/docs/classfmt_1_1v5_1_1dynamic__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1error__code-members.html b/docs/classfmt_1_1v5_1_1error__code-members.html index f8669bd..3ca36b9 100644 --- a/docs/classfmt_1_1v5_1_1error__code-members.html +++ b/docs/classfmt_1_1v5_1_1error__code-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1error__code.html b/docs/classfmt_1_1v5_1_1error__code.html index 2323a93..aed53f3 100644 --- a/docs/classfmt_1_1v5_1_1error__code.html +++ b/docs/classfmt_1_1v5_1_1error__code.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1file-members.html b/docs/classfmt_1_1v5_1_1file-members.html index 147679d..59114ff 100644 --- a/docs/classfmt_1_1v5_1_1file-members.html +++ b/docs/classfmt_1_1v5_1_1file-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1file.html b/docs/classfmt_1_1v5_1_1file.html index 2d6ead9..e604366 100644 --- a/docs/classfmt_1_1v5_1_1file.html +++ b/docs/classfmt_1_1v5_1_1file.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1format__arg__store-members.html b/docs/classfmt_1_1v5_1_1format__arg__store-members.html index 8dcfdb1..8a12151 100644 --- a/docs/classfmt_1_1v5_1_1format__arg__store-members.html +++ b/docs/classfmt_1_1v5_1_1format__arg__store-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1format__arg__store.html b/docs/classfmt_1_1v5_1_1format__arg__store.html index aa9e43a..5785f75 100644 --- a/docs/classfmt_1_1v5_1_1format__arg__store.html +++ b/docs/classfmt_1_1v5_1_1format__arg__store.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1format__error-members.html b/docs/classfmt_1_1v5_1_1format__error-members.html index ab356d8..7f846e8 100644 --- a/docs/classfmt_1_1v5_1_1format__error-members.html +++ b/docs/classfmt_1_1v5_1_1format__error-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1format__error.html b/docs/classfmt_1_1v5_1_1format__error.html index ff99f81..0845044 100644 --- a/docs/classfmt_1_1v5_1_1format__error.html +++ b/docs/classfmt_1_1v5_1_1format__error.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1format__int-members.html b/docs/classfmt_1_1v5_1_1format__int-members.html index 9b52a39..539cfe2 100644 --- a/docs/classfmt_1_1v5_1_1format__int-members.html +++ b/docs/classfmt_1_1v5_1_1format__int-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1format__int.html b/docs/classfmt_1_1v5_1_1format__int.html index 3819213..ff0bea0 100644 --- a/docs/classfmt_1_1v5_1_1format__int.html +++ b/docs/classfmt_1_1v5_1_1format__int.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1add__thousands__sep-members.html b/docs/classfmt_1_1v5_1_1internal_1_1add__thousands__sep-members.html index 9b370ab..9b258e9 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1add__thousands__sep-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1add__thousands__sep-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html b/docs/classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html index 67975e5..5b4c9f4 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1arg__converter-members.html b/docs/classfmt_1_1v5_1_1internal_1_1arg__converter-members.html index 7c69856..a01484a 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1arg__converter-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1arg__converter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1arg__converter.html b/docs/classfmt_1_1v5_1_1internal_1_1arg__converter.html index d446d7a..be9a222 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1arg__converter.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1arg__converter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1arg__formatter__base-members.html b/docs/classfmt_1_1v5_1_1internal_1_1arg__formatter__base-members.html index bf8180a..d52bfdf 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1arg__formatter__base-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1arg__formatter__base-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html b/docs/classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html index 686f454..6c461b0 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1arg__map-members.html b/docs/classfmt_1_1v5_1_1internal_1_1arg__map-members.html index 7d91bcc..3b85b51 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1arg__map-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1arg__map-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1arg__map.html b/docs/classfmt_1_1v5_1_1internal_1_1arg__map.html index 552b7d8..82ea7f0 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1arg__map.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1arg__map.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1basic__buffer-members.html b/docs/classfmt_1_1v5_1_1internal_1_1basic__buffer-members.html index 948f59e..aa0228a 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1basic__buffer-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1basic__buffer-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1basic__buffer.html b/docs/classfmt_1_1v5_1_1internal_1_1basic__buffer.html index 851e734..709e7c4 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1basic__buffer.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1basic__buffer.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1char__converter-members.html b/docs/classfmt_1_1v5_1_1internal_1_1char__converter-members.html index a644611..a02d7d9 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1char__converter-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1char__converter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1char__converter.html b/docs/classfmt_1_1v5_1_1internal_1_1char__converter.html index 1804249..01ecc9c 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1char__converter.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1char__converter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1char__specs__checker-members.html b/docs/classfmt_1_1v5_1_1internal_1_1char__specs__checker-members.html index bd9268b..3102f6b 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1char__specs__checker-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1char__specs__checker-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1char__specs__checker.html b/docs/classfmt_1_1v5_1_1internal_1_1char__specs__checker.html index f064c56..17efcfb 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1char__specs__checker.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1char__specs__checker.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1container__buffer-members.html b/docs/classfmt_1_1v5_1_1internal_1_1container__buffer-members.html index 5618fca..a4633ca 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1container__buffer-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1container__buffer-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1container__buffer.html b/docs/classfmt_1_1v5_1_1internal_1_1container__buffer.html index df15d7d..3af0a85 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1container__buffer.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1container__buffer.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1context__base-members.html b/docs/classfmt_1_1v5_1_1internal_1_1context__base-members.html index ce49cda..c9b938a 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1context__base-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1context__base-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1context__base.html b/docs/classfmt_1_1v5_1_1internal_1_1context__base.html index 16d584b..53bbe17 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1context__base.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1context__base.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1counting__iterator-members.html b/docs/classfmt_1_1v5_1_1internal_1_1counting__iterator-members.html index f4bfa0c..4decb94 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1counting__iterator-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1counting__iterator-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1counting__iterator.html b/docs/classfmt_1_1v5_1_1internal_1_1counting__iterator.html index 1ace599..7bff47e 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1counting__iterator.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1counting__iterator.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1cstring__type__checker-members.html b/docs/classfmt_1_1v5_1_1internal_1_1cstring__type__checker-members.html index 0ec8ce2..a725ea9 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1cstring__type__checker-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1cstring__type__checker-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html b/docs/classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html index 23f7077..f8f10d5 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1custom__formatter-members.html b/docs/classfmt_1_1v5_1_1internal_1_1custom__formatter-members.html index e5c532a..c6f2b92 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1custom__formatter-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1custom__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1custom__formatter.html b/docs/classfmt_1_1v5_1_1internal_1_1custom__formatter.html index 912a201..dd8c820 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1custom__formatter.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1custom__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter-members.html b/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter-members.html index 4dc7531..830744c 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter.html b/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter.html index e63c5dd..e531a21 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter__null-members.html b/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter__null-members.html index 57ecf0d..5d042fe 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter__null-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter__null-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html b/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html index 6667fa9..e6bc6eb 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler-members.html b/docs/classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler-members.html index 1d04276..24e0eba 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html b/docs/classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html index 288343d..c37d31d 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1float__type__checker-members.html b/docs/classfmt_1_1v5_1_1internal_1_1float__type__checker-members.html index 1c3bba3..a00397b 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1float__type__checker-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1float__type__checker-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1float__type__checker.html b/docs/classfmt_1_1v5_1_1internal_1_1float__type__checker.html index 01b05ed..0efab0d 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1float__type__checker.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1float__type__checker.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1format__string__checker-members.html b/docs/classfmt_1_1v5_1_1internal_1_1format__string__checker-members.html index d8b08ce..84e164c 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1format__string__checker-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1format__string__checker-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1format__string__checker.html b/docs/classfmt_1_1v5_1_1internal_1_1format__string__checker.html index 1383a5d..7b8fd2c 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1format__string__checker.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1format__string__checker.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1formatbuf-members.html b/docs/classfmt_1_1v5_1_1internal_1_1formatbuf-members.html index cfbb828..97ca656 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1formatbuf-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1formatbuf-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1formatbuf.html b/docs/classfmt_1_1v5_1_1internal_1_1formatbuf.html index d18c8ec..dc7d02d 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1formatbuf.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1formatbuf.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1fp-members.html b/docs/classfmt_1_1v5_1_1internal_1_1fp-members.html index cee05e9..2c42b66 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1fp-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1fp-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1fp.html b/docs/classfmt_1_1v5_1_1internal_1_1fp.html index b21f5b9..7570b6a 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1fp.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1fp.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1int__type__checker-members.html b/docs/classfmt_1_1v5_1_1internal_1_1int__type__checker-members.html index 7efaa5d..4bb03a0 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1int__type__checker-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1int__type__checker-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1int__type__checker.html b/docs/classfmt_1_1v5_1_1internal_1_1int__type__checker.html index f92aaf1..9386255 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1int__type__checker.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1int__type__checker.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1is__like__std__string-members.html b/docs/classfmt_1_1v5_1_1internal_1_1is__like__std__string-members.html index 5089c45..4576f55 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1is__like__std__string-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1is__like__std__string-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1is__like__std__string.html b/docs/classfmt_1_1v5_1_1internal_1_1is__like__std__string.html index 07039de..a19765f 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1is__like__std__string.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1is__like__std__string.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1is__output__iterator-members.html b/docs/classfmt_1_1v5_1_1internal_1_1is__output__iterator-members.html index 55357eb..01c3344 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1is__output__iterator-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1is__output__iterator-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1is__output__iterator.html b/docs/classfmt_1_1v5_1_1internal_1_1is__output__iterator.html index 97182f3..0e1c5a3 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1is__output__iterator.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1is__output__iterator.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1is__streamable-members.html b/docs/classfmt_1_1v5_1_1internal_1_1is__streamable-members.html index 16efc24..df45f27 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1is__streamable-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1is__streamable-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1is__streamable.html b/docs/classfmt_1_1v5_1_1internal_1_1is__streamable.html index b93de94..521a0f4 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1is__streamable.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1is__streamable.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1is__tuple__like__-members.html b/docs/classfmt_1_1v5_1_1internal_1_1is__tuple__like__-members.html index c30a13e..0b39157 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1is__tuple__like__-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1is__tuple__like__-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html b/docs/classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html index 7e7851f..e059d9a 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1is__zero__int-members.html b/docs/classfmt_1_1v5_1_1internal_1_1is__zero__int-members.html index b07493b..d2706b5 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1is__zero__int-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1is__zero__int-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1is__zero__int.html b/docs/classfmt_1_1v5_1_1internal_1_1is__zero__int.html index 28d49d4..2aa2b88 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1is__zero__int.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1is__zero__int.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1locale__ref-members.html b/docs/classfmt_1_1v5_1_1internal_1_1locale__ref-members.html index 179c1f7..75e58db 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1locale__ref-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1locale__ref-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1locale__ref.html b/docs/classfmt_1_1v5_1_1internal_1_1locale__ref.html index e9b38e1..8ab963e 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1locale__ref.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1locale__ref.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1null__terminating__iterator-members.html b/docs/classfmt_1_1v5_1_1internal_1_1null__terminating__iterator-members.html index 8b2f4d2..eab3424 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1null__terminating__iterator-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1null__terminating__iterator-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html b/docs/classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html index a47326d..7cd8fc6 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1precision__checker-members.html b/docs/classfmt_1_1v5_1_1internal_1_1precision__checker-members.html index edf44ce..9342bc5 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1precision__checker-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1precision__checker-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1precision__checker.html b/docs/classfmt_1_1v5_1_1internal_1_1precision__checker.html index fc6484e..3f346b9 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1precision__checker.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1precision__checker.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1printf__precision__handler-members.html b/docs/classfmt_1_1v5_1_1internal_1_1printf__precision__handler-members.html index 648d8d4..299dd63 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1printf__precision__handler-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1printf__precision__handler-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html b/docs/classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html index 00bc442..bea3f35 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1printf__width__handler-members.html b/docs/classfmt_1_1v5_1_1internal_1_1printf__width__handler-members.html index 97b6118..27ef8e1 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1printf__width__handler-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1printf__width__handler-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1printf__width__handler.html b/docs/classfmt_1_1v5_1_1internal_1_1printf__width__handler.html index 29a8ff8..d4aa67e 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1printf__width__handler.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1printf__width__handler.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1specs__checker-members.html b/docs/classfmt_1_1v5_1_1internal_1_1specs__checker-members.html index 06c254c..45abc7b 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1specs__checker-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1specs__checker-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1specs__checker.html b/docs/classfmt_1_1v5_1_1internal_1_1specs__checker.html index 0aa0e44..a254749 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1specs__checker.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1specs__checker.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1specs__handler-members.html b/docs/classfmt_1_1v5_1_1internal_1_1specs__handler-members.html index 1f86d8c..3b9f46e 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1specs__handler-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1specs__handler-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1specs__handler.html b/docs/classfmt_1_1v5_1_1internal_1_1specs__handler.html index 403cedd..d385225 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1specs__handler.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1specs__handler.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1specs__setter-members.html b/docs/classfmt_1_1v5_1_1internal_1_1specs__setter-members.html index 676286e..8428d8d 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1specs__setter-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1specs__setter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1specs__setter.html b/docs/classfmt_1_1v5_1_1internal_1_1specs__setter.html index fb58dbe..59105b8 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1specs__setter.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1specs__setter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator.html b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator.html index 0299e71..3bd7934 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4-members.html b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4-members.html index 9a49b93..56cfec9 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html index 41ef2ab..f98f2d3 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4-members.html b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4-members.html index 691243f..801ba04 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html index 383ec5a..287285d 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator__base-members.html b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator__base-members.html index 98dd135..09c058f 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator__base-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator__base-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html index b15e82c..c522980 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1value-members.html b/docs/classfmt_1_1v5_1_1internal_1_1value-members.html index e80b233..f0e1461 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1value-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1value-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1value.html b/docs/classfmt_1_1v5_1_1internal_1_1value.html index 45d4ce9..cbfc2ae 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1value.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1value.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1width__checker-members.html b/docs/classfmt_1_1v5_1_1internal_1_1width__checker-members.html index 79d5eaa..77a77ce 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1width__checker-members.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1width__checker-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1internal_1_1width__checker.html b/docs/classfmt_1_1v5_1_1internal_1_1width__checker.html index 6772cb8..d48cd07 100644 --- a/docs/classfmt_1_1v5_1_1internal_1_1width__checker.html +++ b/docs/classfmt_1_1v5_1_1internal_1_1width__checker.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1output__range-members.html b/docs/classfmt_1_1v5_1_1output__range-members.html index 1ed7a9f..bce8bb7 100644 --- a/docs/classfmt_1_1v5_1_1output__range-members.html +++ b/docs/classfmt_1_1v5_1_1output__range-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1output__range.html b/docs/classfmt_1_1v5_1_1output__range.html index 247d378..854854a 100644 --- a/docs/classfmt_1_1v5_1_1output__range.html +++ b/docs/classfmt_1_1v5_1_1output__range.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1printf__arg__formatter-members.html b/docs/classfmt_1_1v5_1_1printf__arg__formatter-members.html index 35f6fe4..23f38d7 100644 --- a/docs/classfmt_1_1v5_1_1printf__arg__formatter-members.html +++ b/docs/classfmt_1_1v5_1_1printf__arg__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1printf__arg__formatter.html b/docs/classfmt_1_1v5_1_1printf__arg__formatter.html index b335157..d97e782 100644 --- a/docs/classfmt_1_1v5_1_1printf__arg__formatter.html +++ b/docs/classfmt_1_1v5_1_1printf__arg__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1system__error-members.html b/docs/classfmt_1_1v5_1_1system__error-members.html index f047276..1c554c0 100644 --- a/docs/classfmt_1_1v5_1_1system__error-members.html +++ b/docs/classfmt_1_1v5_1_1system__error-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1system__error.html b/docs/classfmt_1_1v5_1_1system__error.html index d2e6a3d..b690ebd 100644 --- a/docs/classfmt_1_1v5_1_1system__error.html +++ b/docs/classfmt_1_1v5_1_1system__error.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1text__style-members.html b/docs/classfmt_1_1v5_1_1text__style-members.html index 002c49d..37cf0b0 100644 --- a/docs/classfmt_1_1v5_1_1text__style-members.html +++ b/docs/classfmt_1_1v5_1_1text__style-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1text__style.html b/docs/classfmt_1_1v5_1_1text__style.html index 0c8b3a7..0e5c4ab 100644 --- a/docs/classfmt_1_1v5_1_1text__style.html +++ b/docs/classfmt_1_1v5_1_1text__style.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1u8string__view-members.html b/docs/classfmt_1_1v5_1_1u8string__view-members.html index 4d12fab..7ad6bcf 100644 --- a/docs/classfmt_1_1v5_1_1u8string__view-members.html +++ b/docs/classfmt_1_1v5_1_1u8string__view-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classfmt_1_1v5_1_1u8string__view.html b/docs/classfmt_1_1v5_1_1u8string__view.html index 53b49d0..c94d6c8 100644 --- a/docs/classfmt_1_1v5_1_1u8string__view.html +++ b/docs/classfmt_1_1v5_1_1u8string__view.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classlivox_1_1_comm_port-members.html b/docs/classlivox_1_1_comm_port-members.html index b55c143..efb39b5 100644 --- a/docs/classlivox_1_1_comm_port-members.html +++ b/docs/classlivox_1_1_comm_port-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classlivox_1_1_comm_port.html b/docs/classlivox_1_1_comm_port.html index 9d8befa..a3b11e8 100644 --- a/docs/classlivox_1_1_comm_port.html +++ b/docs/classlivox_1_1_comm_port.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classlivox_1_1_protocol-members.html b/docs/classlivox_1_1_protocol-members.html index 538ac0b..f22e032 100644 --- a/docs/classlivox_1_1_protocol-members.html +++ b/docs/classlivox_1_1_protocol-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classlivox_1_1_protocol.html b/docs/classlivox_1_1_protocol.html index de30bd5..790af44 100644 --- a/docs/classlivox_1_1_protocol.html +++ b/docs/classlivox_1_1_protocol.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1async__logger-members.html b/docs/classspdlog_1_1async__logger-members.html index 9eecb8b..8c755a0 100644 --- a/docs/classspdlog_1_1async__logger-members.html +++ b/docs/classspdlog_1_1async__logger-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1async__logger.html b/docs/classspdlog_1_1async__logger.html index 4acebb9..fb40ef7 100644 --- a/docs/classspdlog_1_1async__logger.html +++ b/docs/classspdlog_1_1async__logger.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_a__formatter-members.html b/docs/classspdlog_1_1details_1_1_a__formatter-members.html index 6be0b3f..9c9a731 100644 --- a/docs/classspdlog_1_1details_1_1_a__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_a__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_a__formatter.html b/docs/classspdlog_1_1details_1_1_a__formatter.html index 30f94b9..184de89 100644 --- a/docs/classspdlog_1_1details_1_1_a__formatter.html +++ b/docs/classspdlog_1_1details_1_1_a__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_b__formatter-members.html b/docs/classspdlog_1_1details_1_1_b__formatter-members.html index 23b3cb4..a9b6554 100644 --- a/docs/classspdlog_1_1details_1_1_b__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_b__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_b__formatter.html b/docs/classspdlog_1_1details_1_1_b__formatter.html index ae19239..4870bca 100644 --- a/docs/classspdlog_1_1details_1_1_b__formatter.html +++ b/docs/classspdlog_1_1details_1_1_b__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_c__formatter-members.html b/docs/classspdlog_1_1details_1_1_c__formatter-members.html index d086ecf..b7a663c 100644 --- a/docs/classspdlog_1_1details_1_1_c__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_c__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_c__formatter.html b/docs/classspdlog_1_1details_1_1_c__formatter.html index 83f950d..c98e1e7 100644 --- a/docs/classspdlog_1_1details_1_1_c__formatter.html +++ b/docs/classspdlog_1_1details_1_1_c__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_d__formatter-members.html b/docs/classspdlog_1_1details_1_1_d__formatter-members.html index cdae87d..4357fcd 100644 --- a/docs/classspdlog_1_1details_1_1_d__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_d__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_d__formatter.html b/docs/classspdlog_1_1details_1_1_d__formatter.html index d58f2b9..4f1c05e 100644 --- a/docs/classspdlog_1_1details_1_1_d__formatter.html +++ b/docs/classspdlog_1_1details_1_1_d__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_e__formatter-members.html b/docs/classspdlog_1_1details_1_1_e__formatter-members.html index 3bac138..b232f2d 100644 --- a/docs/classspdlog_1_1details_1_1_e__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_e__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_e__formatter.html b/docs/classspdlog_1_1details_1_1_e__formatter.html index 6a57c89..78c2a0e 100644 --- a/docs/classspdlog_1_1details_1_1_e__formatter.html +++ b/docs/classspdlog_1_1details_1_1_e__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_f__formatter-members.html b/docs/classspdlog_1_1details_1_1_f__formatter-members.html index 53c6835..dcf2776 100644 --- a/docs/classspdlog_1_1details_1_1_f__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_f__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_f__formatter.html b/docs/classspdlog_1_1details_1_1_f__formatter.html index a864cbf..c8601d5 100644 --- a/docs/classspdlog_1_1details_1_1_f__formatter.html +++ b/docs/classspdlog_1_1details_1_1_f__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_h__formatter-members.html b/docs/classspdlog_1_1details_1_1_h__formatter-members.html index 18d3f24..e883e01 100644 --- a/docs/classspdlog_1_1details_1_1_h__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_h__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_h__formatter.html b/docs/classspdlog_1_1details_1_1_h__formatter.html index 30f89dc..80be50e 100644 --- a/docs/classspdlog_1_1details_1_1_h__formatter.html +++ b/docs/classspdlog_1_1details_1_1_h__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_i__formatter-members.html b/docs/classspdlog_1_1details_1_1_i__formatter-members.html index 9f6ca96..db9f013 100644 --- a/docs/classspdlog_1_1details_1_1_i__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_i__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_i__formatter.html b/docs/classspdlog_1_1details_1_1_i__formatter.html index a9bfa2f..fe8b5eb 100644 --- a/docs/classspdlog_1_1details_1_1_i__formatter.html +++ b/docs/classspdlog_1_1details_1_1_i__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_m__formatter-members.html b/docs/classspdlog_1_1details_1_1_m__formatter-members.html index 11654a9..a7eee76 100644 --- a/docs/classspdlog_1_1details_1_1_m__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_m__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_m__formatter.html b/docs/classspdlog_1_1details_1_1_m__formatter.html index 39c4c17..959c6d0 100644 --- a/docs/classspdlog_1_1details_1_1_m__formatter.html +++ b/docs/classspdlog_1_1details_1_1_m__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_r__formatter-members.html b/docs/classspdlog_1_1details_1_1_r__formatter-members.html index 68030b8..f99d18c 100644 --- a/docs/classspdlog_1_1details_1_1_r__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_r__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_r__formatter.html b/docs/classspdlog_1_1details_1_1_r__formatter.html index 7be4b69..ee1e186 100644 --- a/docs/classspdlog_1_1details_1_1_r__formatter.html +++ b/docs/classspdlog_1_1details_1_1_r__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_s__formatter-members.html b/docs/classspdlog_1_1details_1_1_s__formatter-members.html index 4d874e4..0742132 100644 --- a/docs/classspdlog_1_1details_1_1_s__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_s__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_s__formatter.html b/docs/classspdlog_1_1details_1_1_s__formatter.html index eed7954..00745f5 100644 --- a/docs/classspdlog_1_1details_1_1_s__formatter.html +++ b/docs/classspdlog_1_1details_1_1_s__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_t__formatter-members.html b/docs/classspdlog_1_1details_1_1_t__formatter-members.html index 2aa6748..a479817 100644 --- a/docs/classspdlog_1_1details_1_1_t__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_t__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_t__formatter.html b/docs/classspdlog_1_1details_1_1_t__formatter.html index ab3de64..eaa0621 100644 --- a/docs/classspdlog_1_1details_1_1_t__formatter.html +++ b/docs/classspdlog_1_1details_1_1_t__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_y__formatter-members.html b/docs/classspdlog_1_1details_1_1_y__formatter-members.html index 6415034..a907106 100644 --- a/docs/classspdlog_1_1details_1_1_y__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1_y__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1_y__formatter.html b/docs/classspdlog_1_1details_1_1_y__formatter.html index 83e090b..0768b3d 100644 --- a/docs/classspdlog_1_1details_1_1_y__formatter.html +++ b/docs/classspdlog_1_1details_1_1_y__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1a__formatter-members.html b/docs/classspdlog_1_1details_1_1a__formatter-members.html index 7b4d105..275c8ac 100644 --- a/docs/classspdlog_1_1details_1_1a__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1a__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1a__formatter.html b/docs/classspdlog_1_1details_1_1a__formatter.html index 55bcdcd..d5c3633 100644 --- a/docs/classspdlog_1_1details_1_1a__formatter.html +++ b/docs/classspdlog_1_1details_1_1a__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1aggregate__formatter-members.html b/docs/classspdlog_1_1details_1_1aggregate__formatter-members.html index 57557c7..9aaf06b 100644 --- a/docs/classspdlog_1_1details_1_1aggregate__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1aggregate__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1aggregate__formatter.html b/docs/classspdlog_1_1details_1_1aggregate__formatter.html index ea906bd..45cbe00 100644 --- a/docs/classspdlog_1_1details_1_1aggregate__formatter.html +++ b/docs/classspdlog_1_1details_1_1aggregate__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1b__formatter-members.html b/docs/classspdlog_1_1details_1_1b__formatter-members.html index 9ae732f..e3c9774 100644 --- a/docs/classspdlog_1_1details_1_1b__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1b__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1b__formatter.html b/docs/classspdlog_1_1details_1_1b__formatter.html index ecbba8a..8d820f9 100644 --- a/docs/classspdlog_1_1details_1_1b__formatter.html +++ b/docs/classspdlog_1_1details_1_1b__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1bytes__range-members.html b/docs/classspdlog_1_1details_1_1bytes__range-members.html index 48af32d..fdbbcd6 100644 --- a/docs/classspdlog_1_1details_1_1bytes__range-members.html +++ b/docs/classspdlog_1_1details_1_1bytes__range-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1bytes__range.html b/docs/classspdlog_1_1details_1_1bytes__range.html index 612a759..32572ac 100644 --- a/docs/classspdlog_1_1details_1_1bytes__range.html +++ b/docs/classspdlog_1_1details_1_1bytes__range.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1c__formatter-members.html b/docs/classspdlog_1_1details_1_1c__formatter-members.html index 33812d7..8ad4e5f 100644 --- a/docs/classspdlog_1_1details_1_1c__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1c__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1c__formatter.html b/docs/classspdlog_1_1details_1_1c__formatter.html index 97a6692..183fed6 100644 --- a/docs/classspdlog_1_1details_1_1c__formatter.html +++ b/docs/classspdlog_1_1details_1_1c__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1ch__formatter-members.html b/docs/classspdlog_1_1details_1_1ch__formatter-members.html index 28153bd..d4b91d3 100644 --- a/docs/classspdlog_1_1details_1_1ch__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1ch__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1ch__formatter.html b/docs/classspdlog_1_1details_1_1ch__formatter.html index cbb563e..5106717 100644 --- a/docs/classspdlog_1_1details_1_1ch__formatter.html +++ b/docs/classspdlog_1_1details_1_1ch__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1circular__q-members.html b/docs/classspdlog_1_1details_1_1circular__q-members.html index ed9d4c6..4421d6f 100644 --- a/docs/classspdlog_1_1details_1_1circular__q-members.html +++ b/docs/classspdlog_1_1details_1_1circular__q-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1circular__q.html b/docs/classspdlog_1_1details_1_1circular__q.html index 9acf75a..0ab4b16 100644 --- a/docs/classspdlog_1_1details_1_1circular__q.html +++ b/docs/classspdlog_1_1details_1_1circular__q.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1color__start__formatter-members.html b/docs/classspdlog_1_1details_1_1color__start__formatter-members.html index 0c295f2..018234e 100644 --- a/docs/classspdlog_1_1details_1_1color__start__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1color__start__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1color__start__formatter.html b/docs/classspdlog_1_1details_1_1color__start__formatter.html index 7f274bb..40d74e2 100644 --- a/docs/classspdlog_1_1details_1_1color__start__formatter.html +++ b/docs/classspdlog_1_1details_1_1color__start__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1color__stop__formatter-members.html b/docs/classspdlog_1_1details_1_1color__stop__formatter-members.html index 3191554..88353a8 100644 --- a/docs/classspdlog_1_1details_1_1color__stop__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1color__stop__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1color__stop__formatter.html b/docs/classspdlog_1_1details_1_1color__stop__formatter.html index 6482646..11b3adf 100644 --- a/docs/classspdlog_1_1details_1_1color__stop__formatter.html +++ b/docs/classspdlog_1_1details_1_1color__stop__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1d__formatter-members.html b/docs/classspdlog_1_1details_1_1d__formatter-members.html index 5596fbf..3e807b3 100644 --- a/docs/classspdlog_1_1details_1_1d__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1d__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1d__formatter.html b/docs/classspdlog_1_1details_1_1d__formatter.html index 3cf386a..1a0813e 100644 --- a/docs/classspdlog_1_1details_1_1d__formatter.html +++ b/docs/classspdlog_1_1details_1_1d__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1e__formatter-members.html b/docs/classspdlog_1_1details_1_1e__formatter-members.html index 1851c75..ea1fcbd 100644 --- a/docs/classspdlog_1_1details_1_1e__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1e__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1e__formatter.html b/docs/classspdlog_1_1details_1_1e__formatter.html index cac641f..c328075 100644 --- a/docs/classspdlog_1_1details_1_1e__formatter.html +++ b/docs/classspdlog_1_1details_1_1e__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1f__formatter-members.html b/docs/classspdlog_1_1details_1_1f__formatter-members.html index b1b5f75..639aabf 100644 --- a/docs/classspdlog_1_1details_1_1f__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1f__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1f__formatter.html b/docs/classspdlog_1_1details_1_1f__formatter.html index b91f1d9..3434983 100644 --- a/docs/classspdlog_1_1details_1_1f__formatter.html +++ b/docs/classspdlog_1_1details_1_1f__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1file__helper-members.html b/docs/classspdlog_1_1details_1_1file__helper-members.html index 7430be4..c14d24e 100644 --- a/docs/classspdlog_1_1details_1_1file__helper-members.html +++ b/docs/classspdlog_1_1details_1_1file__helper-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1file__helper.html b/docs/classspdlog_1_1details_1_1file__helper.html index 1e7c7d5..45039d0 100644 --- a/docs/classspdlog_1_1details_1_1file__helper.html +++ b/docs/classspdlog_1_1details_1_1file__helper.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1flag__formatter-members.html b/docs/classspdlog_1_1details_1_1flag__formatter-members.html index 592915c..c4b40e6 100644 --- a/docs/classspdlog_1_1details_1_1flag__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1flag__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1flag__formatter.html b/docs/classspdlog_1_1details_1_1flag__formatter.html index 65d9209..3559cd4 100644 --- a/docs/classspdlog_1_1details_1_1flag__formatter.html +++ b/docs/classspdlog_1_1details_1_1flag__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1full__formatter-members.html b/docs/classspdlog_1_1details_1_1full__formatter-members.html index dac92b7..7e9f778 100644 --- a/docs/classspdlog_1_1details_1_1full__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1full__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1full__formatter.html b/docs/classspdlog_1_1details_1_1full__formatter.html index 1a600a9..ad80bcb 100644 --- a/docs/classspdlog_1_1details_1_1full__formatter.html +++ b/docs/classspdlog_1_1details_1_1full__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1i__formatter-members.html b/docs/classspdlog_1_1details_1_1i__formatter-members.html index e46fe56..507c2ab 100644 --- a/docs/classspdlog_1_1details_1_1i__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1i__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1i__formatter.html b/docs/classspdlog_1_1details_1_1i__formatter.html index 5bf4a81..0013d99 100644 --- a/docs/classspdlog_1_1details_1_1i__formatter.html +++ b/docs/classspdlog_1_1details_1_1i__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1level__formatter-members.html b/docs/classspdlog_1_1details_1_1level__formatter-members.html index f2c0e09..317869c 100644 --- a/docs/classspdlog_1_1details_1_1level__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1level__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1level__formatter.html b/docs/classspdlog_1_1details_1_1level__formatter.html index 4c0c908..27916aa 100644 --- a/docs/classspdlog_1_1details_1_1level__formatter.html +++ b/docs/classspdlog_1_1details_1_1level__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1m__formatter-members.html b/docs/classspdlog_1_1details_1_1m__formatter-members.html index 56bcfbe..fb9f4a2 100644 --- a/docs/classspdlog_1_1details_1_1m__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1m__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1m__formatter.html b/docs/classspdlog_1_1details_1_1m__formatter.html index 622fa65..6f172ee 100644 --- a/docs/classspdlog_1_1details_1_1m__formatter.html +++ b/docs/classspdlog_1_1details_1_1m__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1mpmc__blocking__queue-members.html b/docs/classspdlog_1_1details_1_1mpmc__blocking__queue-members.html index 16c36a9..b07f805 100644 --- a/docs/classspdlog_1_1details_1_1mpmc__blocking__queue-members.html +++ b/docs/classspdlog_1_1details_1_1mpmc__blocking__queue-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1mpmc__blocking__queue.html b/docs/classspdlog_1_1details_1_1mpmc__blocking__queue.html index 1a43290..f40e560 100644 --- a/docs/classspdlog_1_1details_1_1mpmc__blocking__queue.html +++ b/docs/classspdlog_1_1details_1_1mpmc__blocking__queue.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1name__formatter-members.html b/docs/classspdlog_1_1details_1_1name__formatter-members.html index 7f55b5e..5d5ed32 100644 --- a/docs/classspdlog_1_1details_1_1name__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1name__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1name__formatter.html b/docs/classspdlog_1_1details_1_1name__formatter.html index 66e0edd..20d5b20 100644 --- a/docs/classspdlog_1_1details_1_1name__formatter.html +++ b/docs/classspdlog_1_1details_1_1name__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1p__formatter-members.html b/docs/classspdlog_1_1details_1_1p__formatter-members.html index 3482df7..cd1fee8 100644 --- a/docs/classspdlog_1_1details_1_1p__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1p__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1p__formatter.html b/docs/classspdlog_1_1details_1_1p__formatter.html index cf58c4b..933bf59 100644 --- a/docs/classspdlog_1_1details_1_1p__formatter.html +++ b/docs/classspdlog_1_1details_1_1p__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1periodic__worker-members.html b/docs/classspdlog_1_1details_1_1periodic__worker-members.html index 9d939d2..7cf9464 100644 --- a/docs/classspdlog_1_1details_1_1periodic__worker-members.html +++ b/docs/classspdlog_1_1details_1_1periodic__worker-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1periodic__worker.html b/docs/classspdlog_1_1details_1_1periodic__worker.html index f6fb38a..b6588fa 100644 --- a/docs/classspdlog_1_1details_1_1periodic__worker.html +++ b/docs/classspdlog_1_1details_1_1periodic__worker.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1pid__formatter-members.html b/docs/classspdlog_1_1details_1_1pid__formatter-members.html index 4c5f643..e957030 100644 --- a/docs/classspdlog_1_1details_1_1pid__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1pid__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1pid__formatter.html b/docs/classspdlog_1_1details_1_1pid__formatter.html index 23afebb..23f8ad6 100644 --- a/docs/classspdlog_1_1details_1_1pid__formatter.html +++ b/docs/classspdlog_1_1details_1_1pid__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1r__formatter-members.html b/docs/classspdlog_1_1details_1_1r__formatter-members.html index 2f5444c..7ae75a2 100644 --- a/docs/classspdlog_1_1details_1_1r__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1r__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1r__formatter.html b/docs/classspdlog_1_1details_1_1r__formatter.html index c81d317..5c4bd69 100644 --- a/docs/classspdlog_1_1details_1_1r__formatter.html +++ b/docs/classspdlog_1_1details_1_1r__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1registry-members.html b/docs/classspdlog_1_1details_1_1registry-members.html index 345d8bf..6533e37 100644 --- a/docs/classspdlog_1_1details_1_1registry-members.html +++ b/docs/classspdlog_1_1details_1_1registry-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1registry.html b/docs/classspdlog_1_1details_1_1registry.html index 6fe41d7..84a116c 100644 --- a/docs/classspdlog_1_1details_1_1registry.html +++ b/docs/classspdlog_1_1details_1_1registry.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1scoped__pad-members.html b/docs/classspdlog_1_1details_1_1scoped__pad-members.html index 14a401f..ee21287 100644 --- a/docs/classspdlog_1_1details_1_1scoped__pad-members.html +++ b/docs/classspdlog_1_1details_1_1scoped__pad-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1scoped__pad.html b/docs/classspdlog_1_1details_1_1scoped__pad.html index d4916af..8878443 100644 --- a/docs/classspdlog_1_1details_1_1scoped__pad.html +++ b/docs/classspdlog_1_1details_1_1scoped__pad.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1short__level__formatter-members.html b/docs/classspdlog_1_1details_1_1short__level__formatter-members.html index d3eb72f..ee5dda1 100644 --- a/docs/classspdlog_1_1details_1_1short__level__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1short__level__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1short__level__formatter.html b/docs/classspdlog_1_1details_1_1short__level__formatter.html index 1456b04..538bfb0 100644 --- a/docs/classspdlog_1_1details_1_1short__level__formatter.html +++ b/docs/classspdlog_1_1details_1_1short__level__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1source__filename__formatter-members.html b/docs/classspdlog_1_1details_1_1source__filename__formatter-members.html index d68902b..bb03ab2 100644 --- a/docs/classspdlog_1_1details_1_1source__filename__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1source__filename__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1source__filename__formatter.html b/docs/classspdlog_1_1details_1_1source__filename__formatter.html index 2c6ae15..3729bf3 100644 --- a/docs/classspdlog_1_1details_1_1source__filename__formatter.html +++ b/docs/classspdlog_1_1details_1_1source__filename__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1source__funcname__formatter-members.html b/docs/classspdlog_1_1details_1_1source__funcname__formatter-members.html index 8c1cb71..862e34f 100644 --- a/docs/classspdlog_1_1details_1_1source__funcname__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1source__funcname__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1source__funcname__formatter.html b/docs/classspdlog_1_1details_1_1source__funcname__formatter.html index 0822f82..579f1c8 100644 --- a/docs/classspdlog_1_1details_1_1source__funcname__formatter.html +++ b/docs/classspdlog_1_1details_1_1source__funcname__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1source__linenum__formatter-members.html b/docs/classspdlog_1_1details_1_1source__linenum__formatter-members.html index 9438d19..c2e1332 100644 --- a/docs/classspdlog_1_1details_1_1source__linenum__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1source__linenum__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1source__linenum__formatter.html b/docs/classspdlog_1_1details_1_1source__linenum__formatter.html index 94376d2..2c6d0bd 100644 --- a/docs/classspdlog_1_1details_1_1source__linenum__formatter.html +++ b/docs/classspdlog_1_1details_1_1source__linenum__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1source__location__formatter-members.html b/docs/classspdlog_1_1details_1_1source__location__formatter-members.html index 78c11a0..a38093f 100644 --- a/docs/classspdlog_1_1details_1_1source__location__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1source__location__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1source__location__formatter.html b/docs/classspdlog_1_1details_1_1source__location__formatter.html index 77aaeb6..8511543 100644 --- a/docs/classspdlog_1_1details_1_1source__location__formatter.html +++ b/docs/classspdlog_1_1details_1_1source__location__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1t__formatter-members.html b/docs/classspdlog_1_1details_1_1t__formatter-members.html index 6fcc7bc..ecd5c94 100644 --- a/docs/classspdlog_1_1details_1_1t__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1t__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1t__formatter.html b/docs/classspdlog_1_1details_1_1t__formatter.html index 0bc3404..8d0ddb9 100644 --- a/docs/classspdlog_1_1details_1_1t__formatter.html +++ b/docs/classspdlog_1_1details_1_1t__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1thread__pool-members.html b/docs/classspdlog_1_1details_1_1thread__pool-members.html index 8107259..5f0af5d 100644 --- a/docs/classspdlog_1_1details_1_1thread__pool-members.html +++ b/docs/classspdlog_1_1details_1_1thread__pool-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1thread__pool.html b/docs/classspdlog_1_1details_1_1thread__pool.html index 247ace4..b3c78a0 100644 --- a/docs/classspdlog_1_1details_1_1thread__pool.html +++ b/docs/classspdlog_1_1details_1_1thread__pool.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1v__formatter-members.html b/docs/classspdlog_1_1details_1_1v__formatter-members.html index 448c00e..c486390 100644 --- a/docs/classspdlog_1_1details_1_1v__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1v__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1v__formatter.html b/docs/classspdlog_1_1details_1_1v__formatter.html index 105287d..ff29e14 100644 --- a/docs/classspdlog_1_1details_1_1v__formatter.html +++ b/docs/classspdlog_1_1details_1_1v__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1z__formatter-members.html b/docs/classspdlog_1_1details_1_1z__formatter-members.html index a40bb56..6a65d15 100644 --- a/docs/classspdlog_1_1details_1_1z__formatter-members.html +++ b/docs/classspdlog_1_1details_1_1z__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1details_1_1z__formatter.html b/docs/classspdlog_1_1details_1_1z__formatter.html index 74cab0c..62933b4 100644 --- a/docs/classspdlog_1_1details_1_1z__formatter.html +++ b/docs/classspdlog_1_1details_1_1z__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1formatter-members.html b/docs/classspdlog_1_1formatter-members.html index 5f21c53..6667b5a 100644 --- a/docs/classspdlog_1_1formatter-members.html +++ b/docs/classspdlog_1_1formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1formatter.html b/docs/classspdlog_1_1formatter.html index e1d2852..e1a5755 100644 --- a/docs/classspdlog_1_1formatter.html +++ b/docs/classspdlog_1_1formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1logger-members.html b/docs/classspdlog_1_1logger-members.html index 59d4d42..5b5cf69 100644 --- a/docs/classspdlog_1_1logger-members.html +++ b/docs/classspdlog_1_1logger-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1logger.html b/docs/classspdlog_1_1logger.html index 00b1f66..2476600 100644 --- a/docs/classspdlog_1_1logger.html +++ b/docs/classspdlog_1_1logger.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1pattern__formatter-members.html b/docs/classspdlog_1_1pattern__formatter-members.html index 6ad7977..3f27082 100644 --- a/docs/classspdlog_1_1pattern__formatter-members.html +++ b/docs/classspdlog_1_1pattern__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1pattern__formatter.html b/docs/classspdlog_1_1pattern__formatter.html index 491a1ce..f3d9045 100644 --- a/docs/classspdlog_1_1pattern__formatter.html +++ b/docs/classspdlog_1_1pattern__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1android__sink-members.html b/docs/classspdlog_1_1sinks_1_1android__sink-members.html index c130b25..8ab8421 100644 --- a/docs/classspdlog_1_1sinks_1_1android__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1android__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1android__sink.html b/docs/classspdlog_1_1sinks_1_1android__sink.html index 51f84e2..ef73f4c 100644 --- a/docs/classspdlog_1_1sinks_1_1android__sink.html +++ b/docs/classspdlog_1_1sinks_1_1android__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1ansicolor__sink-members.html b/docs/classspdlog_1_1sinks_1_1ansicolor__sink-members.html index 2165bb6..3c76a6b 100644 --- a/docs/classspdlog_1_1sinks_1_1ansicolor__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1ansicolor__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1ansicolor__sink.html b/docs/classspdlog_1_1sinks_1_1ansicolor__sink.html index 4007f6b..043b401 100644 --- a/docs/classspdlog_1_1sinks_1_1ansicolor__sink.html +++ b/docs/classspdlog_1_1sinks_1_1ansicolor__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1base__sink-members.html b/docs/classspdlog_1_1sinks_1_1base__sink-members.html index d85931a..877baae 100644 --- a/docs/classspdlog_1_1sinks_1_1base__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1base__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1base__sink.html b/docs/classspdlog_1_1sinks_1_1base__sink.html index fb131af..b161543 100644 --- a/docs/classspdlog_1_1sinks_1_1base__sink.html +++ b/docs/classspdlog_1_1sinks_1_1base__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1basic__file__sink-members.html b/docs/classspdlog_1_1sinks_1_1basic__file__sink-members.html index aa39239..9dfab6b 100644 --- a/docs/classspdlog_1_1sinks_1_1basic__file__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1basic__file__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1basic__file__sink.html b/docs/classspdlog_1_1sinks_1_1basic__file__sink.html index c6946ee..55b4a36 100644 --- a/docs/classspdlog_1_1sinks_1_1basic__file__sink.html +++ b/docs/classspdlog_1_1sinks_1_1basic__file__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1daily__file__sink-members.html b/docs/classspdlog_1_1sinks_1_1daily__file__sink-members.html index ceece5f..77e4dae 100644 --- a/docs/classspdlog_1_1sinks_1_1daily__file__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1daily__file__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1daily__file__sink.html b/docs/classspdlog_1_1sinks_1_1daily__file__sink.html index aca2caa..87a86cd 100644 --- a/docs/classspdlog_1_1sinks_1_1daily__file__sink.html +++ b/docs/classspdlog_1_1sinks_1_1daily__file__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1dist__sink-members.html b/docs/classspdlog_1_1sinks_1_1dist__sink-members.html index 4f84ad8..f9fd72b 100644 --- a/docs/classspdlog_1_1sinks_1_1dist__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1dist__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1dist__sink.html b/docs/classspdlog_1_1sinks_1_1dist__sink.html index 291f1a8..8d896de 100644 --- a/docs/classspdlog_1_1sinks_1_1dist__sink.html +++ b/docs/classspdlog_1_1sinks_1_1dist__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1null__sink-members.html b/docs/classspdlog_1_1sinks_1_1null__sink-members.html index a2f8b15..1b8e16c 100644 --- a/docs/classspdlog_1_1sinks_1_1null__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1null__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1null__sink.html b/docs/classspdlog_1_1sinks_1_1null__sink.html index b5ff4a2..bbb6207 100644 --- a/docs/classspdlog_1_1sinks_1_1null__sink.html +++ b/docs/classspdlog_1_1sinks_1_1null__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1ostream__sink-members.html b/docs/classspdlog_1_1sinks_1_1ostream__sink-members.html index 6dddcae..b9302a8 100644 --- a/docs/classspdlog_1_1sinks_1_1ostream__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1ostream__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1ostream__sink.html b/docs/classspdlog_1_1sinks_1_1ostream__sink.html index ed914e2..03eb258 100644 --- a/docs/classspdlog_1_1sinks_1_1ostream__sink.html +++ b/docs/classspdlog_1_1sinks_1_1ostream__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1rotating__file__sink-members.html b/docs/classspdlog_1_1sinks_1_1rotating__file__sink-members.html index 44d364d..638c8ef 100644 --- a/docs/classspdlog_1_1sinks_1_1rotating__file__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1rotating__file__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1rotating__file__sink.html b/docs/classspdlog_1_1sinks_1_1rotating__file__sink.html index 310469c..37c36e6 100644 --- a/docs/classspdlog_1_1sinks_1_1rotating__file__sink.html +++ b/docs/classspdlog_1_1sinks_1_1rotating__file__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1sink-members.html b/docs/classspdlog_1_1sinks_1_1sink-members.html index ce70627..f03a101 100644 --- a/docs/classspdlog_1_1sinks_1_1sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1sink.html b/docs/classspdlog_1_1sinks_1_1sink.html index 6d45557..2fe608f 100644 --- a/docs/classspdlog_1_1sinks_1_1sink.html +++ b/docs/classspdlog_1_1sinks_1_1sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1stdout__sink-members.html b/docs/classspdlog_1_1sinks_1_1stdout__sink-members.html index ac5bda6..668e762 100644 --- a/docs/classspdlog_1_1sinks_1_1stdout__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1stdout__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1stdout__sink.html b/docs/classspdlog_1_1sinks_1_1stdout__sink.html index 9f4a9bb..2343357 100644 --- a/docs/classspdlog_1_1sinks_1_1stdout__sink.html +++ b/docs/classspdlog_1_1sinks_1_1stdout__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1syslog__sink-members.html b/docs/classspdlog_1_1sinks_1_1syslog__sink-members.html index 6c2a922..bdd6d5e 100644 --- a/docs/classspdlog_1_1sinks_1_1syslog__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1syslog__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1syslog__sink.html b/docs/classspdlog_1_1sinks_1_1syslog__sink.html index ad47f95..298ab6f 100644 --- a/docs/classspdlog_1_1sinks_1_1syslog__sink.html +++ b/docs/classspdlog_1_1sinks_1_1syslog__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1wincolor__sink-members.html b/docs/classspdlog_1_1sinks_1_1wincolor__sink-members.html index 177384a..c50a385 100644 --- a/docs/classspdlog_1_1sinks_1_1wincolor__sink-members.html +++ b/docs/classspdlog_1_1sinks_1_1wincolor__sink-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1sinks_1_1wincolor__sink.html b/docs/classspdlog_1_1sinks_1_1wincolor__sink.html index ec2ab7e..ceb3ef9 100644 --- a/docs/classspdlog_1_1sinks_1_1wincolor__sink.html +++ b/docs/classspdlog_1_1sinks_1_1wincolor__sink.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1spdlog__ex-members.html b/docs/classspdlog_1_1spdlog__ex-members.html index 3b6da55..fcc6303 100644 --- a/docs/classspdlog_1_1spdlog__ex-members.html +++ b/docs/classspdlog_1_1spdlog__ex-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classspdlog_1_1spdlog__ex.html b/docs/classspdlog_1_1spdlog__ex.html index 63b6970..7fd84ed 100644 --- a/docs/classspdlog_1_1spdlog__ex.html +++ b/docs/classspdlog_1_1spdlog__ex.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4-members.html b/docs/classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4-members.html index f8eec60..338cb8e 100644 --- a/docs/classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4-members.html +++ b/docs/classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html b/docs/classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html index ec60af3..1a0921a 100644 --- a/docs/classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html +++ b/docs/classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/color_8h.html b/docs/color_8h.html index 89b0ef9..75761fb 100644 --- a/docs/color_8h.html +++ b/docs/color_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/color_8h_source.html b/docs/color_8h_source.html index dd22e61..183e08d 100644 --- a/docs/color_8h_source.html +++ b/docs/color_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/comm__port_8h.html b/docs/comm__port_8h.html index 217802e..38e096f 100644 --- a/docs/comm__port_8h.html +++ b/docs/comm__port_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/comm__port_8h_source.html b/docs/comm__port_8h_source.html index 6ef2d37..35552f9 100644 --- a/docs/comm__port_8h_source.html +++ b/docs/comm__port_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/common_8h.html b/docs/common_8h.html index 2823bc9..eb37dd9 100644 --- a/docs/common_8h.html +++ b/docs/common_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/common_8h_source.html b/docs/common_8h_source.html index 2da072d..c232cba 100644 --- a/docs/common_8h_source.html +++ b/docs/common_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/console__globals_8h.html b/docs/console__globals_8h.html index 1fd0558..c16efac 100644 --- a/docs/console__globals_8h.html +++ b/docs/console__globals_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/console__globals_8h_source.html b/docs/console__globals_8h_source.html index fd0fbf6..ce62be8 100644 --- a/docs/console__globals_8h_source.html +++ b/docs/console__globals_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/core_8h.html b/docs/core_8h.html index bc1390d..9332c88 100644 --- a/docs/core_8h.html +++ b/docs/core_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/core_8h_source.html b/docs/core_8h_source.html index 85c9203..5edc5cf 100644 --- a/docs/core_8h_source.html +++ b/docs/core_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/daily__file__sink_8h.html b/docs/daily__file__sink_8h.html index c7bf59a..8b31fb5 100644 --- a/docs/daily__file__sink_8h.html +++ b/docs/daily__file__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/daily__file__sink_8h_source.html b/docs/daily__file__sink_8h_source.html index 2c3d1c5..5afd04d 100644 --- a/docs/daily__file__sink_8h_source.html +++ b/docs/daily__file__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dir_0c3a0641627b76fd80f03d211e44dc98.html b/docs/dir_0c3a0641627b76fd80f03d211e44dc98.html index e54945f..31119fc 100644 --- a/docs/dir_0c3a0641627b76fd80f03d211e44dc98.html +++ b/docs/dir_0c3a0641627b76fd80f03d211e44dc98.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dir_0edbe3cf21aa1980d331aee71a413a85.html b/docs/dir_0edbe3cf21aa1980d331aee71a413a85.html index d98b4b2..10f57b5 100644 --- a/docs/dir_0edbe3cf21aa1980d331aee71a413a85.html +++ b/docs/dir_0edbe3cf21aa1980d331aee71a413a85.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dir_148a221396087d65c55fa0ea541856de.html b/docs/dir_148a221396087d65c55fa0ea541856de.html index 6617045..ab6cec5 100644 --- a/docs/dir_148a221396087d65c55fa0ea541856de.html +++ b/docs/dir_148a221396087d65c55fa0ea541856de.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dir_239a77e39c0fcb2f1e08881bb007ba07.html b/docs/dir_239a77e39c0fcb2f1e08881bb007ba07.html index d6901e0..a39efdb 100644 --- a/docs/dir_239a77e39c0fcb2f1e08881bb007ba07.html +++ b/docs/dir_239a77e39c0fcb2f1e08881bb007ba07.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dir_248a80cf6760c7a1ab13394a1c16f7b2.html b/docs/dir_248a80cf6760c7a1ab13394a1c16f7b2.html index 011345c..8ada0f0 100644 --- a/docs/dir_248a80cf6760c7a1ab13394a1c16f7b2.html +++ b/docs/dir_248a80cf6760c7a1ab13394a1c16f7b2.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dir_5f1136fe404e0a548faf586fae339a6a.html b/docs/dir_5f1136fe404e0a548faf586fae339a6a.html index 70ca654..c8951e0 100644 --- a/docs/dir_5f1136fe404e0a548faf586fae339a6a.html +++ b/docs/dir_5f1136fe404e0a548faf586fae339a6a.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dir_7bb3e31efd6b819bbb0704cee4a66d41.html b/docs/dir_7bb3e31efd6b819bbb0704cee4a66d41.html index 0d07685..5c48568 100644 --- a/docs/dir_7bb3e31efd6b819bbb0704cee4a66d41.html +++ b/docs/dir_7bb3e31efd6b819bbb0704cee4a66d41.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dir_7d093cd833acfccb787639923feedd9d.html b/docs/dir_7d093cd833acfccb787639923feedd9d.html index bbf4507..de4ef46 100644 --- a/docs/dir_7d093cd833acfccb787639923feedd9d.html +++ b/docs/dir_7d093cd833acfccb787639923feedd9d.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dir_92a4bcc0ca1142b221c58a95a60bf3b6.html b/docs/dir_92a4bcc0ca1142b221c58a95a60bf3b6.html index 7de98d8..eac697d 100644 --- a/docs/dir_92a4bcc0ca1142b221c58a95a60bf3b6.html +++ b/docs/dir_92a4bcc0ca1142b221c58a95a60bf3b6.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dir_cf58c3a45797022668a1e269b5315a33.html b/docs/dir_cf58c3a45797022668a1e269b5315a33.html index 8f2b437..7ded854 100644 --- a/docs/dir_cf58c3a45797022668a1e269b5315a33.html +++ b/docs/dir_cf58c3a45797022668a1e269b5315a33.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dir_fef6b6f1028f30fedf17225feaaa02fe.html b/docs/dir_fef6b6f1028f30fedf17225feaaa02fe.html index d6ed4da..80e200e 100644 --- a/docs/dir_fef6b6f1028f30fedf17225feaaa02fe.html +++ b/docs/dir_fef6b6f1028f30fedf17225feaaa02fe.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dist__sink_8h.html b/docs/dist__sink_8h.html index 50cf9c8..ca7523a 100644 --- a/docs/dist__sink_8h.html +++ b/docs/dist__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/dist__sink_8h_source.html b/docs/dist__sink_8h_source.html index e18e9ca..ae02925 100644 --- a/docs/dist__sink_8h_source.html +++ b/docs/dist__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/file__helper_8h.html b/docs/file__helper_8h.html index 24dbd2e..fe5beb4 100644 --- a/docs/file__helper_8h.html +++ b/docs/file__helper_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/file__helper_8h_source.html b/docs/file__helper_8h_source.html index 8aa5d40..c4a66cd 100644 --- a/docs/file__helper_8h_source.html +++ b/docs/file__helper_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/files.html b/docs/files.html index 72b66ff..7920d06 100644 --- a/docs/files.html +++ b/docs/files.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/fmt_8h.html b/docs/fmt_8h.html index 99f2466..3b32bfa 100644 --- a/docs/fmt_8h.html +++ b/docs/fmt_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/fmt_8h_source.html b/docs/fmt_8h_source.html index 66b4a46..90fed57 100644 --- a/docs/fmt_8h_source.html +++ b/docs/fmt_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/fmt__helper_8h.html b/docs/fmt__helper_8h.html index 95fc2ea..f8b91c3 100644 --- a/docs/fmt__helper_8h.html +++ b/docs/fmt__helper_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/fmt__helper_8h_source.html b/docs/fmt__helper_8h_source.html index 993fcf7..7c45a31 100644 --- a/docs/fmt__helper_8h_source.html +++ b/docs/fmt__helper_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/format-inl_8h.html b/docs/format-inl_8h.html index d8231eb..f4f5479 100644 --- a/docs/format-inl_8h.html +++ b/docs/format-inl_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/format-inl_8h_source.html b/docs/format-inl_8h_source.html index 8caa9ab..c23ada5 100644 --- a/docs/format-inl_8h_source.html +++ b/docs/format-inl_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/format_8h.html b/docs/format_8h.html index 2b48293..21c39fc 100644 --- a/docs/format_8h.html +++ b/docs/format_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/format_8h_source.html b/docs/format_8h_source.html index 0e4979f..8ecd9f7 100644 --- a/docs/format_8h_source.html +++ b/docs/format_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/formatter_8h.html b/docs/formatter_8h.html index df21e28..72f2c38 100644 --- a/docs/formatter_8h.html +++ b/docs/formatter_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/formatter_8h_source.html b/docs/formatter_8h_source.html index e15641b..26c0f56 100644 --- a/docs/formatter_8h_source.html +++ b/docs/formatter_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions.html b/docs/functions.html index 6fc67d6..dfe9fbb 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_a.html b/docs/functions_a.html index 1ef95a7..c89db27 100644 --- a/docs/functions_a.html +++ b/docs/functions_a.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_b.html b/docs/functions_b.html index 3a5c36d..75c9935 100644 --- a/docs/functions_b.html +++ b/docs/functions_b.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_c.html b/docs/functions_c.html index 2e3722f..faaac63 100644 --- a/docs/functions_c.html +++ b/docs/functions_c.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_d.html b/docs/functions_d.html index 90ead58..9d55bdd 100644 --- a/docs/functions_d.html +++ b/docs/functions_d.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_e.html b/docs/functions_e.html index 4a6577e..aa93605 100644 --- a/docs/functions_e.html +++ b/docs/functions_e.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_enum.html b/docs/functions_enum.html index 7e404db..2ec5ac5 100644 --- a/docs/functions_enum.html +++ b/docs/functions_enum.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_eval.html b/docs/functions_eval.html index 8d9e5f7..d830210 100644 --- a/docs/functions_eval.html +++ b/docs/functions_eval.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_f.html b/docs/functions_f.html index 9241556..bf6da08 100644 --- a/docs/functions_f.html +++ b/docs/functions_f.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func.html b/docs/functions_func.html index c4e0839..476f7b9 100644 --- a/docs/functions_func.html +++ b/docs/functions_func.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_b.html b/docs/functions_func_b.html index 3ccffc6..31dea04 100644 --- a/docs/functions_func_b.html +++ b/docs/functions_func_b.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_c.html b/docs/functions_func_c.html index b3c287f..f1827ef 100644 --- a/docs/functions_func_c.html +++ b/docs/functions_func_c.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_d.html b/docs/functions_func_d.html index 923efed..822e321 100644 --- a/docs/functions_func_d.html +++ b/docs/functions_func_d.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_e.html b/docs/functions_func_e.html index a74c142..db437d7 100644 --- a/docs/functions_func_e.html +++ b/docs/functions_func_e.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_f.html b/docs/functions_func_f.html index 215c581..e344494 100644 --- a/docs/functions_func_f.html +++ b/docs/functions_func_f.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_g.html b/docs/functions_func_g.html index 5b535bc..42a6af4 100644 --- a/docs/functions_func_g.html +++ b/docs/functions_func_g.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_h.html b/docs/functions_func_h.html index 8a285dc..81d8a77 100644 --- a/docs/functions_func_h.html +++ b/docs/functions_func_h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_i.html b/docs/functions_func_i.html index 0e6a198..a7e5ca1 100644 --- a/docs/functions_func_i.html +++ b/docs/functions_func_i.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_l.html b/docs/functions_func_l.html index 17ee8ef..ef5327b 100644 --- a/docs/functions_func_l.html +++ b/docs/functions_func_l.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_m.html b/docs/functions_func_m.html index ed6ebd0..63e1c60 100644 --- a/docs/functions_func_m.html +++ b/docs/functions_func_m.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_n.html b/docs/functions_func_n.html index e17431c..7662a33 100644 --- a/docs/functions_func_n.html +++ b/docs/functions_func_n.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_o.html b/docs/functions_func_o.html index 3a89ff5..4a6cbe2 100644 --- a/docs/functions_func_o.html +++ b/docs/functions_func_o.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_p.html b/docs/functions_func_p.html index 0817e25..63a2e9e 100644 --- a/docs/functions_func_p.html +++ b/docs/functions_func_p.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_r.html b/docs/functions_func_r.html index eac8a8c..bafdcb4 100644 --- a/docs/functions_func_r.html +++ b/docs/functions_func_r.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_s.html b/docs/functions_func_s.html index 1a8e15e..8c3f182 100644 --- a/docs/functions_func_s.html +++ b/docs/functions_func_s.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_t.html b/docs/functions_func_t.html index 49e7f4f..bb07f82 100644 --- a/docs/functions_func_t.html +++ b/docs/functions_func_t.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_u.html b/docs/functions_func_u.html index 440df23..d1c44d1 100644 --- a/docs/functions_func_u.html +++ b/docs/functions_func_u.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_v.html b/docs/functions_func_v.html index cbce6a7..121a087 100644 --- a/docs/functions_func_v.html +++ b/docs/functions_func_v.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_w.html b/docs/functions_func_w.html index 6c9555b..1770a93 100644 --- a/docs/functions_func_w.html +++ b/docs/functions_func_w.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_x.html b/docs/functions_func_x.html index c2e10eb..7b3f625 100644 --- a/docs/functions_func_x.html +++ b/docs/functions_func_x.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_y.html b/docs/functions_func_y.html index f6145f6..8eaef00 100644 --- a/docs/functions_func_y.html +++ b/docs/functions_func_y.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_z.html b/docs/functions_func_z.html index 49a1484..beb243d 100644 --- a/docs/functions_func_z.html +++ b/docs/functions_func_z.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_func_~.html b/docs/functions_func_~.html index d2056e2..824a4d0 100644 --- a/docs/functions_func_~.html +++ b/docs/functions_func_~.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_g.html b/docs/functions_g.html index d61376d..2668a64 100644 --- a/docs/functions_g.html +++ b/docs/functions_g.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_h.html b/docs/functions_h.html index c3b1660..d9ab59f 100644 --- a/docs/functions_h.html +++ b/docs/functions_h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_i.html b/docs/functions_i.html index 501a23a..0aedaf1 100644 --- a/docs/functions_i.html +++ b/docs/functions_i.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_k.html b/docs/functions_k.html index 36bcfba..523fb09 100644 --- a/docs/functions_k.html +++ b/docs/functions_k.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_l.html b/docs/functions_l.html index 2db12f6..1ca613b 100644 --- a/docs/functions_l.html +++ b/docs/functions_l.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_m.html b/docs/functions_m.html index 1499b3c..05b9ff9 100644 --- a/docs/functions_m.html +++ b/docs/functions_m.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_n.html b/docs/functions_n.html index 9098111..f035c35 100644 --- a/docs/functions_n.html +++ b/docs/functions_n.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_o.html b/docs/functions_o.html index bb65191..570cde2 100644 --- a/docs/functions_o.html +++ b/docs/functions_o.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_p.html b/docs/functions_p.html index 9effac9..e59f7bb 100644 --- a/docs/functions_p.html +++ b/docs/functions_p.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_q.html b/docs/functions_q.html index 4d4efe1..69fff3c 100644 --- a/docs/functions_q.html +++ b/docs/functions_q.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_r.html b/docs/functions_r.html index 095d0ee..2334522 100644 --- a/docs/functions_r.html +++ b/docs/functions_r.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_rela.html b/docs/functions_rela.html index c771a5c..098bf91 100644 --- a/docs/functions_rela.html +++ b/docs/functions_rela.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_s.html b/docs/functions_s.html index 3ea5bc6..cc021cd 100644 --- a/docs/functions_s.html +++ b/docs/functions_s.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_t.html b/docs/functions_t.html index 1dc4200..0199f0f 100644 --- a/docs/functions_t.html +++ b/docs/functions_t.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_type.html b/docs/functions_type.html index 27e6848..5e565ab 100644 --- a/docs/functions_type.html +++ b/docs/functions_type.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_u.html b/docs/functions_u.html index 795f365..297c50f 100644 --- a/docs/functions_u.html +++ b/docs/functions_u.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_v.html b/docs/functions_v.html index 1559f8d..d3f4512 100644 --- a/docs/functions_v.html +++ b/docs/functions_v.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars.html b/docs/functions_vars.html index 5574af1..12237ae 100644 --- a/docs/functions_vars.html +++ b/docs/functions_vars.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_b.html b/docs/functions_vars_b.html index b713286..baf69fe 100644 --- a/docs/functions_vars_b.html +++ b/docs/functions_vars_b.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_c.html b/docs/functions_vars_c.html index 4997122..e8a7a92 100644 --- a/docs/functions_vars_c.html +++ b/docs/functions_vars_c.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_d.html b/docs/functions_vars_d.html index 495cb7b..e24e5a4 100644 --- a/docs/functions_vars_d.html +++ b/docs/functions_vars_d.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_e.html b/docs/functions_vars_e.html index e274fb4..795743f 100644 --- a/docs/functions_vars_e.html +++ b/docs/functions_vars_e.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_f.html b/docs/functions_vars_f.html index e5fd255..26090f4 100644 --- a/docs/functions_vars_f.html +++ b/docs/functions_vars_f.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_g.html b/docs/functions_vars_g.html index cb0fa1c..edc0cbb 100644 --- a/docs/functions_vars_g.html +++ b/docs/functions_vars_g.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_h.html b/docs/functions_vars_h.html index 0345c35..571997d 100644 --- a/docs/functions_vars_h.html +++ b/docs/functions_vars_h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_i.html b/docs/functions_vars_i.html index 7282e48..8bbbd3d 100644 --- a/docs/functions_vars_i.html +++ b/docs/functions_vars_i.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_k.html b/docs/functions_vars_k.html index 7acab62..2d3d783 100644 --- a/docs/functions_vars_k.html +++ b/docs/functions_vars_k.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_l.html b/docs/functions_vars_l.html index 72e771c..865c2e7 100644 --- a/docs/functions_vars_l.html +++ b/docs/functions_vars_l.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_m.html b/docs/functions_vars_m.html index c287cfa..02cda73 100644 --- a/docs/functions_vars_m.html +++ b/docs/functions_vars_m.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_n.html b/docs/functions_vars_n.html index f2ef17b..57751df 100644 --- a/docs/functions_vars_n.html +++ b/docs/functions_vars_n.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_o.html b/docs/functions_vars_o.html index 76ba5ed..2d42ee4 100644 --- a/docs/functions_vars_o.html +++ b/docs/functions_vars_o.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_p.html b/docs/functions_vars_p.html index d7c6f6f..853ea5c 100644 --- a/docs/functions_vars_p.html +++ b/docs/functions_vars_p.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_r.html b/docs/functions_vars_r.html index 9fb86c9..67d2363 100644 --- a/docs/functions_vars_r.html +++ b/docs/functions_vars_r.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_s.html b/docs/functions_vars_s.html index cf919a1..39ab854 100644 --- a/docs/functions_vars_s.html +++ b/docs/functions_vars_s.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_t.html b/docs/functions_vars_t.html index da3c0fd..9019cbb 100644 --- a/docs/functions_vars_t.html +++ b/docs/functions_vars_t.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_u.html b/docs/functions_vars_u.html index 6fe6bbd..2614b38 100644 --- a/docs/functions_vars_u.html +++ b/docs/functions_vars_u.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_v.html b/docs/functions_vars_v.html index bd8ed97..7ec1268 100644 --- a/docs/functions_vars_v.html +++ b/docs/functions_vars_v.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_w.html b/docs/functions_vars_w.html index 3349254..3fd646d 100644 --- a/docs/functions_vars_w.html +++ b/docs/functions_vars_w.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_x.html b/docs/functions_vars_x.html index 5526d16..ade4f9f 100644 --- a/docs/functions_vars_x.html +++ b/docs/functions_vars_x.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_y.html b/docs/functions_vars_y.html index 338cc50..6373866 100644 --- a/docs/functions_vars_y.html +++ b/docs/functions_vars_y.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_vars_z.html b/docs/functions_vars_z.html index b51aa8c..a88cf76 100644 --- a/docs/functions_vars_z.html +++ b/docs/functions_vars_z.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_w.html b/docs/functions_w.html index dbb390f..98ec445 100644 --- a/docs/functions_w.html +++ b/docs/functions_w.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_x.html b/docs/functions_x.html index e5694d5..e065595 100644 --- a/docs/functions_x.html +++ b/docs/functions_x.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_y.html b/docs/functions_y.html index 7fb5e95..e055c59 100644 --- a/docs/functions_y.html +++ b/docs/functions_y.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_z.html b/docs/functions_z.html index 9c376d5..c917711 100644 --- a/docs/functions_z.html +++ b/docs/functions_z.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/functions_~.html b/docs/functions_~.html index d435aab..8c1eede 100644 --- a/docs/functions_~.html +++ b/docs/functions_~.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/globals.html b/docs/globals.html index c20f1b2..5cd6fa2 100644 --- a/docs/globals.html +++ b/docs/globals.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/globals_defs.html b/docs/globals_defs.html index ae7e9a8..d9194ad 100644 --- a/docs/globals_defs.html +++ b/docs/globals_defs.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/globals_enum.html b/docs/globals_enum.html index 34e4e91..38b829a 100644 --- a/docs/globals_enum.html +++ b/docs/globals_enum.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/globals_eval.html b/docs/globals_eval.html index 1c9d81a..f72fec2 100644 --- a/docs/globals_eval.html +++ b/docs/globals_eval.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/globals_func.html b/docs/globals_func.html index 5941aba..05e0ac3 100644 --- a/docs/globals_func.html +++ b/docs/globals_func.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/globals_type.html b/docs/globals_type.html index 47ed461..deb965d 100644 --- a/docs/globals_type.html +++ b/docs/globals_type.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/hierarchy.html b/docs/hierarchy.html index ecc9b36..bef6d5d 100644 --- a/docs/hierarchy.html +++ b/docs/hierarchy.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/index.html b/docs/index.html index 3df6d85..fb3f446 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,7 +5,7 @@ -Livox SDK API: Main Page +Livox SDK API: 1 Introduction @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
@@ -86,11 +86,72 @@ $(document).ready(function(){initNavTree('index.html','');}); -
+
-
Livox SDK API Documentation
+
1 Introduction
+

Livox SDK is the software development kit designed for all Livox products. It is developed based on C/C++ following Livox SDK Communication Protocol, and provides easy-to-use C style API. With Livox SDK, users can quickly connect to Livox products and receive point cloud data.

+

Livox SDK consists of Livox SDK communication protocol, Livox SDK core, Livox SDK API, Linux sample, and ROS demo.

+

Prerequisites

+
    +
  • Ubuntu 14.04/Ubuntu 16.04, both x86 and ARM (Nvidia TX2)
  • +
  • Windows 7/10, Visual Studio 2015/2017
  • +
  • C++11 compiler.
  • +
+

2 Livox SDK Communication Protocol

+

Livox SDK communication protocol opens to all users. It is the communication protocol between user programs and Livox products. The protocol consists of control commands and data format. Please refer to the Livox SDK Communication Protocol for detailed information.

+

3 Livox SDK Core

+

Livox SDK provides the implementation of control commands and point cloud data transmission, as well as the C/C++ API. The basic structure of Livox SDK core is shown as below:

+
+sdk.png +
+Livox SDK Architecture
+

User Datagram Protocol (UDP) is used for communication between Livox SDK and LiDAR sensors. Please refer to the Livox SDK Communication Protocol for further information. Point cloud data handler supports point cloud data transmission, while command handler receives and sends control commands. And the C/C++ API is based on command handler and point cloud data handler.

+

The Livox LiDAR sensors can be connected to host directly or through the Livox Hub. Livox SDK supports both connection methods. When LiDAR units are connected to host directly, the host will establish communication with each LiDAR unit individually. And if the LiDAR units connect to host through Hub, then the host only communicates with the Livox Hub while the Hub communicates with each LiDAR unit.

+

4 Livox SDK API

+

Livox SDK API provides a set of C style functions which can be conveniently integrated in C/C++ programs. Please refer to the Livox SDK API Reference for further information.

+

4.1 Installation

+

The installation procedures in Ubuntu 16.04/14.04 LTS and Windows 7/10 are shown here as examples.

4.1.1 Ubuntu 16.04/14.04 LTS

+

Dependencies

+

Livox SDK requires CMake 3.0.0+, Apache Portable Runtime (APR) 1.61+ and Boost 1.54+ as dependencies. You can install these packages using apt:

sudo apt install cmake libapr1-dev libboost-atomic-dev libboost-system-dev

Compile Livox SDK

+

In the Livox SDK directory, run the following commands to compile the project:

git clone https://github.com/Livox-SDK/Livox-SDK.git
cd Livox-SDK/build
cmake ..
make
sudo make install

4.1.2 Windows 7/10

+

Dependencies

+

Livox SDK supports Visual Studio 2015/2017 and requires CMake 3.0.0+, Apache Portable Runtime (APR) 1.61+ and Boost 1.54+ as dependencies. vcpkg is recommended for building the dependency libraries as follows: For the 32-bit project:

.\vcpkg install apr
.\vcpkg install boost-atomic
.\vcpkg install boost-system
.\vcpkg install boost-thread
.\vcpkg integrate install

For the 64-bit project:

.\vcpkg install apr:x64-windows
.\vcpkg install boost-atomic:x64-windows
.\vcpkg install boost-system:x64-windows
.\vcpkg install boost-thread:x64-windows
.\vcpkg integrate install

Then, in the Livox SDK directory, run the following commands to create the Visual Studio solution file. Please replace [vcpkgroot] with your vcpkg installation path. Generate the 32-bit project:

cd build && \
cmake .. "-DCMAKE_TOOLCHAIN_FILE=[vcpkgroot]\scripts\buildsystems\vcpkg.cmake"

Generate the 64-bit project:

cd build && \
cmake .. -G "Visual Studio 15 2017 Win64" "-DCMAKE_TOOLCHAIN_FILE=[vcpkgroot]\scripts\buildsystems\vcpkg.cmake"

Compile Livox SDK

+

You can now compile the Livox SDK in Visual Studio.

4.2 Run Livox SDK Sample

+

Two samples are provided in Sample/Lidar and Sample/Hub, which demonstrate how to configure Livox LiDAR units and receive the point cloud data when directly connecting Livox SDK to LiDAR units or by using a Livox Hub, respectively. The sequence diagram is shown as below:

+
+sample.png +
+

4.2.1 Ubuntu 16.04 /14.04 LTS

+

For Ubuntun 16.04/14.04 LTS, run the lidar_sample if connect with the LiDAR unit(s):

cd sample/lidar && ./lidar_sample

or run the hub_sample if connect with the hub unit(s):

cd sample/hub && ./hub_sample

4.2.2 Windows 7/10

+

After compiling the Livox SDK as shown in section 4.1.2, you can find hub_sample.exe or lidar_sample.exe in the {Livox-SDK}\build\sample\hub\Debug or {Livox-SDK}\build\sample\lidar\Debug folder, respectively, which can be run directly.

+

Then you can see the information as below:

+
+sdk_init.png +
+

4.3 Connect to the specific LiDAR units

+

Samples we provided will connect all the broadcast device in you LAN in default.There are two ways to connect the specific units:

+
    +
  • run sample with input options
  • +
  • edit the Broadcast Code list in source code
  • +
+

NOTE:

+

Each Livox LiDAR unit owns a unique Broadcast Code . The broadcast code consists of its serial number and an additional number (1,2, or 3). The serial number can be found on the body of the LiDAR unit (below the QR code).The Broadcast Code may be used when you want to connect to the specific LiDAR unit(s). The detailed format is shown as below:

+
+broadcast_code.png +
+Broadcast Code
+

4.3.1 Program Options

+

We provide the following program options for connecting the specific units and saving log file:

[-c]:Register LiDAR units by Broadcast Code.Connect the registered units ONLY.
[-l]:Save the log file(In the executable file's directory).
[-h]:Show help.

Here is the example:

./lidar_sample -c "00000000000002&00000000000003&00000000000004" -l
./hub_sample -c "00000000000001" -l

4.3.2 Edit Broadcast Code List

+

Comment the following code section:

+
/** Connect all the broadcast device. */
int lidar_count = 0;
char broadcast_code_list[kMaxLidarCount][kBroadcastCodeSize];

Remove the comment of the following code section, set the BROADCAST_CODE_LIST_SIZE and replace the broadcast code lists in the main.c for both LiDAR sample ({Livox-SDK}/sample/lidar/main.c) and Hub sample ({Livox-SDK}/sample/hub/main.c) with the broadcast code of your devices before building.

+
/** Connect the broadcast device in list, please input the broadcast code and modify the BROADCAST_CODE_LIST_SIZE. */
/*#define BROADCAST_CODE_LIST_SIZE 3
int lidar_count = BROADCAST_CODE_LIST_SIZE;
char broadcast_code_list[kMaxLidarCount][kBroadcastCodeSize] = {
"000000000000002",
"000000000000003",
"000000000000004"
};*/

5 Support

+

You can get support from Livox with the following methods:

+
diff --git a/docs/livox__def_8h.html b/docs/livox__def_8h.html index 5de8160..984fae9 100644 --- a/docs/livox__def_8h.html +++ b/docs/livox__def_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/livox__def_8h_source.html b/docs/livox__def_8h_source.html index 8512af9..72afd2b 100644 --- a/docs/livox__def_8h_source.html +++ b/docs/livox__def_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/livox__sdk_8h.html b/docs/livox__sdk_8h.html index 1193ed4..213aee1 100644 --- a/docs/livox__sdk_8h.html +++ b/docs/livox__sdk_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/livox__sdk_8h_source.html b/docs/livox__sdk_8h_source.html index 32839eb..7caad48 100644 --- a/docs/livox__sdk_8h_source.html +++ b/docs/livox__sdk_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/locale_8h.html b/docs/locale_8h.html index 529ea2a..6490de4 100644 --- a/docs/locale_8h.html +++ b/docs/locale_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/locale_8h_source.html b/docs/locale_8h_source.html index 0d19abb..a0194b1 100644 --- a/docs/locale_8h_source.html +++ b/docs/locale_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/log__msg_8h.html b/docs/log__msg_8h.html index 6c1d14c..6a6554f 100644 --- a/docs/log__msg_8h.html +++ b/docs/log__msg_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/log__msg_8h_source.html b/docs/log__msg_8h_source.html index b656677..da9c92b 100644 --- a/docs/log__msg_8h_source.html +++ b/docs/log__msg_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/logger_8h.html b/docs/logger_8h.html index 8d0a1ce..ed3698e 100644 --- a/docs/logger_8h.html +++ b/docs/logger_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/logger_8h_source.html b/docs/logger_8h_source.html index 04c8e86..aa2739d 100644 --- a/docs/logger_8h_source.html +++ b/docs/logger_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/logger__impl_8h.html b/docs/logger__impl_8h.html index e0eea95..10aa77d 100644 --- a/docs/logger__impl_8h.html +++ b/docs/logger__impl_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/logger__impl_8h_source.html b/docs/logger__impl_8h_source.html index f197b94..655c534 100644 --- a/docs/logger__impl_8h_source.html +++ b/docs/logger__impl_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/mpmc__blocking__q_8h.html b/docs/mpmc__blocking__q_8h.html index ec9a332..68b9db2 100644 --- a/docs/mpmc__blocking__q_8h.html +++ b/docs/mpmc__blocking__q_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/mpmc__blocking__q_8h_source.html b/docs/mpmc__blocking__q_8h_source.html index 7e74957..a6fa50b 100644 --- a/docs/mpmc__blocking__q_8h_source.html +++ b/docs/mpmc__blocking__q_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/msvc__sink_8h.html b/docs/msvc__sink_8h.html index 2f731c7..618d4c3 100644 --- a/docs/msvc__sink_8h.html +++ b/docs/msvc__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/msvc__sink_8h_source.html b/docs/msvc__sink_8h_source.html index 0dba388..bf2dac1 100644 --- a/docs/msvc__sink_8h_source.html +++ b/docs/msvc__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacefmt.html b/docs/namespacefmt.html index f6241bb..abd231c 100644 --- a/docs/namespacefmt.html +++ b/docs/namespacefmt.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacefmt_1_1v5.html b/docs/namespacefmt_1_1v5.html index 66d3c1a..f7076ad 100644 --- a/docs/namespacefmt_1_1v5.html +++ b/docs/namespacefmt_1_1v5.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacefmt_1_1v5_1_1internal.html b/docs/namespacefmt_1_1v5_1_1internal.html index 032f835..e35b567 100644 --- a/docs/namespacefmt_1_1v5_1_1internal.html +++ b/docs/namespacefmt_1_1v5_1_1internal.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacelivox.html b/docs/namespacelivox.html index d54871a..ea72ed5 100644 --- a/docs/namespacelivox.html +++ b/docs/namespacelivox.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers.html b/docs/namespacemembers.html index 4ab7464..d46eb30 100644 --- a/docs/namespacemembers.html +++ b/docs/namespacemembers.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_a.html b/docs/namespacemembers_a.html index 04ac748..cfcef73 100644 --- a/docs/namespacemembers_a.html +++ b/docs/namespacemembers_a.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_b.html b/docs/namespacemembers_b.html index 270a9e0..0448831 100644 --- a/docs/namespacemembers_b.html +++ b/docs/namespacemembers_b.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_c.html b/docs/namespacemembers_c.html index 1491df4..de88431 100644 --- a/docs/namespacemembers_c.html +++ b/docs/namespacemembers_c.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_d.html b/docs/namespacemembers_d.html index a0f67ce..b7574f6 100644 --- a/docs/namespacemembers_d.html +++ b/docs/namespacemembers_d.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_e.html b/docs/namespacemembers_e.html index 7316d2e..f1de9e4 100644 --- a/docs/namespacemembers_e.html +++ b/docs/namespacemembers_e.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_enum.html b/docs/namespacemembers_enum.html index ff9cea1..ae7ac37 100644 --- a/docs/namespacemembers_enum.html +++ b/docs/namespacemembers_enum.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_eval.html b/docs/namespacemembers_eval.html index 6465f2d..25d2a6b 100644 --- a/docs/namespacemembers_eval.html +++ b/docs/namespacemembers_eval.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_f.html b/docs/namespacemembers_f.html index 4a54abd..382ac09 100644 --- a/docs/namespacemembers_f.html +++ b/docs/namespacemembers_f.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func.html b/docs/namespacemembers_func.html index 727268a..8644dd3 100644 --- a/docs/namespacemembers_func.html +++ b/docs/namespacemembers_func.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_a.html b/docs/namespacemembers_func_a.html index 784d875..5a7a2b1 100644 --- a/docs/namespacemembers_func_a.html +++ b/docs/namespacemembers_func_a.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_b.html b/docs/namespacemembers_func_b.html index e40046b..aca4a0a 100644 --- a/docs/namespacemembers_func_b.html +++ b/docs/namespacemembers_func_b.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_c.html b/docs/namespacemembers_func_c.html index b47e4f0..5cf16a1 100644 --- a/docs/namespacemembers_func_c.html +++ b/docs/namespacemembers_func_c.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_d.html b/docs/namespacemembers_func_d.html index d65a252..a372d72 100644 --- a/docs/namespacemembers_func_d.html +++ b/docs/namespacemembers_func_d.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_e.html b/docs/namespacemembers_func_e.html index f08b990..4a5bcf6 100644 --- a/docs/namespacemembers_func_e.html +++ b/docs/namespacemembers_func_e.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_f.html b/docs/namespacemembers_func_f.html index 1c7120d..8f74f6f 100644 --- a/docs/namespacemembers_func_f.html +++ b/docs/namespacemembers_func_f.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_g.html b/docs/namespacemembers_func_g.html index 9194d69..5e7b04e 100644 --- a/docs/namespacemembers_func_g.html +++ b/docs/namespacemembers_func_g.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_h.html b/docs/namespacemembers_func_h.html index 384d670..b570a9f 100644 --- a/docs/namespacemembers_func_h.html +++ b/docs/namespacemembers_func_h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_i.html b/docs/namespacemembers_func_i.html index 10c2698..87e082f 100644 --- a/docs/namespacemembers_func_i.html +++ b/docs/namespacemembers_func_i.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_j.html b/docs/namespacemembers_func_j.html index e8d7c31..808d02f 100644 --- a/docs/namespacemembers_func_j.html +++ b/docs/namespacemembers_func_j.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_l.html b/docs/namespacemembers_func_l.html index 582c54e..f06207b 100644 --- a/docs/namespacemembers_func_l.html +++ b/docs/namespacemembers_func_l.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_m.html b/docs/namespacemembers_func_m.html index 662039f..0458bee 100644 --- a/docs/namespacemembers_func_m.html +++ b/docs/namespacemembers_func_m.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_n.html b/docs/namespacemembers_func_n.html index af95383..825bbc3 100644 --- a/docs/namespacemembers_func_n.html +++ b/docs/namespacemembers_func_n.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_o.html b/docs/namespacemembers_func_o.html index c5ff4f2..88e5baa 100644 --- a/docs/namespacemembers_func_o.html +++ b/docs/namespacemembers_func_o.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_p.html b/docs/namespacemembers_func_p.html index 34dcd46..1e9d24b 100644 --- a/docs/namespacemembers_func_p.html +++ b/docs/namespacemembers_func_p.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_r.html b/docs/namespacemembers_func_r.html index 3063c40..cb4f20a 100644 --- a/docs/namespacemembers_func_r.html +++ b/docs/namespacemembers_func_r.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_s.html b/docs/namespacemembers_func_s.html index d6b3c09..629215e 100644 --- a/docs/namespacemembers_func_s.html +++ b/docs/namespacemembers_func_s.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_t.html b/docs/namespacemembers_func_t.html index d113e19..930a983 100644 --- a/docs/namespacemembers_func_t.html +++ b/docs/namespacemembers_func_t.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_u.html b/docs/namespacemembers_func_u.html index 2a21a3f..3e6fd8f 100644 --- a/docs/namespacemembers_func_u.html +++ b/docs/namespacemembers_func_u.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_v.html b/docs/namespacemembers_func_v.html index 864a991..e9f35bf 100644 --- a/docs/namespacemembers_func_v.html +++ b/docs/namespacemembers_func_v.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_func_w.html b/docs/namespacemembers_func_w.html index 0ccfcf6..213dc64 100644 --- a/docs/namespacemembers_func_w.html +++ b/docs/namespacemembers_func_w.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_g.html b/docs/namespacemembers_g.html index 09fe1c8..4efda30 100644 --- a/docs/namespacemembers_g.html +++ b/docs/namespacemembers_g.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_h.html b/docs/namespacemembers_h.html index 2dd2da8..9b8d6cb 100644 --- a/docs/namespacemembers_h.html +++ b/docs/namespacemembers_h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_i.html b/docs/namespacemembers_i.html index 6c54f03..bd5cb2b 100644 --- a/docs/namespacemembers_i.html +++ b/docs/namespacemembers_i.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_j.html b/docs/namespacemembers_j.html index a961c88..41f80ee 100644 --- a/docs/namespacemembers_j.html +++ b/docs/namespacemembers_j.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_k.html b/docs/namespacemembers_k.html index 3704632..97781be 100644 --- a/docs/namespacemembers_k.html +++ b/docs/namespacemembers_k.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_l.html b/docs/namespacemembers_l.html index 5feceaa..b177b6c 100644 --- a/docs/namespacemembers_l.html +++ b/docs/namespacemembers_l.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_m.html b/docs/namespacemembers_m.html index db42fda..f766b51 100644 --- a/docs/namespacemembers_m.html +++ b/docs/namespacemembers_m.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_n.html b/docs/namespacemembers_n.html index f190f2e..b155607 100644 --- a/docs/namespacemembers_n.html +++ b/docs/namespacemembers_n.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_o.html b/docs/namespacemembers_o.html index 9146e95..928a25e 100644 --- a/docs/namespacemembers_o.html +++ b/docs/namespacemembers_o.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_p.html b/docs/namespacemembers_p.html index a79694c..03aa29c 100644 --- a/docs/namespacemembers_p.html +++ b/docs/namespacemembers_p.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_r.html b/docs/namespacemembers_r.html index 0bbe0fd..736c18f 100644 --- a/docs/namespacemembers_r.html +++ b/docs/namespacemembers_r.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_s.html b/docs/namespacemembers_s.html index 591e956..95a8f72 100644 --- a/docs/namespacemembers_s.html +++ b/docs/namespacemembers_s.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_t.html b/docs/namespacemembers_t.html index 71f6507..0c1a207 100644 --- a/docs/namespacemembers_t.html +++ b/docs/namespacemembers_t.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_type.html b/docs/namespacemembers_type.html index 5fff9d2..9c375fd 100644 --- a/docs/namespacemembers_type.html +++ b/docs/namespacemembers_type.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_u.html b/docs/namespacemembers_u.html index f678d7a..1084e14 100644 --- a/docs/namespacemembers_u.html +++ b/docs/namespacemembers_u.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_v.html b/docs/namespacemembers_v.html index 4825ddf..f9c85a6 100644 --- a/docs/namespacemembers_v.html +++ b/docs/namespacemembers_v.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_vars.html b/docs/namespacemembers_vars.html index 7be76ec..6e6b1b3 100644 --- a/docs/namespacemembers_vars.html +++ b/docs/namespacemembers_vars.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacemembers_w.html b/docs/namespacemembers_w.html index a9d4b46..b2535c1 100644 --- a/docs/namespacemembers_w.html +++ b/docs/namespacemembers_w.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespaces.html b/docs/namespaces.html index 98390c7..6fd6a95 100644 --- a/docs/namespaces.html +++ b/docs/namespaces.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacespdlog.html b/docs/namespacespdlog.html index 678f0ca..277e96f 100644 --- a/docs/namespacespdlog.html +++ b/docs/namespacespdlog.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacespdlog_1_1details.html b/docs/namespacespdlog_1_1details.html index 27aee86..679f80c 100644 --- a/docs/namespacespdlog_1_1details.html +++ b/docs/namespacespdlog_1_1details.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacespdlog_1_1details_1_1fmt__helper.html b/docs/namespacespdlog_1_1details_1_1fmt__helper.html index ec18933..c87c8c1 100644 --- a/docs/namespacespdlog_1_1details_1_1fmt__helper.html +++ b/docs/namespacespdlog_1_1details_1_1fmt__helper.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacespdlog_1_1details_1_1os.html b/docs/namespacespdlog_1_1details_1_1os.html index 9426810..c34964e 100644 --- a/docs/namespacespdlog_1_1details_1_1os.html +++ b/docs/namespacespdlog_1_1details_1_1os.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacespdlog_1_1level.html b/docs/namespacespdlog_1_1level.html index 74eecd6..fccbf80 100644 --- a/docs/namespacespdlog_1_1level.html +++ b/docs/namespacespdlog_1_1level.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacespdlog_1_1sinks.html b/docs/namespacespdlog_1_1sinks.html index 20f535a..6c11421 100644 --- a/docs/namespacespdlog_1_1sinks.html +++ b/docs/namespacespdlog_1_1sinks.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/namespacestd.html b/docs/namespacestd.html index 34a2f1a..8303ad5 100644 --- a/docs/namespacestd.html +++ b/docs/namespacestd.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/navtreedata.js b/docs/navtreedata.js index 32d4391..59f330d 100644 --- a/docs/navtreedata.js +++ b/docs/navtreedata.js @@ -24,6 +24,7 @@ for the JavaScript code in this file var NAVTREE = [ [ "Livox SDK API", "index.html", [ + [ "1 Introduction", "index.html", null ], [ "Namespaces", "namespaces.html", [ [ "Namespace List", "namespaces.html", "namespaces_dup" ], [ "Namespace Members", "namespacemembers.html", [ @@ -72,10 +73,10 @@ var NAVTREEINDEX = "classspdlog_1_1sinks_1_1wincolor__sink.html#a5032da6fc760507134a7d1eff1a20b0a", "core_8h.html#a0af13074db7b689a71bd9ae94f8745a1", "format_8h.html#a7c29e7b4a54045f13bd664979804998d", -"logger_8h.html", -"spdlog_8h.html#ab3df0dca3174a057e99fc327e8c25c57", -"structfmt_1_1v5_1_1format__handler.html#a988c9b12cdd78f32d51c231134317a9a", -"structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4.html" +"log__msg_8h_source.html", +"spdlog_8h.html#ab1211636fc47637f4dc5ee9a18aa1bce", +"structfmt_1_1v5_1_1format__handler.html#a717e330f9b9cfa519cbf97e5e2a81add", +"structfmt_1_1v5_1_1internal_1_1make__integer__sequence.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/navtreeindex0.js b/docs/navtreeindex0.js index fafc420..d738532 100644 --- a/docs/navtreeindex0.js +++ b/docs/navtreeindex0.js @@ -1,253 +1,253 @@ var NAVTREEINDEX0 = { -"_fast_c_r_c_8h.html":[2,0,0,0,1,0,0], -"_fast_c_r_c_8h_source.html":[2,0,0,0,1,0,0], -"android__sink_8h.html":[2,0,0,0,1,1,0,2,0], -"android__sink_8h.html#a0811adb1075181f73abc87c624fbff7e":[2,0,0,0,1,1,0,2,0,4], -"android__sink_8h.html#a38acf93862031f1db0e4bdcf8e8b18f3":[2,0,0,0,1,1,0,2,0,3], -"android__sink_8h.html#a8e65ae8a75f7a37ede8942a4311cee5e":[2,0,0,0,1,1,0,2,0,1], -"android__sink_8h.html#aab5b508d51de238919a570cf3ca6d3db":[2,0,0,0,1,1,0,2,0,5], -"android__sink_8h.html#afa3ee88e3e87a4908cd80f8ccd4fdd3e":[2,0,0,0,1,1,0,2,0,2], -"android__sink_8h_source.html":[2,0,0,0,1,1,0,2,0], -"annotated.html":[1,0], -"ansicolor__sink_8h.html":[2,0,0,0,1,1,0,2,1], -"ansicolor__sink_8h.html#a10475192b7db414c386fbccb7401d852":[2,0,0,0,1,1,0,2,1,3], -"ansicolor__sink_8h.html#a3d8d6c5070124583420003b8c00ec441":[2,0,0,0,1,1,0,2,1,2], -"ansicolor__sink_8h.html#aa12104ff6999c8908f687c3eb87d827e":[2,0,0,0,1,1,0,2,1,1], -"ansicolor__sink_8h.html#aa30d2f8d27e36f73043723a42199fd7b":[2,0,0,0,1,1,0,2,1,4], -"ansicolor__sink_8h_source.html":[2,0,0,0,1,1,0,2,1], -"async_8h.html":[2,0,0,0,1,1,0,3], -"async_8h.html#a050e412794a5af8916ef36e4ed100c25":[2,0,0,0,1,1,0,3,7], -"async_8h.html#a17a4d95759b4076827905fd8f6b10d36":[2,0,0,0,1,1,0,3,5], -"async_8h.html#a220f834b057b45ef730c435bcc60b0aa":[2,0,0,0,1,1,0,3,3], -"async_8h.html#a6676a1ffb5ea174a2392ab0317bbcff2":[2,0,0,0,1,1,0,3,6], -"async_8h.html#a796f2e548cff4f12a5b2a52b07d3128b":[2,0,0,0,1,1,0,3,2], -"async_8h.html#a962b94a80258f9a202d590888349577c":[2,0,0,0,1,1,0,3,1], -"async_8h.html#ac5db26987120ac7b1ba0fbefe551ee52":[2,0,0,0,1,1,0,3,4], -"async_8h_source.html":[2,0,0,0,1,1,0,3], -"async__logger_8h.html":[2,0,0,0,1,1,0,4], -"async__logger_8h.html#a42e109759a11c9514d3f6313a7709852":[2,0,0,0,1,1,0,4,1], -"async__logger_8h.html#a42e109759a11c9514d3f6313a7709852a14511f2f5564650d129ca7cabc333278":[2,0,0,0,1,1,0,4,1,0], -"async__logger_8h.html#a42e109759a11c9514d3f6313a7709852a6d09cc54ae10145444aa2f43fe46d9f2":[2,0,0,0,1,1,0,4,1,1], -"async__logger_8h_source.html":[2,0,0,0,1,1,0,4], -"async__logger__impl_8h.html":[2,0,0,0,1,1,0,0,0], -"async__logger__impl_8h_source.html":[2,0,0,0,1,1,0,0,0], -"base__sink_8h.html":[2,0,0,0,1,1,0,2,2], -"base__sink_8h_source.html":[2,0,0,0,1,1,0,2,2], -"basic__file__sink_8h.html":[2,0,0,0,1,1,0,2,3], -"basic__file__sink_8h.html#a3c2170781ef0f706f8cea55f8d6b0609":[2,0,0,0,1,1,0,2,3,1], -"basic__file__sink_8h.html#ab6d38313481cd7fedfb8aeb68c2c61d1":[2,0,0,0,1,1,0,2,3,2], -"basic__file__sink_8h.html#abc9cd0646191cc0b295b6e50367b22b7":[2,0,0,0,1,1,0,2,3,4], -"basic__file__sink_8h.html#abd73a6177edaccb77048bf47e3f8ad23":[2,0,0,0,1,1,0,2,3,3], -"basic__file__sink_8h_source.html":[2,0,0,0,1,1,0,2,3], -"bin__to__hex_8h.html":[2,0,0,0,1,1,0,1,1], -"bin__to__hex_8h.html#a3730108d5b1a43b30f8ddf32404b9d25":[2,0,0,0,1,1,0,1,1,3], -"bin__to__hex_8h.html#acd3f4323bb627945b4cecbbbc62770ef":[2,0,0,0,1,1,0,1,1,2], -"bin__to__hex_8h_source.html":[2,0,0,0,1,1,0,1,1], -"chrono_8h.html":[2,0,0,0,1,1,0,1,0,0], -"chrono_8h.html#a35695a1a18217a00cffbbe83469b7cf8":[2,0,0,0,1,1,0,1,0,0,21], -"chrono_8h.html#a3bd0842649988da27458042eaf3531c7":[2,0,0,0,1,1,0,1,0,0,17], -"chrono_8h.html#a43ae61533d48f504ef7404c50fb7bf81":[2,0,0,0,1,1,0,1,0,0,11], -"chrono_8h.html#a45389b9f9549146c634dc6a20e9c5aa0":[2,0,0,0,1,1,0,1,0,0,16], -"chrono_8h.html#a58440beb03fea444297f8ca7834fed53":[2,0,0,0,1,1,0,1,0,0,19], -"chrono_8h.html#a5f9a2b5f27aa0b06a474ab13b2a32043":[2,0,0,0,1,1,0,1,0,0,22], -"chrono_8h.html#a6aad09a35158e998c2e5ece0ea0be67c":[2,0,0,0,1,1,0,1,0,0,6], -"chrono_8h.html#a6b61b71d26bceae8dbbde94f77974ed0":[2,0,0,0,1,1,0,1,0,0,7], -"chrono_8h.html#a6d437609eef4ec03ef1357ef2c8e6de6":[2,0,0,0,1,1,0,1,0,0,10], -"chrono_8h.html#a726baeb0d00c18038ccda7f1adc7a939":[2,0,0,0,1,1,0,1,0,0,18], -"chrono_8h.html#a8217980ba3189c7d8c3ce93f7d8e4c74":[2,0,0,0,1,1,0,1,0,0,3], -"chrono_8h.html#a8217980ba3189c7d8c3ce93f7d8e4c74aa04fe4e390a7c7d5d4583f85d24e164d":[2,0,0,0,1,1,0,1,0,0,3,1], -"chrono_8h.html#a8217980ba3189c7d8c3ce93f7d8e4c74ac00f0c4675b91fb8b918e4079a0b1bac":[2,0,0,0,1,1,0,1,0,0,3,0], -"chrono_8h.html#a8829616880e52dee640ee67ea6228fe6":[2,0,0,0,1,1,0,1,0,0,12], -"chrono_8h.html#a8fcc6765128d435aee70d2eaf12b14b2":[2,0,0,0,1,1,0,1,0,0,8], -"chrono_8h.html#aa054e910fa69e26e5762f0dd0af4bf42":[2,0,0,0,1,1,0,1,0,0,15], -"chrono_8h.html#aa86ebbcdd9d02fcda024dc30c3025ee4":[2,0,0,0,1,1,0,1,0,0,14], -"chrono_8h.html#ac024f2a2abe824964c2871057d2df7a0":[2,0,0,0,1,1,0,1,0,0,4], -"chrono_8h.html#ac8d52a6562cf462d46688fcfb29efc21":[2,0,0,0,1,1,0,1,0,0,9], -"chrono_8h.html#aca0a623b6a12f89c1ba373a518aacac8":[2,0,0,0,1,1,0,1,0,0,23], -"chrono_8h.html#aca35626c733dd1ba38eea2a3d680f4bb":[2,0,0,0,1,1,0,1,0,0,20], -"chrono_8h.html#ad8194ac1ba523a7a5014c9cb49f3bf8d":[2,0,0,0,1,1,0,1,0,0,24], -"chrono_8h.html#ae02edf3c77bf0dcce95fa440785c10e8":[2,0,0,0,1,1,0,1,0,0,5], -"chrono_8h.html#ae2784f11c8e123f59fb773b04717d5fb":[2,0,0,0,1,1,0,1,0,0,13], -"chrono_8h.html#aeaa4eca77afc74c176ac1a1b941105f7":[2,0,0,0,1,1,0,1,0,0,25], -"chrono_8h_source.html":[2,0,0,0,1,1,0,1,0,0], -"circular__q_8h.html":[2,0,0,0,1,1,0,0,1], -"circular__q_8h_source.html":[2,0,0,0,1,1,0,0,1], -"class_fast_c_r_c16.html":[1,0,12], -"class_fast_c_r_c16.html#a5b5fba9414abaf0eadca4c268828884b":[1,0,12,0], -"class_fast_c_r_c16.html#aa127f7c21a5ab74c0c30619ade0181b4":[1,0,12,1], -"class_fast_c_r_c32.html":[1,0,13], -"class_fast_c_r_c32.html#ade987c2d06975707d94aa2eaa203a480":[1,0,13,1], -"class_fast_c_r_c32.html#ae139e3fbeeb7adec610d50d638607c7d":[1,0,13,0], -"classes.html":[1,1], -"classfmt_1_1v5_1_1arg__formatter.html":[1,0,0,0,2], -"classfmt_1_1v5_1_1arg__formatter.html#a0925c1315a81b793b5e020e496c9234c":[1,0,0,0,2,3], -"classfmt_1_1v5_1_1arg__formatter.html#a093e3203258d2dfa3fa0282cb41c6b4d":[1,0,0,0,2,5], -"classfmt_1_1v5_1_1arg__formatter.html#a332fb38fd91d73717f0f3e0b2b09d3b7":[1,0,0,0,2,2], -"classfmt_1_1v5_1_1arg__formatter.html#adcd84c55fb1ae473917660743d000153":[1,0,0,0,2,4], -"classfmt_1_1v5_1_1arg__formatter.html#ae170841fcffcd93c9d342f7898f9aef9":[1,0,0,0,2,1], -"classfmt_1_1v5_1_1arg__formatter.html#aeda72496f8e7ff87432a167689a07b60":[1,0,0,0,2,0], -"classfmt_1_1v5_1_1back__insert__range.html":[1,0,0,0,4], -"classfmt_1_1v5_1_1back__insert__range.html#a7ac1989e9b9da2e27d42113a75ff8f33":[1,0,0,0,4,1], -"classfmt_1_1v5_1_1back__insert__range.html#a7dbc83149304d1f6fff9d3ba81cc4e23":[1,0,0,0,4,0], -"classfmt_1_1v5_1_1back__insert__range.html#abc01c2e16db484f994b86a47b133acab":[1,0,0,0,4,2], -"classfmt_1_1v5_1_1basic__cstring__view.html":[1,0,0,0,5], -"classfmt_1_1v5_1_1basic__cstring__view.html#a3fd9fc51eb41ceeae397a70712a68af5":[1,0,0,0,5,2], -"classfmt_1_1v5_1_1basic__cstring__view.html#a56c61688f005a3f7495d45b443d78d1c":[1,0,0,0,5,1], -"classfmt_1_1v5_1_1basic__cstring__view.html#ad21a04a526524ac3477761399a792fda":[1,0,0,0,5,0], -"classfmt_1_1v5_1_1basic__format__arg.html":[1,0,0,0,6], -"classfmt_1_1v5_1_1basic__format__arg.html#a36ff9952212731669effc63354c5b179":[1,0,0,0,6,2], -"classfmt_1_1v5_1_1basic__format__arg.html#a7974100f026be256213827458684be38":[1,0,0,0,6,7], -"classfmt_1_1v5_1_1basic__format__arg.html#a7d2678b3c4612757b6f1dcea4d284570":[1,0,0,0,6,8], -"classfmt_1_1v5_1_1basic__format__arg.html#a805469bff2286c05dcc69e9e7f10b3b2":[1,0,0,0,6,3], -"classfmt_1_1v5_1_1basic__format__arg.html#aa66a8b06ab57c780dea7b1759da404a3":[1,0,0,0,6,5], -"classfmt_1_1v5_1_1basic__format__arg.html#ab8e9e33cc7b78829001a86ef6110ebb6":[1,0,0,0,6,6], -"classfmt_1_1v5_1_1basic__format__arg.html#ab92c5293847324e1383d7bab6c7b9f35":[1,0,0,0,6,1], -"classfmt_1_1v5_1_1basic__format__arg.html#ac4eb1aac92345fa137b08888a2839313":[1,0,0,0,6,4], -"classfmt_1_1v5_1_1basic__format__arg.html#aeab7b1649adaa52475e1a72806a0b849":[1,0,0,0,6,9], -"classfmt_1_1v5_1_1basic__format__arg_1_1handle.html":[1,0,0,0,6,0], -"classfmt_1_1v5_1_1basic__format__arg_1_1handle.html#a2c29f6c7a5cc8ebb64f48aa3d4369e83":[1,0,0,0,6,0,0], -"classfmt_1_1v5_1_1basic__format__arg_1_1handle.html#ae4ed580bdb5b645e912e7f74a44e7043":[1,0,0,0,6,0,1], -"classfmt_1_1v5_1_1basic__format__args.html":[1,0,0,0,7], -"classfmt_1_1v5_1_1basic__format__args.html#a1625ea02e9400218dedfcabfcb924492":[1,0,0,0,7,1], -"classfmt_1_1v5_1_1basic__format__args.html#a324ac8280585ccbee69bcf0a75c3765a":[1,0,0,0,7,2], -"classfmt_1_1v5_1_1basic__format__args.html#a46d01e323ae8a2436a4ec4ed47d379b1":[1,0,0,0,7,4], -"classfmt_1_1v5_1_1basic__format__args.html#a7793770b464ca724fc86fcb199cd6d8b":[1,0,0,0,7,6], -"classfmt_1_1v5_1_1basic__format__args.html#a7974100f026be256213827458684be38":[1,0,0,0,7,7], -"classfmt_1_1v5_1_1basic__format__args.html#a7dd4ac1a1a0513a1b567d2c6251656a7":[1,0,0,0,7,9], -"classfmt_1_1v5_1_1basic__format__args.html#a9bc1ed80f61c5f8feaa1c3ead187f2e8":[1,0,0,0,7,5], -"classfmt_1_1v5_1_1basic__format__args.html#aae77a07c32a92e56243ff0a76f51eaff":[1,0,0,0,7,8], -"classfmt_1_1v5_1_1basic__format__args.html#abbaf332be8c119f7ed6b05e71ebde3c9":[1,0,0,0,7,3], -"classfmt_1_1v5_1_1basic__format__args.html#ae274e33ad24c361c93315f801d336b73":[1,0,0,0,7,0], -"classfmt_1_1v5_1_1basic__format__context.html":[1,0,0,0,8], -"classfmt_1_1v5_1_1basic__format__context.html#a08841c7d750e03983bad8bd6361f0a4c":[1,0,0,0,8,5], -"classfmt_1_1v5_1_1basic__format__context.html#aa88412259a118ed5ac97e9bd1cee92e3":[1,0,0,0,8,2], -"classfmt_1_1v5_1_1basic__format__context.html#aac5c87132bab71007a567bd1820f1a16":[1,0,0,0,8,1], -"classfmt_1_1v5_1_1basic__format__context.html#ac5b96279f3ca0db9c1879e7c33551985":[1,0,0,0,8,6], -"classfmt_1_1v5_1_1basic__format__context.html#adf22dc09de008340bf108c68281724f9":[1,0,0,0,8,3], -"classfmt_1_1v5_1_1basic__format__context.html#af38c9257418ad1abafccf1ca34d4bbb7":[1,0,0,0,8,4], -"classfmt_1_1v5_1_1basic__memory__buffer.html":[1,0,0,0,10], -"classfmt_1_1v5_1_1basic__memory__buffer.html#a04e7e682d636a65fa60fb0a5b78fa98d":[1,0,0,0,10,7], -"classfmt_1_1v5_1_1basic__memory__buffer.html#a094e634037328b140f061c7bec7f3887":[1,0,0,0,10,5], -"classfmt_1_1v5_1_1basic__memory__buffer.html#a137e3161cc2723cb0b0ec2561f879348":[1,0,0,0,10,0], -"classfmt_1_1v5_1_1basic__memory__buffer.html#a16dc183a56fba190395fdea7629f69ca":[1,0,0,0,10,3], -"classfmt_1_1v5_1_1basic__memory__buffer.html#a4a840dd1d757f57f9ceee5da7442a9d1":[1,0,0,0,10,4], -"classfmt_1_1v5_1_1basic__memory__buffer.html#ad1d2a73db09717e1222e62d8e0f64e27":[1,0,0,0,10,2], -"classfmt_1_1v5_1_1basic__memory__buffer.html#aecaa097e427d00d791de417e5ea9034c":[1,0,0,0,10,1], -"classfmt_1_1v5_1_1basic__memory__buffer.html#aeeb97ae704fbe2d83c32dd2adbfdff7d":[1,0,0,0,10,6], -"classfmt_1_1v5_1_1basic__parse__context.html":[1,0,0,0,11], -"classfmt_1_1v5_1_1basic__parse__context.html#a026a5f2c3de8569b7527c7570009ecc6":[1,0,0,0,11,4], -"classfmt_1_1v5_1_1basic__parse__context.html#a1b0beb2ee86041582086cffa5070d02b":[1,0,0,0,11,5], -"classfmt_1_1v5_1_1basic__parse__context.html#a2061e0733dc01aafbd2180742ce3e420":[1,0,0,0,11,1], -"classfmt_1_1v5_1_1basic__parse__context.html#a2f71955aa8532331a4d3528c086df716":[1,0,0,0,11,2], -"classfmt_1_1v5_1_1basic__parse__context.html#a393517a95a1aaf1b55ea787ecac5ea64":[1,0,0,0,11,8], -"classfmt_1_1v5_1_1basic__parse__context.html#a4ae214f4e777ec14ab4f7de4b312d2a6":[1,0,0,0,11,3], -"classfmt_1_1v5_1_1basic__parse__context.html#a5577df5c96ceeefa7f8ea06cd73a4e51":[1,0,0,0,11,7], -"classfmt_1_1v5_1_1basic__parse__context.html#a904ad0013ff0d1e633218bcf1810592d":[1,0,0,0,11,9], -"classfmt_1_1v5_1_1basic__parse__context.html#aa5e6f5d821319449d7569d5670b15c8e":[1,0,0,0,11,10], -"classfmt_1_1v5_1_1basic__parse__context.html#aeb20a1952bd3f6186c0157341326315a":[1,0,0,0,11,6], -"classfmt_1_1v5_1_1basic__parse__context.html#afd4905f512940ea15cb2e1fccc1e7473":[1,0,0,0,11,0], -"classfmt_1_1v5_1_1basic__printf__context.html":[1,0,0,0,12], -"classfmt_1_1v5_1_1basic__printf__context.html#a410acf2a67e657f4262e299e8edb6573":[1,0,0,0,12,1], -"classfmt_1_1v5_1_1basic__printf__context.html#a782e3cda3eec3c7792fddfbbedb0b7d7":[1,0,0,0,12,6], -"classfmt_1_1v5_1_1basic__printf__context.html#a800016bfb5e3a94a379fdd68a8d5d4ca":[1,0,0,0,12,2], -"classfmt_1_1v5_1_1basic__printf__context.html#aa8255081d2498a11c4d0db766907709c":[1,0,0,0,12,5], -"classfmt_1_1v5_1_1basic__printf__context.html#ae6257fa7c87f16830f7bbb9263991ef8":[1,0,0,0,12,3], -"classfmt_1_1v5_1_1basic__printf__context.html#af8fabb5ddc209d15e78ee3136b443f85":[1,0,0,0,12,4], -"classfmt_1_1v5_1_1basic__string__view.html":[1,0,0,0,14], -"classfmt_1_1v5_1_1basic__string__view.html#a0e53f2258bbcde6cc8426b0a0755029b":[1,0,0,0,14,13], -"classfmt_1_1v5_1_1basic__string__view.html#a13611d21d36e30193ebaf50463cbe75e":[1,0,0,0,14,17], -"classfmt_1_1v5_1_1basic__string__view.html#a4e8a2b1d8a6a749c17b43a8f4dbc09c1":[1,0,0,0,14,7], -"classfmt_1_1v5_1_1basic__string__view.html#a517e9e8fc58c52c7816fa647d5e69f9f":[1,0,0,0,14,8], -"classfmt_1_1v5_1_1basic__string__view.html#a5ceb2a1bfa175c69d7bfda735e901d73":[1,0,0,0,14,12], -"classfmt_1_1v5_1_1basic__string__view.html#a6fed916b8264a1f8c2d69359062b00aa":[1,0,0,0,14,10], -"classfmt_1_1v5_1_1basic__string__view.html#a78b8913fe704e33269d9baa6f310b9b8":[1,0,0,0,14,16], -"classfmt_1_1v5_1_1basic__string__view.html#a796a7a1089f143f40585a5604983bb68":[1,0,0,0,14,5], -"classfmt_1_1v5_1_1basic__string__view.html#a7dd9c65338332c1e3beb611a7ab883e5":[1,0,0,0,14,0], -"classfmt_1_1v5_1_1basic__string__view.html#a905e99019eff225d448868d9470dac4c":[1,0,0,0,14,1], -"classfmt_1_1v5_1_1basic__string__view.html#a9a52d640307af79b979b7f29d18f8f34":[1,0,0,0,14,3], -"classfmt_1_1v5_1_1basic__string__view.html#a9b92d9c7a937c6945253fd8adfba7803":[1,0,0,0,14,14], -"classfmt_1_1v5_1_1basic__string__view.html#ab45c1b7cf97a9d4b7d6290ab374df761":[1,0,0,0,14,4], -"classfmt_1_1v5_1_1basic__string__view.html#abbcc283ebd35db4ae2d5365a0861a2e2":[1,0,0,0,14,15], -"classfmt_1_1v5_1_1basic__string__view.html#abd82d74b110d5d4f52e0282e4d11fc99":[1,0,0,0,14,11], -"classfmt_1_1v5_1_1basic__string__view.html#af700667b227e1aa54fa10e5536f0dd60":[1,0,0,0,14,2], -"classfmt_1_1v5_1_1basic__string__view.html#af73f0e919e28f3c38245937887268bc2":[1,0,0,0,14,6], -"classfmt_1_1v5_1_1basic__string__view.html#afa63ef5e96803f21d21cf1ac0dfee391":[1,0,0,0,14,9], -"classfmt_1_1v5_1_1basic__writer.html":[1,0,0,0,15], -"classfmt_1_1v5_1_1basic__writer.html#a01693cb5eb4849919d29bd0889c9adf3":[1,0,0,0,15,12], -"classfmt_1_1v5_1_1basic__writer.html#a0bad6b95b096ed85f9db16c66c72bec9":[1,0,0,0,15,3], -"classfmt_1_1v5_1_1basic__writer.html#a12c04f5659906e93c2418a4eb6358bd2":[1,0,0,0,15,20], -"classfmt_1_1v5_1_1basic__writer.html#a22d41003c543a4de0c8052ee8f50bd92":[1,0,0,0,15,21], -"classfmt_1_1v5_1_1basic__writer.html#a2b226f9d7fca502facb0b9c0f6eb7919":[1,0,0,0,15,6], -"classfmt_1_1v5_1_1basic__writer.html#a2bd6f8f5af3c564886cfde5b15fc8f69":[1,0,0,0,15,10], -"classfmt_1_1v5_1_1basic__writer.html#a2e73d42a69cbb1a1e3135f5b38c33771":[1,0,0,0,15,11], -"classfmt_1_1v5_1_1basic__writer.html#a3f7028a8ecb2404fe0ab2e53f1ac482b":[1,0,0,0,15,1], -"classfmt_1_1v5_1_1basic__writer.html#a46caff7956407a227b4b553312f695ed":[1,0,0,0,15,14], -"classfmt_1_1v5_1_1basic__writer.html#a4e295df91ec1c12fd786d17e905442de":[1,0,0,0,15,17], -"classfmt_1_1v5_1_1basic__writer.html#a531918e4cf5995d2c14785b3eb1f9699":[1,0,0,0,15,4], -"classfmt_1_1v5_1_1basic__writer.html#a6207aead371c0ab533bc6c012caa7fec":[1,0,0,0,15,5], -"classfmt_1_1v5_1_1basic__writer.html#a968d531596194200346fda2e3211e3c8":[1,0,0,0,15,9], -"classfmt_1_1v5_1_1basic__writer.html#aa9a5f9e678e19930ede5a1dfad1ebe93":[1,0,0,0,15,7], -"classfmt_1_1v5_1_1basic__writer.html#aad7bbd01a1c5e145908071abf1227283":[1,0,0,0,15,15], -"classfmt_1_1v5_1_1basic__writer.html#ac77932fff8ec776f47d747a5393239b1":[1,0,0,0,15,18], -"classfmt_1_1v5_1_1basic__writer.html#ad0ee54da443751f74466a16b033ab9f6":[1,0,0,0,15,0], -"classfmt_1_1v5_1_1basic__writer.html#ad9b699ac00358e34697007c98a9fd063":[1,0,0,0,15,16], -"classfmt_1_1v5_1_1basic__writer.html#aeb6a206671e6d416a4696343e940ea33":[1,0,0,0,15,2], -"classfmt_1_1v5_1_1basic__writer.html#af29d4c9940dfcbd4181291395855b665":[1,0,0,0,15,13], -"classfmt_1_1v5_1_1basic__writer.html#af308c665441c50a867bec1c17cd8b423":[1,0,0,0,15,19], -"classfmt_1_1v5_1_1basic__writer.html#affe641b73605f9fe7f05c63f375fa8ae":[1,0,0,0,15,8], -"classfmt_1_1v5_1_1buffered__file.html":[1,0,0,0,17], -"classfmt_1_1v5_1_1buffered__file.html#a14ef73faa397ecb015418d1c3635e6f5":[1,0,0,0,17,5], -"classfmt_1_1v5_1_1buffered__file.html#a52e4076f24c9a64080ef4828329c1cad":[1,0,0,0,17,8], -"classfmt_1_1v5_1_1buffered__file.html#a686a90482e62dd1618201a3c79f9aae6":[1,0,0,0,17,10], -"classfmt_1_1v5_1_1buffered__file.html#a693d766ec234eaffb9459cc4ba16c5b6":[1,0,0,0,17,1], -"classfmt_1_1v5_1_1buffered__file.html#a74bd895df8fc7612ed57b267272d0d6e":[1,0,0,0,17,7], -"classfmt_1_1v5_1_1buffered__file.html#a884ec99b9150cee0ead3c62613befe04":[1,0,0,0,17,4], -"classfmt_1_1v5_1_1buffered__file.html#a89aed138335acd38e0dc1a1618b6b52c":[1,0,0,0,17,2], -"classfmt_1_1v5_1_1buffered__file.html#a9acebcee0bfc79cd3b49b12c2db0b2ee":[1,0,0,0,17,3], -"classfmt_1_1v5_1_1buffered__file.html#abbd16863df6a504cceb14db716ac0573":[1,0,0,0,17,6], -"classfmt_1_1v5_1_1buffered__file.html#abeb561e30fd613877c25ebf031eb1104":[1,0,0,0,17,0], -"classfmt_1_1v5_1_1buffered__file.html#ae90c624636ac4919eb5c8a38e6393315":[1,0,0,0,17,9], -"classfmt_1_1v5_1_1dynamic__formatter.html":[1,0,0,0,23], -"classfmt_1_1v5_1_1dynamic__formatter.html#a541d33c040cb6d2ff781157fad6d09b1":[1,0,0,0,23,1], -"classfmt_1_1v5_1_1dynamic__formatter.html#a67cf8828c8811150790a11eb04e138e4":[1,0,0,0,23,0], -"classfmt_1_1v5_1_1error__code.html":[1,0,0,0,24], -"classfmt_1_1v5_1_1error__code.html#a71a509534cb2d3a5705c6812293dd7f8":[1,0,0,0,24,0], -"classfmt_1_1v5_1_1error__code.html#acc9ac3c2c0c39549a085fa32d8ca2408":[1,0,0,0,24,1], -"classfmt_1_1v5_1_1file.html":[1,0,0,0,25], -"classfmt_1_1v5_1_1file.html#a19a7f8f226393c0ccd49e2a9c9480e8e":[1,0,0,0,25,3], -"classfmt_1_1v5_1_1file.html#a37037657920e57b50756d59259cff494":[1,0,0,0,25,15], -"classfmt_1_1v5_1_1file.html#a639739325a65165ec4fbb1a74b5f24df":[1,0,0,0,25,11], -"classfmt_1_1v5_1_1file.html#a643bffe083c4a257b8752590c70a0539":[1,0,0,0,25,16], -"classfmt_1_1v5_1_1file.html#a75a2feb65318ccbbb04e36fc1eecf74a":[1,0,0,0,25,8], -"classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1a32af7e818a81bb44c1c34bf9afd64d68":[1,0,0,0,25,1], -"classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1a51c67cb8c6aa3d8dbdfdf87561746169":[1,0,0,0,25,0], -"classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1afc29ebeb23bb8aac58bc3911f67a7e18":[1,0,0,0,25,2], -"classfmt_1_1v5_1_1file.html#a7b0a3efd73b28117b8ef62ad5981cf73":[1,0,0,0,25,6], -"classfmt_1_1v5_1_1file.html#a7e1ec236bdb4eebe9c1dc948e811fbfd":[1,0,0,0,25,5], -"classfmt_1_1v5_1_1file.html#a931c02ed40bfffd9e0205b35f28fbbb8":[1,0,0,0,25,12], -"classfmt_1_1v5_1_1file.html#a9585f4793f5036e19dafabd782858f9d":[1,0,0,0,25,10], -"classfmt_1_1v5_1_1file.html#ab3959bb606e2fd0349dcc3d61c12620d":[1,0,0,0,25,7], -"classfmt_1_1v5_1_1file.html#ab5d469c88f8a9e460ca0aaa9fa1d05f4":[1,0,0,0,25,9], -"classfmt_1_1v5_1_1file.html#ac2eeefd58cc3b43a0b0bff4670af2f6f":[1,0,0,0,25,17], -"classfmt_1_1v5_1_1file.html#ad3bb617d365c213a074264b39a2e1f46":[1,0,0,0,25,13], -"classfmt_1_1v5_1_1file.html#adec2f1ea78f1707216c7de02232d273e":[1,0,0,0,25,14], -"classfmt_1_1v5_1_1file.html#af0e0090d1b35c42a52ed73086541660d":[1,0,0,0,25,4], -"classfmt_1_1v5_1_1format__arg__store.html":[1,0,0,0,27], -"classfmt_1_1v5_1_1format__arg__store.html#a714a5df2ffda09f2133e4a0ca2b2f267":[1,0,0,0,27,0], -"classfmt_1_1v5_1_1format__arg__store.html#aa3c5724940de9479c8a707ed802c792b":[1,0,0,0,27,2], -"classfmt_1_1v5_1_1format__arg__store.html#ab8e9e33cc7b78829001a86ef6110ebb6":[1,0,0,0,27,1], -"classfmt_1_1v5_1_1format__error.html":[1,0,0,0,31], -"classfmt_1_1v5_1_1format__error.html#a70224f7e2be8328affe003bbd7224b70":[1,0,0,0,31,1], -"classfmt_1_1v5_1_1format__error.html#acbee2a23971909898b5cf189d68c38de":[1,0,0,0,31,0], -"classfmt_1_1v5_1_1format__int.html":[1,0,0,0,33], -"classfmt_1_1v5_1_1format__int.html#a0266f0b79afac987c1cbdf41bc1a5413":[1,0,0,0,33,9], -"classfmt_1_1v5_1_1format__int.html#a4081316c3a2859d74be8aec0c614cfa4":[1,0,0,0,33,6], -"classfmt_1_1v5_1_1format__int.html#a4c07c24b79fc7d8510b29598e7cc7c51":[1,0,0,0,33,2], -"classfmt_1_1v5_1_1format__int.html#a818044e240e597e65a6c33cb547e4397":[1,0,0,0,33,4], -"classfmt_1_1v5_1_1format__int.html#a8b3e12db766aecc5de0a75285bbb2311":[1,0,0,0,33,3], -"classfmt_1_1v5_1_1format__int.html#abe5d90acec7245e6cd0c5d49b4e57f3e":[1,0,0,0,33,8], -"classfmt_1_1v5_1_1format__int.html#acd6e25e24489eab4c848ac23408bc688":[1,0,0,0,33,0], -"classfmt_1_1v5_1_1format__int.html#aec2635e33daf103e747a4f86bc050485":[1,0,0,0,33,5], -"classfmt_1_1v5_1_1format__int.html#af1efdbc1bbd43e22cf9690e50c5e1a08":[1,0,0,0,33,1] +"_fast_c_r_c_8h.html":[3,0,0,0,1,0,0], +"_fast_c_r_c_8h_source.html":[3,0,0,0,1,0,0], +"android__sink_8h.html":[3,0,0,0,1,1,0,2,0], +"android__sink_8h.html#a0811adb1075181f73abc87c624fbff7e":[3,0,0,0,1,1,0,2,0,4], +"android__sink_8h.html#a38acf93862031f1db0e4bdcf8e8b18f3":[3,0,0,0,1,1,0,2,0,3], +"android__sink_8h.html#a8e65ae8a75f7a37ede8942a4311cee5e":[3,0,0,0,1,1,0,2,0,1], +"android__sink_8h.html#aab5b508d51de238919a570cf3ca6d3db":[3,0,0,0,1,1,0,2,0,5], +"android__sink_8h.html#afa3ee88e3e87a4908cd80f8ccd4fdd3e":[3,0,0,0,1,1,0,2,0,2], +"android__sink_8h_source.html":[3,0,0,0,1,1,0,2,0], +"annotated.html":[2,0], +"ansicolor__sink_8h.html":[3,0,0,0,1,1,0,2,1], +"ansicolor__sink_8h.html#a10475192b7db414c386fbccb7401d852":[3,0,0,0,1,1,0,2,1,3], +"ansicolor__sink_8h.html#a3d8d6c5070124583420003b8c00ec441":[3,0,0,0,1,1,0,2,1,2], +"ansicolor__sink_8h.html#aa12104ff6999c8908f687c3eb87d827e":[3,0,0,0,1,1,0,2,1,1], +"ansicolor__sink_8h.html#aa30d2f8d27e36f73043723a42199fd7b":[3,0,0,0,1,1,0,2,1,4], +"ansicolor__sink_8h_source.html":[3,0,0,0,1,1,0,2,1], +"async_8h.html":[3,0,0,0,1,1,0,3], +"async_8h.html#a050e412794a5af8916ef36e4ed100c25":[3,0,0,0,1,1,0,3,7], +"async_8h.html#a17a4d95759b4076827905fd8f6b10d36":[3,0,0,0,1,1,0,3,5], +"async_8h.html#a220f834b057b45ef730c435bcc60b0aa":[3,0,0,0,1,1,0,3,3], +"async_8h.html#a6676a1ffb5ea174a2392ab0317bbcff2":[3,0,0,0,1,1,0,3,6], +"async_8h.html#a796f2e548cff4f12a5b2a52b07d3128b":[3,0,0,0,1,1,0,3,2], +"async_8h.html#a962b94a80258f9a202d590888349577c":[3,0,0,0,1,1,0,3,1], +"async_8h.html#ac5db26987120ac7b1ba0fbefe551ee52":[3,0,0,0,1,1,0,3,4], +"async_8h_source.html":[3,0,0,0,1,1,0,3], +"async__logger_8h.html":[3,0,0,0,1,1,0,4], +"async__logger_8h.html#a42e109759a11c9514d3f6313a7709852":[3,0,0,0,1,1,0,4,1], +"async__logger_8h.html#a42e109759a11c9514d3f6313a7709852a14511f2f5564650d129ca7cabc333278":[3,0,0,0,1,1,0,4,1,0], +"async__logger_8h.html#a42e109759a11c9514d3f6313a7709852a6d09cc54ae10145444aa2f43fe46d9f2":[3,0,0,0,1,1,0,4,1,1], +"async__logger_8h_source.html":[3,0,0,0,1,1,0,4], +"async__logger__impl_8h.html":[3,0,0,0,1,1,0,0,0], +"async__logger__impl_8h_source.html":[3,0,0,0,1,1,0,0,0], +"base__sink_8h.html":[3,0,0,0,1,1,0,2,2], +"base__sink_8h_source.html":[3,0,0,0,1,1,0,2,2], +"basic__file__sink_8h.html":[3,0,0,0,1,1,0,2,3], +"basic__file__sink_8h.html#a3c2170781ef0f706f8cea55f8d6b0609":[3,0,0,0,1,1,0,2,3,1], +"basic__file__sink_8h.html#ab6d38313481cd7fedfb8aeb68c2c61d1":[3,0,0,0,1,1,0,2,3,2], +"basic__file__sink_8h.html#abc9cd0646191cc0b295b6e50367b22b7":[3,0,0,0,1,1,0,2,3,4], +"basic__file__sink_8h.html#abd73a6177edaccb77048bf47e3f8ad23":[3,0,0,0,1,1,0,2,3,3], +"basic__file__sink_8h_source.html":[3,0,0,0,1,1,0,2,3], +"bin__to__hex_8h.html":[3,0,0,0,1,1,0,1,1], +"bin__to__hex_8h.html#a3730108d5b1a43b30f8ddf32404b9d25":[3,0,0,0,1,1,0,1,1,3], +"bin__to__hex_8h.html#acd3f4323bb627945b4cecbbbc62770ef":[3,0,0,0,1,1,0,1,1,2], +"bin__to__hex_8h_source.html":[3,0,0,0,1,1,0,1,1], +"chrono_8h.html":[3,0,0,0,1,1,0,1,0,0], +"chrono_8h.html#a35695a1a18217a00cffbbe83469b7cf8":[3,0,0,0,1,1,0,1,0,0,21], +"chrono_8h.html#a3bd0842649988da27458042eaf3531c7":[3,0,0,0,1,1,0,1,0,0,17], +"chrono_8h.html#a43ae61533d48f504ef7404c50fb7bf81":[3,0,0,0,1,1,0,1,0,0,11], +"chrono_8h.html#a45389b9f9549146c634dc6a20e9c5aa0":[3,0,0,0,1,1,0,1,0,0,16], +"chrono_8h.html#a58440beb03fea444297f8ca7834fed53":[3,0,0,0,1,1,0,1,0,0,19], +"chrono_8h.html#a5f9a2b5f27aa0b06a474ab13b2a32043":[3,0,0,0,1,1,0,1,0,0,22], +"chrono_8h.html#a6aad09a35158e998c2e5ece0ea0be67c":[3,0,0,0,1,1,0,1,0,0,6], +"chrono_8h.html#a6b61b71d26bceae8dbbde94f77974ed0":[3,0,0,0,1,1,0,1,0,0,7], +"chrono_8h.html#a6d437609eef4ec03ef1357ef2c8e6de6":[3,0,0,0,1,1,0,1,0,0,10], +"chrono_8h.html#a726baeb0d00c18038ccda7f1adc7a939":[3,0,0,0,1,1,0,1,0,0,18], +"chrono_8h.html#a8217980ba3189c7d8c3ce93f7d8e4c74":[3,0,0,0,1,1,0,1,0,0,3], +"chrono_8h.html#a8217980ba3189c7d8c3ce93f7d8e4c74aa04fe4e390a7c7d5d4583f85d24e164d":[3,0,0,0,1,1,0,1,0,0,3,1], +"chrono_8h.html#a8217980ba3189c7d8c3ce93f7d8e4c74ac00f0c4675b91fb8b918e4079a0b1bac":[3,0,0,0,1,1,0,1,0,0,3,0], +"chrono_8h.html#a8829616880e52dee640ee67ea6228fe6":[3,0,0,0,1,1,0,1,0,0,12], +"chrono_8h.html#a8fcc6765128d435aee70d2eaf12b14b2":[3,0,0,0,1,1,0,1,0,0,8], +"chrono_8h.html#aa054e910fa69e26e5762f0dd0af4bf42":[3,0,0,0,1,1,0,1,0,0,15], +"chrono_8h.html#aa86ebbcdd9d02fcda024dc30c3025ee4":[3,0,0,0,1,1,0,1,0,0,14], +"chrono_8h.html#ac024f2a2abe824964c2871057d2df7a0":[3,0,0,0,1,1,0,1,0,0,4], +"chrono_8h.html#ac8d52a6562cf462d46688fcfb29efc21":[3,0,0,0,1,1,0,1,0,0,9], +"chrono_8h.html#aca0a623b6a12f89c1ba373a518aacac8":[3,0,0,0,1,1,0,1,0,0,23], +"chrono_8h.html#aca35626c733dd1ba38eea2a3d680f4bb":[3,0,0,0,1,1,0,1,0,0,20], +"chrono_8h.html#ad8194ac1ba523a7a5014c9cb49f3bf8d":[3,0,0,0,1,1,0,1,0,0,24], +"chrono_8h.html#ae02edf3c77bf0dcce95fa440785c10e8":[3,0,0,0,1,1,0,1,0,0,5], +"chrono_8h.html#ae2784f11c8e123f59fb773b04717d5fb":[3,0,0,0,1,1,0,1,0,0,13], +"chrono_8h.html#aeaa4eca77afc74c176ac1a1b941105f7":[3,0,0,0,1,1,0,1,0,0,25], +"chrono_8h_source.html":[3,0,0,0,1,1,0,1,0,0], +"circular__q_8h.html":[3,0,0,0,1,1,0,0,1], +"circular__q_8h_source.html":[3,0,0,0,1,1,0,0,1], +"class_fast_c_r_c16.html":[2,0,12], +"class_fast_c_r_c16.html#a5b5fba9414abaf0eadca4c268828884b":[2,0,12,0], +"class_fast_c_r_c16.html#aa127f7c21a5ab74c0c30619ade0181b4":[2,0,12,1], +"class_fast_c_r_c32.html":[2,0,13], +"class_fast_c_r_c32.html#ade987c2d06975707d94aa2eaa203a480":[2,0,13,1], +"class_fast_c_r_c32.html#ae139e3fbeeb7adec610d50d638607c7d":[2,0,13,0], +"classes.html":[2,1], +"classfmt_1_1v5_1_1arg__formatter.html":[2,0,0,0,2], +"classfmt_1_1v5_1_1arg__formatter.html#a0925c1315a81b793b5e020e496c9234c":[2,0,0,0,2,3], +"classfmt_1_1v5_1_1arg__formatter.html#a093e3203258d2dfa3fa0282cb41c6b4d":[2,0,0,0,2,5], +"classfmt_1_1v5_1_1arg__formatter.html#a332fb38fd91d73717f0f3e0b2b09d3b7":[2,0,0,0,2,2], +"classfmt_1_1v5_1_1arg__formatter.html#adcd84c55fb1ae473917660743d000153":[2,0,0,0,2,4], +"classfmt_1_1v5_1_1arg__formatter.html#ae170841fcffcd93c9d342f7898f9aef9":[2,0,0,0,2,1], +"classfmt_1_1v5_1_1arg__formatter.html#aeda72496f8e7ff87432a167689a07b60":[2,0,0,0,2,0], +"classfmt_1_1v5_1_1back__insert__range.html":[2,0,0,0,4], +"classfmt_1_1v5_1_1back__insert__range.html#a7ac1989e9b9da2e27d42113a75ff8f33":[2,0,0,0,4,1], +"classfmt_1_1v5_1_1back__insert__range.html#a7dbc83149304d1f6fff9d3ba81cc4e23":[2,0,0,0,4,0], +"classfmt_1_1v5_1_1back__insert__range.html#abc01c2e16db484f994b86a47b133acab":[2,0,0,0,4,2], +"classfmt_1_1v5_1_1basic__cstring__view.html":[2,0,0,0,5], +"classfmt_1_1v5_1_1basic__cstring__view.html#a3fd9fc51eb41ceeae397a70712a68af5":[2,0,0,0,5,2], +"classfmt_1_1v5_1_1basic__cstring__view.html#a56c61688f005a3f7495d45b443d78d1c":[2,0,0,0,5,1], +"classfmt_1_1v5_1_1basic__cstring__view.html#ad21a04a526524ac3477761399a792fda":[2,0,0,0,5,0], +"classfmt_1_1v5_1_1basic__format__arg.html":[2,0,0,0,6], +"classfmt_1_1v5_1_1basic__format__arg.html#a36ff9952212731669effc63354c5b179":[2,0,0,0,6,2], +"classfmt_1_1v5_1_1basic__format__arg.html#a7974100f026be256213827458684be38":[2,0,0,0,6,7], +"classfmt_1_1v5_1_1basic__format__arg.html#a7d2678b3c4612757b6f1dcea4d284570":[2,0,0,0,6,8], +"classfmt_1_1v5_1_1basic__format__arg.html#a805469bff2286c05dcc69e9e7f10b3b2":[2,0,0,0,6,3], +"classfmt_1_1v5_1_1basic__format__arg.html#aa66a8b06ab57c780dea7b1759da404a3":[2,0,0,0,6,5], +"classfmt_1_1v5_1_1basic__format__arg.html#ab8e9e33cc7b78829001a86ef6110ebb6":[2,0,0,0,6,6], +"classfmt_1_1v5_1_1basic__format__arg.html#ab92c5293847324e1383d7bab6c7b9f35":[2,0,0,0,6,1], +"classfmt_1_1v5_1_1basic__format__arg.html#ac4eb1aac92345fa137b08888a2839313":[2,0,0,0,6,4], +"classfmt_1_1v5_1_1basic__format__arg.html#aeab7b1649adaa52475e1a72806a0b849":[2,0,0,0,6,9], +"classfmt_1_1v5_1_1basic__format__arg_1_1handle.html":[2,0,0,0,6,0], +"classfmt_1_1v5_1_1basic__format__arg_1_1handle.html#a2c29f6c7a5cc8ebb64f48aa3d4369e83":[2,0,0,0,6,0,0], +"classfmt_1_1v5_1_1basic__format__arg_1_1handle.html#ae4ed580bdb5b645e912e7f74a44e7043":[2,0,0,0,6,0,1], +"classfmt_1_1v5_1_1basic__format__args.html":[2,0,0,0,7], +"classfmt_1_1v5_1_1basic__format__args.html#a1625ea02e9400218dedfcabfcb924492":[2,0,0,0,7,1], +"classfmt_1_1v5_1_1basic__format__args.html#a324ac8280585ccbee69bcf0a75c3765a":[2,0,0,0,7,2], +"classfmt_1_1v5_1_1basic__format__args.html#a46d01e323ae8a2436a4ec4ed47d379b1":[2,0,0,0,7,4], +"classfmt_1_1v5_1_1basic__format__args.html#a7793770b464ca724fc86fcb199cd6d8b":[2,0,0,0,7,6], +"classfmt_1_1v5_1_1basic__format__args.html#a7974100f026be256213827458684be38":[2,0,0,0,7,7], +"classfmt_1_1v5_1_1basic__format__args.html#a7dd4ac1a1a0513a1b567d2c6251656a7":[2,0,0,0,7,9], +"classfmt_1_1v5_1_1basic__format__args.html#a9bc1ed80f61c5f8feaa1c3ead187f2e8":[2,0,0,0,7,5], +"classfmt_1_1v5_1_1basic__format__args.html#aae77a07c32a92e56243ff0a76f51eaff":[2,0,0,0,7,8], +"classfmt_1_1v5_1_1basic__format__args.html#abbaf332be8c119f7ed6b05e71ebde3c9":[2,0,0,0,7,3], +"classfmt_1_1v5_1_1basic__format__args.html#ae274e33ad24c361c93315f801d336b73":[2,0,0,0,7,0], +"classfmt_1_1v5_1_1basic__format__context.html":[2,0,0,0,8], +"classfmt_1_1v5_1_1basic__format__context.html#a08841c7d750e03983bad8bd6361f0a4c":[2,0,0,0,8,5], +"classfmt_1_1v5_1_1basic__format__context.html#aa88412259a118ed5ac97e9bd1cee92e3":[2,0,0,0,8,2], +"classfmt_1_1v5_1_1basic__format__context.html#aac5c87132bab71007a567bd1820f1a16":[2,0,0,0,8,1], +"classfmt_1_1v5_1_1basic__format__context.html#ac5b96279f3ca0db9c1879e7c33551985":[2,0,0,0,8,6], +"classfmt_1_1v5_1_1basic__format__context.html#adf22dc09de008340bf108c68281724f9":[2,0,0,0,8,3], +"classfmt_1_1v5_1_1basic__format__context.html#af38c9257418ad1abafccf1ca34d4bbb7":[2,0,0,0,8,4], +"classfmt_1_1v5_1_1basic__memory__buffer.html":[2,0,0,0,10], +"classfmt_1_1v5_1_1basic__memory__buffer.html#a04e7e682d636a65fa60fb0a5b78fa98d":[2,0,0,0,10,7], +"classfmt_1_1v5_1_1basic__memory__buffer.html#a094e634037328b140f061c7bec7f3887":[2,0,0,0,10,5], +"classfmt_1_1v5_1_1basic__memory__buffer.html#a137e3161cc2723cb0b0ec2561f879348":[2,0,0,0,10,0], +"classfmt_1_1v5_1_1basic__memory__buffer.html#a16dc183a56fba190395fdea7629f69ca":[2,0,0,0,10,3], +"classfmt_1_1v5_1_1basic__memory__buffer.html#a4a840dd1d757f57f9ceee5da7442a9d1":[2,0,0,0,10,4], +"classfmt_1_1v5_1_1basic__memory__buffer.html#ad1d2a73db09717e1222e62d8e0f64e27":[2,0,0,0,10,2], +"classfmt_1_1v5_1_1basic__memory__buffer.html#aecaa097e427d00d791de417e5ea9034c":[2,0,0,0,10,1], +"classfmt_1_1v5_1_1basic__memory__buffer.html#aeeb97ae704fbe2d83c32dd2adbfdff7d":[2,0,0,0,10,6], +"classfmt_1_1v5_1_1basic__parse__context.html":[2,0,0,0,11], +"classfmt_1_1v5_1_1basic__parse__context.html#a026a5f2c3de8569b7527c7570009ecc6":[2,0,0,0,11,4], +"classfmt_1_1v5_1_1basic__parse__context.html#a1b0beb2ee86041582086cffa5070d02b":[2,0,0,0,11,5], +"classfmt_1_1v5_1_1basic__parse__context.html#a2061e0733dc01aafbd2180742ce3e420":[2,0,0,0,11,1], +"classfmt_1_1v5_1_1basic__parse__context.html#a2f71955aa8532331a4d3528c086df716":[2,0,0,0,11,2], +"classfmt_1_1v5_1_1basic__parse__context.html#a393517a95a1aaf1b55ea787ecac5ea64":[2,0,0,0,11,8], +"classfmt_1_1v5_1_1basic__parse__context.html#a4ae214f4e777ec14ab4f7de4b312d2a6":[2,0,0,0,11,3], +"classfmt_1_1v5_1_1basic__parse__context.html#a5577df5c96ceeefa7f8ea06cd73a4e51":[2,0,0,0,11,7], +"classfmt_1_1v5_1_1basic__parse__context.html#a904ad0013ff0d1e633218bcf1810592d":[2,0,0,0,11,9], +"classfmt_1_1v5_1_1basic__parse__context.html#aa5e6f5d821319449d7569d5670b15c8e":[2,0,0,0,11,10], +"classfmt_1_1v5_1_1basic__parse__context.html#aeb20a1952bd3f6186c0157341326315a":[2,0,0,0,11,6], +"classfmt_1_1v5_1_1basic__parse__context.html#afd4905f512940ea15cb2e1fccc1e7473":[2,0,0,0,11,0], +"classfmt_1_1v5_1_1basic__printf__context.html":[2,0,0,0,12], +"classfmt_1_1v5_1_1basic__printf__context.html#a410acf2a67e657f4262e299e8edb6573":[2,0,0,0,12,1], +"classfmt_1_1v5_1_1basic__printf__context.html#a782e3cda3eec3c7792fddfbbedb0b7d7":[2,0,0,0,12,6], +"classfmt_1_1v5_1_1basic__printf__context.html#a800016bfb5e3a94a379fdd68a8d5d4ca":[2,0,0,0,12,2], +"classfmt_1_1v5_1_1basic__printf__context.html#aa8255081d2498a11c4d0db766907709c":[2,0,0,0,12,5], +"classfmt_1_1v5_1_1basic__printf__context.html#ae6257fa7c87f16830f7bbb9263991ef8":[2,0,0,0,12,3], +"classfmt_1_1v5_1_1basic__printf__context.html#af8fabb5ddc209d15e78ee3136b443f85":[2,0,0,0,12,4], +"classfmt_1_1v5_1_1basic__string__view.html":[2,0,0,0,14], +"classfmt_1_1v5_1_1basic__string__view.html#a0e53f2258bbcde6cc8426b0a0755029b":[2,0,0,0,14,13], +"classfmt_1_1v5_1_1basic__string__view.html#a13611d21d36e30193ebaf50463cbe75e":[2,0,0,0,14,17], +"classfmt_1_1v5_1_1basic__string__view.html#a4e8a2b1d8a6a749c17b43a8f4dbc09c1":[2,0,0,0,14,7], +"classfmt_1_1v5_1_1basic__string__view.html#a517e9e8fc58c52c7816fa647d5e69f9f":[2,0,0,0,14,8], +"classfmt_1_1v5_1_1basic__string__view.html#a5ceb2a1bfa175c69d7bfda735e901d73":[2,0,0,0,14,12], +"classfmt_1_1v5_1_1basic__string__view.html#a6fed916b8264a1f8c2d69359062b00aa":[2,0,0,0,14,10], +"classfmt_1_1v5_1_1basic__string__view.html#a78b8913fe704e33269d9baa6f310b9b8":[2,0,0,0,14,16], +"classfmt_1_1v5_1_1basic__string__view.html#a796a7a1089f143f40585a5604983bb68":[2,0,0,0,14,5], +"classfmt_1_1v5_1_1basic__string__view.html#a7dd9c65338332c1e3beb611a7ab883e5":[2,0,0,0,14,0], +"classfmt_1_1v5_1_1basic__string__view.html#a905e99019eff225d448868d9470dac4c":[2,0,0,0,14,1], +"classfmt_1_1v5_1_1basic__string__view.html#a9a52d640307af79b979b7f29d18f8f34":[2,0,0,0,14,3], +"classfmt_1_1v5_1_1basic__string__view.html#a9b92d9c7a937c6945253fd8adfba7803":[2,0,0,0,14,14], +"classfmt_1_1v5_1_1basic__string__view.html#ab45c1b7cf97a9d4b7d6290ab374df761":[2,0,0,0,14,4], +"classfmt_1_1v5_1_1basic__string__view.html#abbcc283ebd35db4ae2d5365a0861a2e2":[2,0,0,0,14,15], +"classfmt_1_1v5_1_1basic__string__view.html#abd82d74b110d5d4f52e0282e4d11fc99":[2,0,0,0,14,11], +"classfmt_1_1v5_1_1basic__string__view.html#af700667b227e1aa54fa10e5536f0dd60":[2,0,0,0,14,2], +"classfmt_1_1v5_1_1basic__string__view.html#af73f0e919e28f3c38245937887268bc2":[2,0,0,0,14,6], +"classfmt_1_1v5_1_1basic__string__view.html#afa63ef5e96803f21d21cf1ac0dfee391":[2,0,0,0,14,9], +"classfmt_1_1v5_1_1basic__writer.html":[2,0,0,0,15], +"classfmt_1_1v5_1_1basic__writer.html#a01693cb5eb4849919d29bd0889c9adf3":[2,0,0,0,15,12], +"classfmt_1_1v5_1_1basic__writer.html#a0bad6b95b096ed85f9db16c66c72bec9":[2,0,0,0,15,3], +"classfmt_1_1v5_1_1basic__writer.html#a12c04f5659906e93c2418a4eb6358bd2":[2,0,0,0,15,20], +"classfmt_1_1v5_1_1basic__writer.html#a22d41003c543a4de0c8052ee8f50bd92":[2,0,0,0,15,21], +"classfmt_1_1v5_1_1basic__writer.html#a2b226f9d7fca502facb0b9c0f6eb7919":[2,0,0,0,15,6], +"classfmt_1_1v5_1_1basic__writer.html#a2bd6f8f5af3c564886cfde5b15fc8f69":[2,0,0,0,15,10], +"classfmt_1_1v5_1_1basic__writer.html#a2e73d42a69cbb1a1e3135f5b38c33771":[2,0,0,0,15,11], +"classfmt_1_1v5_1_1basic__writer.html#a3f7028a8ecb2404fe0ab2e53f1ac482b":[2,0,0,0,15,1], +"classfmt_1_1v5_1_1basic__writer.html#a46caff7956407a227b4b553312f695ed":[2,0,0,0,15,14], +"classfmt_1_1v5_1_1basic__writer.html#a4e295df91ec1c12fd786d17e905442de":[2,0,0,0,15,17], +"classfmt_1_1v5_1_1basic__writer.html#a531918e4cf5995d2c14785b3eb1f9699":[2,0,0,0,15,4], +"classfmt_1_1v5_1_1basic__writer.html#a6207aead371c0ab533bc6c012caa7fec":[2,0,0,0,15,5], +"classfmt_1_1v5_1_1basic__writer.html#a968d531596194200346fda2e3211e3c8":[2,0,0,0,15,9], +"classfmt_1_1v5_1_1basic__writer.html#aa9a5f9e678e19930ede5a1dfad1ebe93":[2,0,0,0,15,7], +"classfmt_1_1v5_1_1basic__writer.html#aad7bbd01a1c5e145908071abf1227283":[2,0,0,0,15,15], +"classfmt_1_1v5_1_1basic__writer.html#ac77932fff8ec776f47d747a5393239b1":[2,0,0,0,15,18], +"classfmt_1_1v5_1_1basic__writer.html#ad0ee54da443751f74466a16b033ab9f6":[2,0,0,0,15,0], +"classfmt_1_1v5_1_1basic__writer.html#ad9b699ac00358e34697007c98a9fd063":[2,0,0,0,15,16], +"classfmt_1_1v5_1_1basic__writer.html#aeb6a206671e6d416a4696343e940ea33":[2,0,0,0,15,2], +"classfmt_1_1v5_1_1basic__writer.html#af29d4c9940dfcbd4181291395855b665":[2,0,0,0,15,13], +"classfmt_1_1v5_1_1basic__writer.html#af308c665441c50a867bec1c17cd8b423":[2,0,0,0,15,19], +"classfmt_1_1v5_1_1basic__writer.html#affe641b73605f9fe7f05c63f375fa8ae":[2,0,0,0,15,8], +"classfmt_1_1v5_1_1buffered__file.html":[2,0,0,0,17], +"classfmt_1_1v5_1_1buffered__file.html#a14ef73faa397ecb015418d1c3635e6f5":[2,0,0,0,17,5], +"classfmt_1_1v5_1_1buffered__file.html#a52e4076f24c9a64080ef4828329c1cad":[2,0,0,0,17,8], +"classfmt_1_1v5_1_1buffered__file.html#a686a90482e62dd1618201a3c79f9aae6":[2,0,0,0,17,10], +"classfmt_1_1v5_1_1buffered__file.html#a693d766ec234eaffb9459cc4ba16c5b6":[2,0,0,0,17,1], +"classfmt_1_1v5_1_1buffered__file.html#a74bd895df8fc7612ed57b267272d0d6e":[2,0,0,0,17,7], +"classfmt_1_1v5_1_1buffered__file.html#a884ec99b9150cee0ead3c62613befe04":[2,0,0,0,17,4], +"classfmt_1_1v5_1_1buffered__file.html#a89aed138335acd38e0dc1a1618b6b52c":[2,0,0,0,17,2], +"classfmt_1_1v5_1_1buffered__file.html#a9acebcee0bfc79cd3b49b12c2db0b2ee":[2,0,0,0,17,3], +"classfmt_1_1v5_1_1buffered__file.html#abbd16863df6a504cceb14db716ac0573":[2,0,0,0,17,6], +"classfmt_1_1v5_1_1buffered__file.html#abeb561e30fd613877c25ebf031eb1104":[2,0,0,0,17,0], +"classfmt_1_1v5_1_1buffered__file.html#ae90c624636ac4919eb5c8a38e6393315":[2,0,0,0,17,9], +"classfmt_1_1v5_1_1dynamic__formatter.html":[2,0,0,0,23], +"classfmt_1_1v5_1_1dynamic__formatter.html#a541d33c040cb6d2ff781157fad6d09b1":[2,0,0,0,23,1], +"classfmt_1_1v5_1_1dynamic__formatter.html#a67cf8828c8811150790a11eb04e138e4":[2,0,0,0,23,0], +"classfmt_1_1v5_1_1error__code.html":[2,0,0,0,24], +"classfmt_1_1v5_1_1error__code.html#a71a509534cb2d3a5705c6812293dd7f8":[2,0,0,0,24,0], +"classfmt_1_1v5_1_1error__code.html#acc9ac3c2c0c39549a085fa32d8ca2408":[2,0,0,0,24,1], +"classfmt_1_1v5_1_1file.html":[2,0,0,0,25], +"classfmt_1_1v5_1_1file.html#a19a7f8f226393c0ccd49e2a9c9480e8e":[2,0,0,0,25,3], +"classfmt_1_1v5_1_1file.html#a37037657920e57b50756d59259cff494":[2,0,0,0,25,15], +"classfmt_1_1v5_1_1file.html#a639739325a65165ec4fbb1a74b5f24df":[2,0,0,0,25,11], +"classfmt_1_1v5_1_1file.html#a643bffe083c4a257b8752590c70a0539":[2,0,0,0,25,16], +"classfmt_1_1v5_1_1file.html#a75a2feb65318ccbbb04e36fc1eecf74a":[2,0,0,0,25,8], +"classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1a32af7e818a81bb44c1c34bf9afd64d68":[2,0,0,0,25,1], +"classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1a51c67cb8c6aa3d8dbdfdf87561746169":[2,0,0,0,25,0], +"classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1afc29ebeb23bb8aac58bc3911f67a7e18":[2,0,0,0,25,2], +"classfmt_1_1v5_1_1file.html#a7b0a3efd73b28117b8ef62ad5981cf73":[2,0,0,0,25,6], +"classfmt_1_1v5_1_1file.html#a7e1ec236bdb4eebe9c1dc948e811fbfd":[2,0,0,0,25,5], +"classfmt_1_1v5_1_1file.html#a931c02ed40bfffd9e0205b35f28fbbb8":[2,0,0,0,25,12], +"classfmt_1_1v5_1_1file.html#a9585f4793f5036e19dafabd782858f9d":[2,0,0,0,25,10], +"classfmt_1_1v5_1_1file.html#ab3959bb606e2fd0349dcc3d61c12620d":[2,0,0,0,25,7], +"classfmt_1_1v5_1_1file.html#ab5d469c88f8a9e460ca0aaa9fa1d05f4":[2,0,0,0,25,9], +"classfmt_1_1v5_1_1file.html#ac2eeefd58cc3b43a0b0bff4670af2f6f":[2,0,0,0,25,17], +"classfmt_1_1v5_1_1file.html#ad3bb617d365c213a074264b39a2e1f46":[2,0,0,0,25,13], +"classfmt_1_1v5_1_1file.html#adec2f1ea78f1707216c7de02232d273e":[2,0,0,0,25,14], +"classfmt_1_1v5_1_1file.html#af0e0090d1b35c42a52ed73086541660d":[2,0,0,0,25,4], +"classfmt_1_1v5_1_1format__arg__store.html":[2,0,0,0,27], +"classfmt_1_1v5_1_1format__arg__store.html#a714a5df2ffda09f2133e4a0ca2b2f267":[2,0,0,0,27,0], +"classfmt_1_1v5_1_1format__arg__store.html#aa3c5724940de9479c8a707ed802c792b":[2,0,0,0,27,2], +"classfmt_1_1v5_1_1format__arg__store.html#ab8e9e33cc7b78829001a86ef6110ebb6":[2,0,0,0,27,1], +"classfmt_1_1v5_1_1format__error.html":[2,0,0,0,31], +"classfmt_1_1v5_1_1format__error.html#a70224f7e2be8328affe003bbd7224b70":[2,0,0,0,31,1], +"classfmt_1_1v5_1_1format__error.html#acbee2a23971909898b5cf189d68c38de":[2,0,0,0,31,0], +"classfmt_1_1v5_1_1format__int.html":[2,0,0,0,33], +"classfmt_1_1v5_1_1format__int.html#a0266f0b79afac987c1cbdf41bc1a5413":[2,0,0,0,33,9], +"classfmt_1_1v5_1_1format__int.html#a4081316c3a2859d74be8aec0c614cfa4":[2,0,0,0,33,6], +"classfmt_1_1v5_1_1format__int.html#a4c07c24b79fc7d8510b29598e7cc7c51":[2,0,0,0,33,2], +"classfmt_1_1v5_1_1format__int.html#a818044e240e597e65a6c33cb547e4397":[2,0,0,0,33,4], +"classfmt_1_1v5_1_1format__int.html#a8b3e12db766aecc5de0a75285bbb2311":[2,0,0,0,33,3], +"classfmt_1_1v5_1_1format__int.html#abe5d90acec7245e6cd0c5d49b4e57f3e":[2,0,0,0,33,8], +"classfmt_1_1v5_1_1format__int.html#acd6e25e24489eab4c848ac23408bc688":[2,0,0,0,33,0], +"classfmt_1_1v5_1_1format__int.html#aec2635e33daf103e747a4f86bc050485":[2,0,0,0,33,5], +"classfmt_1_1v5_1_1format__int.html#af1efdbc1bbd43e22cf9690e50c5e1a08":[2,0,0,0,33,1] }; diff --git a/docs/navtreeindex1.js b/docs/navtreeindex1.js index 3c4363e..2542077 100644 --- a/docs/navtreeindex1.js +++ b/docs/navtreeindex1.js @@ -1,253 +1,253 @@ var NAVTREEINDEX1 = { -"classfmt_1_1v5_1_1format__int.html#afde6e35fd703a48b346c0dd969bd6b1c":[1,0,0,0,33,7], -"classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html":[1,0,0,0,0,0], -"classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a0bd627a0529dc333328af15cbd2d7f77":[1,0,0,0,0,0,0], -"classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a2b67cdb6e9828877661e6fd9348206f3":[1,0,0,0,0,0,3], -"classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a5f8e41561ce9cdf40e12fcff6431e4b1a2766626dccbf822fd55f5ab488d11932":[1,0,0,0,0,0,1], -"classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#abf5e4ae8e94f8574fcd68d2f049df8d2":[1,0,0,0,0,0,2], -"classfmt_1_1v5_1_1internal_1_1arg__converter.html":[1,0,0,0,0,2], -"classfmt_1_1v5_1_1internal_1_1arg__converter.html#a8405b74eeb4825deead78fd5e508b4ed":[1,0,0,0,0,2,3], -"classfmt_1_1v5_1_1internal_1_1arg__converter.html#a84121ff1b1f0533ad51bff04bf0eb77b":[1,0,0,0,0,2,2], -"classfmt_1_1v5_1_1internal_1_1arg__converter.html#ab0794cf47439d7e560916c9b4d565320":[1,0,0,0,0,2,1], -"classfmt_1_1v5_1_1internal_1_1arg__converter.html#aef40801d8966d8da086dd0507a0e88b3":[1,0,0,0,0,2,0], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html":[1,0,0,0,0,3], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a05e90e22d2222c1c458d625f8559599a":[1,0,0,0,0,3,6], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a065412840bd7bab950a7f4df38fbc94b":[1,0,0,0,0,3,2], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a0fe712b3073fdad76e865f681a20a3cb":[1,0,0,0,0,3,15], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a1f09a08ddcb054ae0d7dec1e8183ec9a":[1,0,0,0,0,3,4], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a43e1b1fba0aa288fd2b33c85eaad5180":[1,0,0,0,0,3,16], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a4c6d77344d1e2c8327965b544adb03fb":[1,0,0,0,0,3,7], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a59b215cea8bf6e89883b58c47d4f0d94":[1,0,0,0,0,3,9], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a793d82c248d310c8b1bdf06b00a9bdf8":[1,0,0,0,0,3,10], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a7e8848d8bfb01b809c74e65788a197ca":[1,0,0,0,0,3,14], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a8890ae003e8b00eed900cd18d216cf48":[1,0,0,0,0,3,11], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a8ae25aadcb11be0f632537d24bc3ba37":[1,0,0,0,0,3,5], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a96fbb5e2e9b9f98517f162b87b6bc738":[1,0,0,0,0,3,3], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#ab2e59146a8b73543a67737f28d7eb176":[1,0,0,0,0,3,12], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#abdcd50b6b81f5f0071482f01b4f19945":[1,0,0,0,0,3,13], -"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#ae20e743a85c240feefa62a82cb81d836":[1,0,0,0,0,3,8], -"classfmt_1_1v5_1_1internal_1_1arg__map.html":[1,0,0,0,0,4], -"classfmt_1_1v5_1_1internal_1_1arg__map.html#a04351a6b015c6ed8822951f332162a7f":[1,0,0,0,0,4,3], -"classfmt_1_1v5_1_1internal_1_1arg__map.html#a31d7e9121428e608bbb580cf53ae85de":[1,0,0,0,0,4,1], -"classfmt_1_1v5_1_1internal_1_1arg__map.html#a88a37695bca579d00ebc51586639b592":[1,0,0,0,0,4,0], -"classfmt_1_1v5_1_1internal_1_1arg__map.html#af6c96f7f7daeece4fa5fa43c373dc8c7":[1,0,0,0,0,4,2], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html":[1,0,0,0,0,7], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a07f015e4a57443a29753c186e0e5d0ee":[1,0,0,0,0,7,4], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a0b26ffcf1270c07384a57ddaf3a38a35":[1,0,0,0,0,7,11], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a2f3ec418e47e041ffd5628d10ef80f56":[1,0,0,0,0,7,13], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a384f1304da6ce18c4713368327354479":[1,0,0,0,0,7,9], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a590c6a8e6f850c98dbc82ffea1b50650":[1,0,0,0,0,7,2], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a5c6d1a6230a4c8e713244bbdd63a1a24":[1,0,0,0,0,7,5], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a634bc5a3b605f4e96e9860a626c55b64":[1,0,0,0,0,7,12], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a7bf5da24d9aec9ed9b5e42b912a38a7b":[1,0,0,0,0,7,7], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a7c82c2c4e3782e9770d45d564f9425a5":[1,0,0,0,0,7,1], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8a3f3c0ba824744bfc879e042c691dca":[1,0,0,0,0,7,3], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8d9a7509b995a14fda3e033789be636e":[1,0,0,0,0,7,6], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8e3b65c01dadb977b9c2327864db9e15":[1,0,0,0,0,7,15], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a97721e13c38c6fd4a305067b61004b42":[1,0,0,0,0,7,14], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a9ab5672bca28a46bb98f25d424e242cd":[1,0,0,0,0,7,10], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ab306d6d55956332b1083e967393a59f1":[1,0,0,0,0,7,16], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#abfe6d821425b515382f5001823d40836":[1,0,0,0,0,7,0], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ac4761deba75a7238ae29243b159b9943":[1,0,0,0,0,7,19], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ae92aa3486601bb4ba757be96b3c6bee3":[1,0,0,0,0,7,8], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#aeadf1e58eae72ef94f9e2c01ad7921c6":[1,0,0,0,0,7,18], -"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#af20fa1cd5e5bd230ab1d4e89c6aead38":[1,0,0,0,0,7,17], -"classfmt_1_1v5_1_1internal_1_1char__converter.html":[1,0,0,0,0,9], -"classfmt_1_1v5_1_1internal_1_1char__converter.html#a36eebf1fb8156ed284c270b2a7c713bd":[1,0,0,0,0,9,2], -"classfmt_1_1v5_1_1internal_1_1char__converter.html#a593d53809eb74f168c694c62d1aa1c53":[1,0,0,0,0,9,0], -"classfmt_1_1v5_1_1internal_1_1char__converter.html#ad2751b0df568ddd4130d2f5ddc39c29b":[1,0,0,0,0,9,1], -"classfmt_1_1v5_1_1internal_1_1char__specs__checker.html":[1,0,0,0,0,11], -"classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#a66e7f01c770f2002fe729864e0e85d7e":[1,0,0,0,0,11,1], -"classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#a6f720937604863fca737c9f48c7bbef5":[1,0,0,0,0,11,0], -"classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#aaf74a0eb4908b6ac92930c068a39bf4d":[1,0,0,0,0,11,2], -"classfmt_1_1v5_1_1internal_1_1container__buffer.html":[1,0,0,0,0,22], -"classfmt_1_1v5_1_1internal_1_1container__buffer.html#a5f7834eecd73531a1f57993f9b9e3977":[1,0,0,0,0,22,0], -"classfmt_1_1v5_1_1internal_1_1container__buffer.html#a972d31b059aa614f314372e5bde626ee":[1,0,0,0,0,22,1], -"classfmt_1_1v5_1_1internal_1_1context__base.html":[1,0,0,0,0,23], -"classfmt_1_1v5_1_1internal_1_1context__base.html#a002ecd520551aef8a4af81c9cc94eb91":[1,0,0,0,0,23,7], -"classfmt_1_1v5_1_1internal_1_1context__base.html#a1619fee676f24de9cb69faab79584278":[1,0,0,0,0,23,3], -"classfmt_1_1v5_1_1internal_1_1context__base.html#a1ba52d0ae32b2feda32d3ca7169a9af5":[1,0,0,0,0,23,1], -"classfmt_1_1v5_1_1internal_1_1context__base.html#a3760d881e55281f49c546d0102cda9f3":[1,0,0,0,0,23,12], -"classfmt_1_1v5_1_1internal_1_1context__base.html#a47af48a658d7c01909e2a7f5f522702a":[1,0,0,0,0,23,6], -"classfmt_1_1v5_1_1internal_1_1context__base.html#a5ef3c3b62f0dab625c750986f348c8f8":[1,0,0,0,0,23,9], -"classfmt_1_1v5_1_1internal_1_1context__base.html#a6d08d519c4919fba06e32e08f7395cba":[1,0,0,0,0,23,5], -"classfmt_1_1v5_1_1internal_1_1context__base.html#a782e3cda3eec3c7792fddfbbedb0b7d7":[1,0,0,0,0,23,14], -"classfmt_1_1v5_1_1internal_1_1context__base.html#aa458a85cf988a33794d05a20f306fb60":[1,0,0,0,0,23,10], -"classfmt_1_1v5_1_1internal_1_1context__base.html#aa8255081d2498a11c4d0db766907709c":[1,0,0,0,0,23,13], -"classfmt_1_1v5_1_1internal_1_1context__base.html#aa88412259a118ed5ac97e9bd1cee92e3":[1,0,0,0,0,23,2], -"classfmt_1_1v5_1_1internal_1_1context__base.html#abcc9c36e7effb35bcd76c698b478fbe6":[1,0,0,0,0,23,8], -"classfmt_1_1v5_1_1internal_1_1context__base.html#acd179b817cfad89a6bca77f4b07401fe":[1,0,0,0,0,23,11], -"classfmt_1_1v5_1_1internal_1_1context__base.html#ae6257fa7c87f16830f7bbb9263991ef8":[1,0,0,0,0,23,4], -"classfmt_1_1v5_1_1internal_1_1context__base.html#af36b86d06d85ba210da04541cfb22389":[1,0,0,0,0,23,0], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html":[1,0,0,0,0,24], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a07ebb1da97cc649df20f1f8c6f03e465":[1,0,0,0,0,24,3], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a13f8c5691061c696945f38159080fe2e":[1,0,0,0,0,24,5], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a5f49bbf0aec176d242443c81811b439c":[1,0,0,0,0,24,9], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a79e3e8094b4d91acd6233a2f1bd69add":[1,0,0,0,0,24,8], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a81db3ee5c66069e844af366c6ffb1dce":[1,0,0,0,0,24,4], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a88b962009c4abb5b83981b8952bbb1ee":[1,0,0,0,0,24,0], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a9d2f0224d9f4a23484dc28c67ac81f13":[1,0,0,0,0,24,6], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#ab92c73e74847673855c24767e21430dd":[1,0,0,0,0,24,10], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#ae0812a3e1c2651b160e6a4a617fde5c3":[1,0,0,0,0,24,1], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#af0879937c615e146111e361db9a393d9":[1,0,0,0,0,24,7], -"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#affb43cc051a4c3adef65ef36096724dc":[1,0,0,0,0,24,2], -"classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html":[1,0,0,0,0,25], -"classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#a121cc7c3aa7c96aafe802123ca731226":[1,0,0,0,0,25,0], -"classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#a56ab12958652d01caad11b75747d05d8":[1,0,0,0,0,25,1], -"classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#acef9add1fb34d2d175a1dd92afdfe1e5":[1,0,0,0,0,25,2], -"classfmt_1_1v5_1_1internal_1_1custom__formatter.html":[1,0,0,0,0,26], -"classfmt_1_1v5_1_1internal_1_1custom__formatter.html#a42116f5a926129d0caee0c8996923458":[1,0,0,0,0,26,1], -"classfmt_1_1v5_1_1internal_1_1custom__formatter.html#a6561dbaebd329e3fcf614224764b860f":[1,0,0,0,0,26,2], -"classfmt_1_1v5_1_1internal_1_1custom__formatter.html#ac2612121f51ea49d01b48a368899cbe9":[1,0,0,0,0,26,0], -"classfmt_1_1v5_1_1internal_1_1decimal__formatter.html":[1,0,0,0,0,28], -"classfmt_1_1v5_1_1internal_1_1decimal__formatter.html#a1a6a63018f8b53729b183608f4baa79a":[1,0,0,0,0,28,1], -"classfmt_1_1v5_1_1internal_1_1decimal__formatter.html#ae9628f9ead0c072984e75532438c0182":[1,0,0,0,0,28,0], -"classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html":[1,0,0,0,0,29], -"classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html#aa973d156e8cd5038b4cbaa8ee7c2b021":[1,0,0,0,0,29,1], -"classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html#ad0faad0e42c161621f7460207abe3498":[1,0,0,0,0,29,0], -"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html":[1,0,0,0,0,33], -"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a308cbb025165a2b6183eb1064919abb7":[1,0,0,0,0,33,3], -"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a5c4733e658ce853293a499f06461f7c9":[1,0,0,0,0,33,2], -"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a884a3f983b8dd92638bdcfc2efa0fef0":[1,0,0,0,0,33,5], -"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a91e483d3cf1a54ee8c6163572442888a":[1,0,0,0,0,33,0], -"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#ad86ceb430a696429d7d9ccb2e295f725":[1,0,0,0,0,33,4], -"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#aeca213f76448b8e011beaa446d70203d":[1,0,0,0,0,33,1], -"classfmt_1_1v5_1_1internal_1_1float__type__checker.html":[1,0,0,0,0,36], -"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a022d595c17259f8b0df0e10f4397ca67":[1,0,0,0,0,36,2], -"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a0f7bbace087804f834170962a3751838":[1,0,0,0,0,36,4], -"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a28bc42a672af599e109938f34d58bb30":[1,0,0,0,0,36,3], -"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a488c1569ecc390390de41642af877cf1":[1,0,0,0,0,36,5], -"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a6259e777a6b575e11c682d91d0be83ab":[1,0,0,0,0,36,1], -"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#ab4f77925d9c95b66e8b0ad5bdba8855b":[1,0,0,0,0,36,0], -"classfmt_1_1v5_1_1internal_1_1format__string__checker.html":[1,0,0,0,0,37], -"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a149ce0957470639d28afc84c3205db79":[1,0,0,0,0,37,2], -"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a3acec6cf8e16fcae6dd75da1930684f6":[1,0,0,0,0,37,3], -"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a3fbe7d41bebcb3f3a2d29ebe3bf84dd5":[1,0,0,0,0,37,7], -"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a76c07cc9b08a444f3587b3382250107e":[1,0,0,0,0,37,6], -"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a8f5842b3b1c1f74fdbfe1a7139166272":[1,0,0,0,0,37,1], -"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#aa08622a95cb0dd13bc3295f347f2e5ac":[1,0,0,0,0,37,4], -"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#af211eec79b6f10bba9828dd5bc486fb8":[1,0,0,0,0,37,5], -"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#affdef5d73dd28bcbe91c68f617f7b419":[1,0,0,0,0,37,0], -"classfmt_1_1v5_1_1internal_1_1formatbuf.html":[1,0,0,0,0,39], -"classfmt_1_1v5_1_1internal_1_1formatbuf.html#a40ed5a6fac492f4c50b12273ebb30abe":[1,0,0,0,0,39,0], -"classfmt_1_1v5_1_1internal_1_1formatbuf.html#a90f68be3695c0523483f1cea96e20ed8":[1,0,0,0,0,39,2], -"classfmt_1_1v5_1_1internal_1_1formatbuf.html#a9dfaa03638d438c79cd2d3bfa597d077":[1,0,0,0,0,39,1], -"classfmt_1_1v5_1_1internal_1_1fp.html":[1,0,0,0,0,40], -"classfmt_1_1v5_1_1internal_1_1fp.html#a1637cce65f488ce657cb23db4c7c0219":[1,0,0,0,0,40,5], -"classfmt_1_1v5_1_1internal_1_1fp.html#a268d69d61ba1e06520408dfdca76bba1":[1,0,0,0,0,40,1], -"classfmt_1_1v5_1_1internal_1_1fp.html#a4461b3a2cdedfe644911f3984180a0b9":[1,0,0,0,0,40,0], -"classfmt_1_1v5_1_1internal_1_1fp.html#ab59ad7dfcd4ed603592d93cf4b7aaa42":[1,0,0,0,0,40,4], -"classfmt_1_1v5_1_1internal_1_1fp.html#ab9070b4fc350e45c0d3c9685e8240fc2":[1,0,0,0,0,40,3], -"classfmt_1_1v5_1_1internal_1_1fp.html#ad0175b9acfb79c562984ed002fe09c53":[1,0,0,0,0,40,7], -"classfmt_1_1v5_1_1internal_1_1fp.html#ad52e794a6624dfc7d992bd2eea3ab23f":[1,0,0,0,0,40,6], -"classfmt_1_1v5_1_1internal_1_1fp.html#adfdc87ad85220297755fbe7c6a8e1590":[1,0,0,0,0,40,2], -"classfmt_1_1v5_1_1internal_1_1int__type__checker.html":[1,0,0,0,0,49], -"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a0006985aadbde8a6ac0234965afac80c":[1,0,0,0,0,49,3], -"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a13ed97c71cee805fc3548feea42db5a5":[1,0,0,0,0,49,4], -"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a249a93159605bb04c62fdfbd27d31547":[1,0,0,0,0,49,2], -"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a34213cd8fddd550812e0e3dbc6fba583":[1,0,0,0,0,49,1], -"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a38d3e72fdf277b4f7d431e83e96c943e":[1,0,0,0,0,49,5], -"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#aa75eaaeb64951f8fa9e5480e4fa50c6f":[1,0,0,0,0,49,0], -"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#af209985f05390106353bc61242343ca7":[1,0,0,0,0,49,6], -"classfmt_1_1v5_1_1internal_1_1is__like__std__string.html":[1,0,0,0,0,52], -"classfmt_1_1v5_1_1internal_1_1is__like__std__string.html#ae56f2f4d49852e70c3e36107ed9b62ed":[1,0,0,0,0,52,0], -"classfmt_1_1v5_1_1internal_1_1is__output__iterator.html":[1,0,0,0,0,54], -"classfmt_1_1v5_1_1internal_1_1is__output__iterator.html#aa4d927007ddeb8efaa78d8b164ec5549":[1,0,0,0,0,54,0], -"classfmt_1_1v5_1_1internal_1_1is__streamable.html":[1,0,0,0,0,57], -"classfmt_1_1v5_1_1internal_1_1is__streamable.html#af3b5a08eb5d6d8a5ff5656171f041b42":[1,0,0,0,0,57,0], -"classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html":[1,0,0,0,0,61], -"classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html#a02f7ed6f598f73178ddc2f3a761dc77e":[1,0,0,0,0,61,0], -"classfmt_1_1v5_1_1internal_1_1is__zero__int.html":[1,0,0,0,0,62], -"classfmt_1_1v5_1_1internal_1_1is__zero__int.html#a19ee91e091c76fe269e401b15ea7eff3":[1,0,0,0,0,62,0], -"classfmt_1_1v5_1_1internal_1_1is__zero__int.html#a3af159d2914d8de6ef0516c86da2a481":[1,0,0,0,0,62,1], -"classfmt_1_1v5_1_1internal_1_1locale__ref.html":[1,0,0,0,0,66], -"classfmt_1_1v5_1_1internal_1_1locale__ref.html#a0a09223e17db306b813d8b07b4b344fc":[1,0,0,0,0,66,3], -"classfmt_1_1v5_1_1internal_1_1locale__ref.html#a1c00987ce7b6a1a9160277505b2dc38d":[1,0,0,0,0,66,2], -"classfmt_1_1v5_1_1internal_1_1locale__ref.html#ae3997bdc7859ad4d18cbc86a702b61d7":[1,0,0,0,0,66,1], -"classfmt_1_1v5_1_1internal_1_1locale__ref.html#ae4ee3bc5f9b88dc96ece438fcbc10c22":[1,0,0,0,0,66,0], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html":[1,0,0,0,0,77], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a047900de1c609b1b67599b2e87e6be61":[1,0,0,0,0,77,8], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a1ac6b94c99323d58886943b1032be0b6":[1,0,0,0,0,77,3], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a3c15e34c777dfd9111db29bfa338ada2":[1,0,0,0,0,77,15], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a42557d330303048247da9fc8f60a6a0c":[1,0,0,0,0,77,2], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a5ca7f8621af24ad5f3dde243d132fb6d":[1,0,0,0,0,77,12], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a5ed8769f6e99acd27c34d5cacfb6ab1d":[1,0,0,0,0,77,13], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a65a6dc37670afbdb757175eca7e87ef6":[1,0,0,0,0,77,10], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a768ecde717e21463fb0a470fdd2db034":[1,0,0,0,0,77,9], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a78ee94466140c7d086d3ce3ef87ec79f":[1,0,0,0,0,77,11], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a862bae07a99e36fe5017e4ee3cccfefe":[1,0,0,0,0,77,14], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a87dcc701162ca01725c3702f46aca184":[1,0,0,0,0,77,1], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ab1bc138b0ba1989222557dc92c53fe1f":[1,0,0,0,0,77,5], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ab9cf4717029a7ee8de81c7232c3fda4c":[1,0,0,0,0,77,19], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ac03548f66b12217a2ed1bce77729b1c1":[1,0,0,0,0,77,6], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#acd09cb49aec23c8912be032da932545c":[1,0,0,0,0,77,7], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ad164270aa9d019ca4e07c56e8b44d2c3":[1,0,0,0,0,77,18], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ad9177a447cdfc48f030f67a43ba3950c":[1,0,0,0,0,77,4], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ae5c938544e66e266f119f25ec4ab27ca":[1,0,0,0,0,77,17], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#af9870396209e1408dafa552aa8c5a867":[1,0,0,0,0,77,16], -"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#afd8140268676a9a3d036d0a7184739ea":[1,0,0,0,0,77,0], -"classfmt_1_1v5_1_1internal_1_1precision__checker.html":[1,0,0,0,0,79], -"classfmt_1_1v5_1_1internal_1_1precision__checker.html#a091ba51843b08d80ef6d332adf95949a":[1,0,0,0,0,79,2], -"classfmt_1_1v5_1_1internal_1_1precision__checker.html#ad03d296cfbb86da629a4d0a2ab7abdd8":[1,0,0,0,0,79,0], -"classfmt_1_1v5_1_1internal_1_1precision__checker.html#aef64950df9269488dea1a8f1c91fc3bc":[1,0,0,0,0,79,1], -"classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html":[1,0,0,0,0,81], -"classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html#a6220270ad9933076a07d97d5f140d835":[1,0,0,0,0,81,0], -"classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html#ad5d83f423cc9b8e8913d6f1cbe6a7d3d":[1,0,0,0,0,81,1], -"classfmt_1_1v5_1_1internal_1_1printf__width__handler.html":[1,0,0,0,0,82], -"classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a3a935a65cddc273eb6eceede698c9b1d":[1,0,0,0,0,82,2], -"classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a6ae374d553e7f4b094eff281b6175caa":[1,0,0,0,0,82,0], -"classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a9abe7a6b4e53386ffd7d261dffc38385":[1,0,0,0,0,82,1], -"classfmt_1_1v5_1_1internal_1_1specs__checker.html":[1,0,0,0,0,85], -"classfmt_1_1v5_1_1internal_1_1specs__checker.html#a13f99fab9887df8c7e6502787a278bfb":[1,0,0,0,0,85,4], -"classfmt_1_1v5_1_1internal_1_1specs__checker.html#a548e6a06b4a2d1af66f4acfe575e2a76":[1,0,0,0,0,85,8], -"classfmt_1_1v5_1_1internal_1_1specs__checker.html#a8e9c7bb30c9a44f86aaabd956358452b":[1,0,0,0,0,85,5], -"classfmt_1_1v5_1_1internal_1_1specs__checker.html#aa8f05ebfb4d08764760e94b3ed9d89c3":[1,0,0,0,0,85,6], -"classfmt_1_1v5_1_1internal_1_1specs__checker.html#abce5f587ed4b5a7461b1c2812e7650a7":[1,0,0,0,0,85,3], -"classfmt_1_1v5_1_1internal_1_1specs__checker.html#adc19ccf22ffc0997293bdf759711b6e7":[1,0,0,0,0,85,2], -"classfmt_1_1v5_1_1internal_1_1specs__checker.html#aeca1b02a34ced815eb453609e3906752":[1,0,0,0,0,85,1], -"classfmt_1_1v5_1_1internal_1_1specs__checker.html#af0240aa8eb685e3e6b5350e18fae20b2":[1,0,0,0,0,85,7], -"classfmt_1_1v5_1_1internal_1_1specs__checker.html#afa76923c1c5c5315391d2fd5888cea92":[1,0,0,0,0,85,0], -"classfmt_1_1v5_1_1internal_1_1specs__handler.html":[1,0,0,0,0,86], -"classfmt_1_1v5_1_1internal_1_1specs__handler.html#a1e09219c0d595a59d9271600ecffcc7b":[1,0,0,0,0,86,2], -"classfmt_1_1v5_1_1internal_1_1specs__handler.html#a3577cd82b12c640ecd649dea25c1e4a6":[1,0,0,0,0,86,3], -"classfmt_1_1v5_1_1internal_1_1specs__handler.html#a4bb79b8a65ceec46b89cdd048abff739":[1,0,0,0,0,86,4], -"classfmt_1_1v5_1_1internal_1_1specs__handler.html#a932e093eb37337b0985205de75f43ab4":[1,0,0,0,0,86,1], -"classfmt_1_1v5_1_1internal_1_1specs__handler.html#ab634b0a93a600c943d708af3ba46805e":[1,0,0,0,0,86,0], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html":[1,0,0,0,0,87], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a0109570b2d60f43af209bd9f42f81f50":[1,0,0,0,0,87,4], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a02f2dcb84c84e7b7050cb380ca53f37b":[1,0,0,0,0,87,5], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a1a5c67ffa1e2120fbbb6ce62dd2b0c61":[1,0,0,0,0,87,3], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a1ec03a0f5d574c5dd31b0ebaa810029a":[1,0,0,0,0,87,7], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a21d719b2dfe968433047cb65d91f1bc5":[1,0,0,0,0,87,0], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a415ee68e15aa5943d16bcc24fecc5596":[1,0,0,0,0,87,9], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a5620d3455b48a3110b4b2b2312c9fb5a":[1,0,0,0,0,87,12], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a8a81bc15ccaed031629365ee8b57104d":[1,0,0,0,0,87,6], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a8ec97ee5743a7adb1d27793190004066":[1,0,0,0,0,87,11], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#aa11c3c244e8b5343d50a9ba6407b0b24":[1,0,0,0,0,87,10], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#aad41fe0a8b8b0f452f866e51d3dbf1b1":[1,0,0,0,0,87,8], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#adc8b8640bbe954506ebf019a8c8ac3e5":[1,0,0,0,0,87,13], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#aebafbc2312741d5dd5290df3afadcfe5":[1,0,0,0,0,87,1], -"classfmt_1_1v5_1_1internal_1_1specs__setter.html#af040082b7ccbdc2929c4f0c28aebd744":[1,0,0,0,0,87,2], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator.html":[1,0,0,0,0,90], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html":[1,0,0,0,0,91], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a3e3eaa69e1f7a8302cc9be5f0ce76a98":[1,0,0,0,0,91,3], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a5a99af3c33a7e15fcaa77a387a70c4f7":[1,0,0,0,0,91,1], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a5f21fb8af92548caefb494b1e49814b6":[1,0,0,0,0,91,0], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a69069d1c78272aa6520fdee9fdd987d6":[1,0,0,0,0,91,2], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#ab2c94df15db5ebd65b8f4164cc16431d":[1,0,0,0,0,91,4], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html":[1,0,0,0,0,92], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a2314451849f79cbc4c302dc97dff64c7":[1,0,0,0,0,92,4], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a390d19340dce95b689844db8c030707a":[1,0,0,0,0,92,2], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a9135efbc2c3a9c304e49eb092c85131d":[1,0,0,0,0,92,5], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a9284d872ba9a7fc8e42a9d9a5d7777de":[1,0,0,0,0,92,1], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#adacdaff3cef2aca38eb851d4b2f38cac":[1,0,0,0,0,92,3], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#af1785abde70457e336e28c9e3640e155":[1,0,0,0,0,92,0], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html":[1,0,0,0,0,93], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a09ce2b9fd471cbd9603739d41288a72c":[1,0,0,0,0,93,0], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a1549daf80c73bb341ed33dbe97d9c8a5":[1,0,0,0,0,93,10], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a16eabcb848e779b567918d0935904b7b":[1,0,0,0,0,93,8], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a24832c279c6143d905912d3181872f44":[1,0,0,0,0,93,9], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a56850280db1992628ce9afaab31c8637":[1,0,0,0,0,93,7], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a8abc6756a3aee78332053104ecfce661":[1,0,0,0,0,93,2] +"classfmt_1_1v5_1_1format__int.html#afde6e35fd703a48b346c0dd969bd6b1c":[2,0,0,0,33,7], +"classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html":[2,0,0,0,0,0], +"classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a0bd627a0529dc333328af15cbd2d7f77":[2,0,0,0,0,0,0], +"classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a2b67cdb6e9828877661e6fd9348206f3":[2,0,0,0,0,0,3], +"classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a5f8e41561ce9cdf40e12fcff6431e4b1a2766626dccbf822fd55f5ab488d11932":[2,0,0,0,0,0,1], +"classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#abf5e4ae8e94f8574fcd68d2f049df8d2":[2,0,0,0,0,0,2], +"classfmt_1_1v5_1_1internal_1_1arg__converter.html":[2,0,0,0,0,2], +"classfmt_1_1v5_1_1internal_1_1arg__converter.html#a8405b74eeb4825deead78fd5e508b4ed":[2,0,0,0,0,2,3], +"classfmt_1_1v5_1_1internal_1_1arg__converter.html#a84121ff1b1f0533ad51bff04bf0eb77b":[2,0,0,0,0,2,2], +"classfmt_1_1v5_1_1internal_1_1arg__converter.html#ab0794cf47439d7e560916c9b4d565320":[2,0,0,0,0,2,1], +"classfmt_1_1v5_1_1internal_1_1arg__converter.html#aef40801d8966d8da086dd0507a0e88b3":[2,0,0,0,0,2,0], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html":[2,0,0,0,0,3], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a05e90e22d2222c1c458d625f8559599a":[2,0,0,0,0,3,6], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a065412840bd7bab950a7f4df38fbc94b":[2,0,0,0,0,3,2], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a0fe712b3073fdad76e865f681a20a3cb":[2,0,0,0,0,3,15], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a1f09a08ddcb054ae0d7dec1e8183ec9a":[2,0,0,0,0,3,4], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a43e1b1fba0aa288fd2b33c85eaad5180":[2,0,0,0,0,3,16], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a4c6d77344d1e2c8327965b544adb03fb":[2,0,0,0,0,3,7], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a59b215cea8bf6e89883b58c47d4f0d94":[2,0,0,0,0,3,9], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a793d82c248d310c8b1bdf06b00a9bdf8":[2,0,0,0,0,3,10], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a7e8848d8bfb01b809c74e65788a197ca":[2,0,0,0,0,3,14], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a8890ae003e8b00eed900cd18d216cf48":[2,0,0,0,0,3,11], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a8ae25aadcb11be0f632537d24bc3ba37":[2,0,0,0,0,3,5], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a96fbb5e2e9b9f98517f162b87b6bc738":[2,0,0,0,0,3,3], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#ab2e59146a8b73543a67737f28d7eb176":[2,0,0,0,0,3,12], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#abdcd50b6b81f5f0071482f01b4f19945":[2,0,0,0,0,3,13], +"classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#ae20e743a85c240feefa62a82cb81d836":[2,0,0,0,0,3,8], +"classfmt_1_1v5_1_1internal_1_1arg__map.html":[2,0,0,0,0,4], +"classfmt_1_1v5_1_1internal_1_1arg__map.html#a04351a6b015c6ed8822951f332162a7f":[2,0,0,0,0,4,3], +"classfmt_1_1v5_1_1internal_1_1arg__map.html#a31d7e9121428e608bbb580cf53ae85de":[2,0,0,0,0,4,1], +"classfmt_1_1v5_1_1internal_1_1arg__map.html#a88a37695bca579d00ebc51586639b592":[2,0,0,0,0,4,0], +"classfmt_1_1v5_1_1internal_1_1arg__map.html#af6c96f7f7daeece4fa5fa43c373dc8c7":[2,0,0,0,0,4,2], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html":[2,0,0,0,0,7], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a07f015e4a57443a29753c186e0e5d0ee":[2,0,0,0,0,7,4], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a0b26ffcf1270c07384a57ddaf3a38a35":[2,0,0,0,0,7,11], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a2f3ec418e47e041ffd5628d10ef80f56":[2,0,0,0,0,7,13], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a384f1304da6ce18c4713368327354479":[2,0,0,0,0,7,9], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a590c6a8e6f850c98dbc82ffea1b50650":[2,0,0,0,0,7,2], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a5c6d1a6230a4c8e713244bbdd63a1a24":[2,0,0,0,0,7,5], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a634bc5a3b605f4e96e9860a626c55b64":[2,0,0,0,0,7,12], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a7bf5da24d9aec9ed9b5e42b912a38a7b":[2,0,0,0,0,7,7], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a7c82c2c4e3782e9770d45d564f9425a5":[2,0,0,0,0,7,1], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8a3f3c0ba824744bfc879e042c691dca":[2,0,0,0,0,7,3], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8d9a7509b995a14fda3e033789be636e":[2,0,0,0,0,7,6], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8e3b65c01dadb977b9c2327864db9e15":[2,0,0,0,0,7,15], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a97721e13c38c6fd4a305067b61004b42":[2,0,0,0,0,7,14], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a9ab5672bca28a46bb98f25d424e242cd":[2,0,0,0,0,7,10], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ab306d6d55956332b1083e967393a59f1":[2,0,0,0,0,7,16], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#abfe6d821425b515382f5001823d40836":[2,0,0,0,0,7,0], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ac4761deba75a7238ae29243b159b9943":[2,0,0,0,0,7,19], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ae92aa3486601bb4ba757be96b3c6bee3":[2,0,0,0,0,7,8], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#aeadf1e58eae72ef94f9e2c01ad7921c6":[2,0,0,0,0,7,18], +"classfmt_1_1v5_1_1internal_1_1basic__buffer.html#af20fa1cd5e5bd230ab1d4e89c6aead38":[2,0,0,0,0,7,17], +"classfmt_1_1v5_1_1internal_1_1char__converter.html":[2,0,0,0,0,9], +"classfmt_1_1v5_1_1internal_1_1char__converter.html#a36eebf1fb8156ed284c270b2a7c713bd":[2,0,0,0,0,9,2], +"classfmt_1_1v5_1_1internal_1_1char__converter.html#a593d53809eb74f168c694c62d1aa1c53":[2,0,0,0,0,9,0], +"classfmt_1_1v5_1_1internal_1_1char__converter.html#ad2751b0df568ddd4130d2f5ddc39c29b":[2,0,0,0,0,9,1], +"classfmt_1_1v5_1_1internal_1_1char__specs__checker.html":[2,0,0,0,0,11], +"classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#a66e7f01c770f2002fe729864e0e85d7e":[2,0,0,0,0,11,1], +"classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#a6f720937604863fca737c9f48c7bbef5":[2,0,0,0,0,11,0], +"classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#aaf74a0eb4908b6ac92930c068a39bf4d":[2,0,0,0,0,11,2], +"classfmt_1_1v5_1_1internal_1_1container__buffer.html":[2,0,0,0,0,22], +"classfmt_1_1v5_1_1internal_1_1container__buffer.html#a5f7834eecd73531a1f57993f9b9e3977":[2,0,0,0,0,22,0], +"classfmt_1_1v5_1_1internal_1_1container__buffer.html#a972d31b059aa614f314372e5bde626ee":[2,0,0,0,0,22,1], +"classfmt_1_1v5_1_1internal_1_1context__base.html":[2,0,0,0,0,23], +"classfmt_1_1v5_1_1internal_1_1context__base.html#a002ecd520551aef8a4af81c9cc94eb91":[2,0,0,0,0,23,7], +"classfmt_1_1v5_1_1internal_1_1context__base.html#a1619fee676f24de9cb69faab79584278":[2,0,0,0,0,23,3], +"classfmt_1_1v5_1_1internal_1_1context__base.html#a1ba52d0ae32b2feda32d3ca7169a9af5":[2,0,0,0,0,23,1], +"classfmt_1_1v5_1_1internal_1_1context__base.html#a3760d881e55281f49c546d0102cda9f3":[2,0,0,0,0,23,12], +"classfmt_1_1v5_1_1internal_1_1context__base.html#a47af48a658d7c01909e2a7f5f522702a":[2,0,0,0,0,23,6], +"classfmt_1_1v5_1_1internal_1_1context__base.html#a5ef3c3b62f0dab625c750986f348c8f8":[2,0,0,0,0,23,9], +"classfmt_1_1v5_1_1internal_1_1context__base.html#a6d08d519c4919fba06e32e08f7395cba":[2,0,0,0,0,23,5], +"classfmt_1_1v5_1_1internal_1_1context__base.html#a782e3cda3eec3c7792fddfbbedb0b7d7":[2,0,0,0,0,23,14], +"classfmt_1_1v5_1_1internal_1_1context__base.html#aa458a85cf988a33794d05a20f306fb60":[2,0,0,0,0,23,10], +"classfmt_1_1v5_1_1internal_1_1context__base.html#aa8255081d2498a11c4d0db766907709c":[2,0,0,0,0,23,13], +"classfmt_1_1v5_1_1internal_1_1context__base.html#aa88412259a118ed5ac97e9bd1cee92e3":[2,0,0,0,0,23,2], +"classfmt_1_1v5_1_1internal_1_1context__base.html#abcc9c36e7effb35bcd76c698b478fbe6":[2,0,0,0,0,23,8], +"classfmt_1_1v5_1_1internal_1_1context__base.html#acd179b817cfad89a6bca77f4b07401fe":[2,0,0,0,0,23,11], +"classfmt_1_1v5_1_1internal_1_1context__base.html#ae6257fa7c87f16830f7bbb9263991ef8":[2,0,0,0,0,23,4], +"classfmt_1_1v5_1_1internal_1_1context__base.html#af36b86d06d85ba210da04541cfb22389":[2,0,0,0,0,23,0], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html":[2,0,0,0,0,24], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a07ebb1da97cc649df20f1f8c6f03e465":[2,0,0,0,0,24,3], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a13f8c5691061c696945f38159080fe2e":[2,0,0,0,0,24,5], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a5f49bbf0aec176d242443c81811b439c":[2,0,0,0,0,24,9], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a79e3e8094b4d91acd6233a2f1bd69add":[2,0,0,0,0,24,8], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a81db3ee5c66069e844af366c6ffb1dce":[2,0,0,0,0,24,4], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a88b962009c4abb5b83981b8952bbb1ee":[2,0,0,0,0,24,0], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a9d2f0224d9f4a23484dc28c67ac81f13":[2,0,0,0,0,24,6], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#ab92c73e74847673855c24767e21430dd":[2,0,0,0,0,24,10], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#ae0812a3e1c2651b160e6a4a617fde5c3":[2,0,0,0,0,24,1], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#af0879937c615e146111e361db9a393d9":[2,0,0,0,0,24,7], +"classfmt_1_1v5_1_1internal_1_1counting__iterator.html#affb43cc051a4c3adef65ef36096724dc":[2,0,0,0,0,24,2], +"classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html":[2,0,0,0,0,25], +"classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#a121cc7c3aa7c96aafe802123ca731226":[2,0,0,0,0,25,0], +"classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#a56ab12958652d01caad11b75747d05d8":[2,0,0,0,0,25,1], +"classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#acef9add1fb34d2d175a1dd92afdfe1e5":[2,0,0,0,0,25,2], +"classfmt_1_1v5_1_1internal_1_1custom__formatter.html":[2,0,0,0,0,26], +"classfmt_1_1v5_1_1internal_1_1custom__formatter.html#a42116f5a926129d0caee0c8996923458":[2,0,0,0,0,26,1], +"classfmt_1_1v5_1_1internal_1_1custom__formatter.html#a6561dbaebd329e3fcf614224764b860f":[2,0,0,0,0,26,2], +"classfmt_1_1v5_1_1internal_1_1custom__formatter.html#ac2612121f51ea49d01b48a368899cbe9":[2,0,0,0,0,26,0], +"classfmt_1_1v5_1_1internal_1_1decimal__formatter.html":[2,0,0,0,0,28], +"classfmt_1_1v5_1_1internal_1_1decimal__formatter.html#a1a6a63018f8b53729b183608f4baa79a":[2,0,0,0,0,28,1], +"classfmt_1_1v5_1_1internal_1_1decimal__formatter.html#ae9628f9ead0c072984e75532438c0182":[2,0,0,0,0,28,0], +"classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html":[2,0,0,0,0,29], +"classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html#aa973d156e8cd5038b4cbaa8ee7c2b021":[2,0,0,0,0,29,1], +"classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html#ad0faad0e42c161621f7460207abe3498":[2,0,0,0,0,29,0], +"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html":[2,0,0,0,0,33], +"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a308cbb025165a2b6183eb1064919abb7":[2,0,0,0,0,33,3], +"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a5c4733e658ce853293a499f06461f7c9":[2,0,0,0,0,33,2], +"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a884a3f983b8dd92638bdcfc2efa0fef0":[2,0,0,0,0,33,5], +"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a91e483d3cf1a54ee8c6163572442888a":[2,0,0,0,0,33,0], +"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#ad86ceb430a696429d7d9ccb2e295f725":[2,0,0,0,0,33,4], +"classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#aeca213f76448b8e011beaa446d70203d":[2,0,0,0,0,33,1], +"classfmt_1_1v5_1_1internal_1_1float__type__checker.html":[2,0,0,0,0,36], +"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a022d595c17259f8b0df0e10f4397ca67":[2,0,0,0,0,36,2], +"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a0f7bbace087804f834170962a3751838":[2,0,0,0,0,36,4], +"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a28bc42a672af599e109938f34d58bb30":[2,0,0,0,0,36,3], +"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a488c1569ecc390390de41642af877cf1":[2,0,0,0,0,36,5], +"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a6259e777a6b575e11c682d91d0be83ab":[2,0,0,0,0,36,1], +"classfmt_1_1v5_1_1internal_1_1float__type__checker.html#ab4f77925d9c95b66e8b0ad5bdba8855b":[2,0,0,0,0,36,0], +"classfmt_1_1v5_1_1internal_1_1format__string__checker.html":[2,0,0,0,0,37], +"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a149ce0957470639d28afc84c3205db79":[2,0,0,0,0,37,2], +"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a3acec6cf8e16fcae6dd75da1930684f6":[2,0,0,0,0,37,3], +"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a3fbe7d41bebcb3f3a2d29ebe3bf84dd5":[2,0,0,0,0,37,7], +"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a76c07cc9b08a444f3587b3382250107e":[2,0,0,0,0,37,6], +"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a8f5842b3b1c1f74fdbfe1a7139166272":[2,0,0,0,0,37,1], +"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#aa08622a95cb0dd13bc3295f347f2e5ac":[2,0,0,0,0,37,4], +"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#af211eec79b6f10bba9828dd5bc486fb8":[2,0,0,0,0,37,5], +"classfmt_1_1v5_1_1internal_1_1format__string__checker.html#affdef5d73dd28bcbe91c68f617f7b419":[2,0,0,0,0,37,0], +"classfmt_1_1v5_1_1internal_1_1formatbuf.html":[2,0,0,0,0,39], +"classfmt_1_1v5_1_1internal_1_1formatbuf.html#a40ed5a6fac492f4c50b12273ebb30abe":[2,0,0,0,0,39,0], +"classfmt_1_1v5_1_1internal_1_1formatbuf.html#a90f68be3695c0523483f1cea96e20ed8":[2,0,0,0,0,39,2], +"classfmt_1_1v5_1_1internal_1_1formatbuf.html#a9dfaa03638d438c79cd2d3bfa597d077":[2,0,0,0,0,39,1], +"classfmt_1_1v5_1_1internal_1_1fp.html":[2,0,0,0,0,40], +"classfmt_1_1v5_1_1internal_1_1fp.html#a1637cce65f488ce657cb23db4c7c0219":[2,0,0,0,0,40,5], +"classfmt_1_1v5_1_1internal_1_1fp.html#a268d69d61ba1e06520408dfdca76bba1":[2,0,0,0,0,40,1], +"classfmt_1_1v5_1_1internal_1_1fp.html#a4461b3a2cdedfe644911f3984180a0b9":[2,0,0,0,0,40,0], +"classfmt_1_1v5_1_1internal_1_1fp.html#ab59ad7dfcd4ed603592d93cf4b7aaa42":[2,0,0,0,0,40,4], +"classfmt_1_1v5_1_1internal_1_1fp.html#ab9070b4fc350e45c0d3c9685e8240fc2":[2,0,0,0,0,40,3], +"classfmt_1_1v5_1_1internal_1_1fp.html#ad0175b9acfb79c562984ed002fe09c53":[2,0,0,0,0,40,7], +"classfmt_1_1v5_1_1internal_1_1fp.html#ad52e794a6624dfc7d992bd2eea3ab23f":[2,0,0,0,0,40,6], +"classfmt_1_1v5_1_1internal_1_1fp.html#adfdc87ad85220297755fbe7c6a8e1590":[2,0,0,0,0,40,2], +"classfmt_1_1v5_1_1internal_1_1int__type__checker.html":[2,0,0,0,0,49], +"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a0006985aadbde8a6ac0234965afac80c":[2,0,0,0,0,49,3], +"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a13ed97c71cee805fc3548feea42db5a5":[2,0,0,0,0,49,4], +"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a249a93159605bb04c62fdfbd27d31547":[2,0,0,0,0,49,2], +"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a34213cd8fddd550812e0e3dbc6fba583":[2,0,0,0,0,49,1], +"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a38d3e72fdf277b4f7d431e83e96c943e":[2,0,0,0,0,49,5], +"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#aa75eaaeb64951f8fa9e5480e4fa50c6f":[2,0,0,0,0,49,0], +"classfmt_1_1v5_1_1internal_1_1int__type__checker.html#af209985f05390106353bc61242343ca7":[2,0,0,0,0,49,6], +"classfmt_1_1v5_1_1internal_1_1is__like__std__string.html":[2,0,0,0,0,52], +"classfmt_1_1v5_1_1internal_1_1is__like__std__string.html#ae56f2f4d49852e70c3e36107ed9b62ed":[2,0,0,0,0,52,0], +"classfmt_1_1v5_1_1internal_1_1is__output__iterator.html":[2,0,0,0,0,54], +"classfmt_1_1v5_1_1internal_1_1is__output__iterator.html#aa4d927007ddeb8efaa78d8b164ec5549":[2,0,0,0,0,54,0], +"classfmt_1_1v5_1_1internal_1_1is__streamable.html":[2,0,0,0,0,57], +"classfmt_1_1v5_1_1internal_1_1is__streamable.html#af3b5a08eb5d6d8a5ff5656171f041b42":[2,0,0,0,0,57,0], +"classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html":[2,0,0,0,0,61], +"classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html#a02f7ed6f598f73178ddc2f3a761dc77e":[2,0,0,0,0,61,0], +"classfmt_1_1v5_1_1internal_1_1is__zero__int.html":[2,0,0,0,0,62], +"classfmt_1_1v5_1_1internal_1_1is__zero__int.html#a19ee91e091c76fe269e401b15ea7eff3":[2,0,0,0,0,62,0], +"classfmt_1_1v5_1_1internal_1_1is__zero__int.html#a3af159d2914d8de6ef0516c86da2a481":[2,0,0,0,0,62,1], +"classfmt_1_1v5_1_1internal_1_1locale__ref.html":[2,0,0,0,0,66], +"classfmt_1_1v5_1_1internal_1_1locale__ref.html#a0a09223e17db306b813d8b07b4b344fc":[2,0,0,0,0,66,3], +"classfmt_1_1v5_1_1internal_1_1locale__ref.html#a1c00987ce7b6a1a9160277505b2dc38d":[2,0,0,0,0,66,2], +"classfmt_1_1v5_1_1internal_1_1locale__ref.html#ae3997bdc7859ad4d18cbc86a702b61d7":[2,0,0,0,0,66,1], +"classfmt_1_1v5_1_1internal_1_1locale__ref.html#ae4ee3bc5f9b88dc96ece438fcbc10c22":[2,0,0,0,0,66,0], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html":[2,0,0,0,0,77], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a047900de1c609b1b67599b2e87e6be61":[2,0,0,0,0,77,8], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a1ac6b94c99323d58886943b1032be0b6":[2,0,0,0,0,77,3], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a3c15e34c777dfd9111db29bfa338ada2":[2,0,0,0,0,77,15], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a42557d330303048247da9fc8f60a6a0c":[2,0,0,0,0,77,2], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a5ca7f8621af24ad5f3dde243d132fb6d":[2,0,0,0,0,77,12], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a5ed8769f6e99acd27c34d5cacfb6ab1d":[2,0,0,0,0,77,13], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a65a6dc37670afbdb757175eca7e87ef6":[2,0,0,0,0,77,10], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a768ecde717e21463fb0a470fdd2db034":[2,0,0,0,0,77,9], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a78ee94466140c7d086d3ce3ef87ec79f":[2,0,0,0,0,77,11], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a862bae07a99e36fe5017e4ee3cccfefe":[2,0,0,0,0,77,14], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a87dcc701162ca01725c3702f46aca184":[2,0,0,0,0,77,1], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ab1bc138b0ba1989222557dc92c53fe1f":[2,0,0,0,0,77,5], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ab9cf4717029a7ee8de81c7232c3fda4c":[2,0,0,0,0,77,19], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ac03548f66b12217a2ed1bce77729b1c1":[2,0,0,0,0,77,6], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#acd09cb49aec23c8912be032da932545c":[2,0,0,0,0,77,7], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ad164270aa9d019ca4e07c56e8b44d2c3":[2,0,0,0,0,77,18], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ad9177a447cdfc48f030f67a43ba3950c":[2,0,0,0,0,77,4], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ae5c938544e66e266f119f25ec4ab27ca":[2,0,0,0,0,77,17], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#af9870396209e1408dafa552aa8c5a867":[2,0,0,0,0,77,16], +"classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#afd8140268676a9a3d036d0a7184739ea":[2,0,0,0,0,77,0], +"classfmt_1_1v5_1_1internal_1_1precision__checker.html":[2,0,0,0,0,79], +"classfmt_1_1v5_1_1internal_1_1precision__checker.html#a091ba51843b08d80ef6d332adf95949a":[2,0,0,0,0,79,2], +"classfmt_1_1v5_1_1internal_1_1precision__checker.html#ad03d296cfbb86da629a4d0a2ab7abdd8":[2,0,0,0,0,79,0], +"classfmt_1_1v5_1_1internal_1_1precision__checker.html#aef64950df9269488dea1a8f1c91fc3bc":[2,0,0,0,0,79,1], +"classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html":[2,0,0,0,0,81], +"classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html#a6220270ad9933076a07d97d5f140d835":[2,0,0,0,0,81,0], +"classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html#ad5d83f423cc9b8e8913d6f1cbe6a7d3d":[2,0,0,0,0,81,1], +"classfmt_1_1v5_1_1internal_1_1printf__width__handler.html":[2,0,0,0,0,82], +"classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a3a935a65cddc273eb6eceede698c9b1d":[2,0,0,0,0,82,2], +"classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a6ae374d553e7f4b094eff281b6175caa":[2,0,0,0,0,82,0], +"classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a9abe7a6b4e53386ffd7d261dffc38385":[2,0,0,0,0,82,1], +"classfmt_1_1v5_1_1internal_1_1specs__checker.html":[2,0,0,0,0,85], +"classfmt_1_1v5_1_1internal_1_1specs__checker.html#a13f99fab9887df8c7e6502787a278bfb":[2,0,0,0,0,85,4], +"classfmt_1_1v5_1_1internal_1_1specs__checker.html#a548e6a06b4a2d1af66f4acfe575e2a76":[2,0,0,0,0,85,8], +"classfmt_1_1v5_1_1internal_1_1specs__checker.html#a8e9c7bb30c9a44f86aaabd956358452b":[2,0,0,0,0,85,5], +"classfmt_1_1v5_1_1internal_1_1specs__checker.html#aa8f05ebfb4d08764760e94b3ed9d89c3":[2,0,0,0,0,85,6], +"classfmt_1_1v5_1_1internal_1_1specs__checker.html#abce5f587ed4b5a7461b1c2812e7650a7":[2,0,0,0,0,85,3], +"classfmt_1_1v5_1_1internal_1_1specs__checker.html#adc19ccf22ffc0997293bdf759711b6e7":[2,0,0,0,0,85,2], +"classfmt_1_1v5_1_1internal_1_1specs__checker.html#aeca1b02a34ced815eb453609e3906752":[2,0,0,0,0,85,1], +"classfmt_1_1v5_1_1internal_1_1specs__checker.html#af0240aa8eb685e3e6b5350e18fae20b2":[2,0,0,0,0,85,7], +"classfmt_1_1v5_1_1internal_1_1specs__checker.html#afa76923c1c5c5315391d2fd5888cea92":[2,0,0,0,0,85,0], +"classfmt_1_1v5_1_1internal_1_1specs__handler.html":[2,0,0,0,0,86], +"classfmt_1_1v5_1_1internal_1_1specs__handler.html#a1e09219c0d595a59d9271600ecffcc7b":[2,0,0,0,0,86,2], +"classfmt_1_1v5_1_1internal_1_1specs__handler.html#a3577cd82b12c640ecd649dea25c1e4a6":[2,0,0,0,0,86,3], +"classfmt_1_1v5_1_1internal_1_1specs__handler.html#a4bb79b8a65ceec46b89cdd048abff739":[2,0,0,0,0,86,4], +"classfmt_1_1v5_1_1internal_1_1specs__handler.html#a932e093eb37337b0985205de75f43ab4":[2,0,0,0,0,86,1], +"classfmt_1_1v5_1_1internal_1_1specs__handler.html#ab634b0a93a600c943d708af3ba46805e":[2,0,0,0,0,86,0], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html":[2,0,0,0,0,87], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a0109570b2d60f43af209bd9f42f81f50":[2,0,0,0,0,87,4], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a02f2dcb84c84e7b7050cb380ca53f37b":[2,0,0,0,0,87,5], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a1a5c67ffa1e2120fbbb6ce62dd2b0c61":[2,0,0,0,0,87,3], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a1ec03a0f5d574c5dd31b0ebaa810029a":[2,0,0,0,0,87,7], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a21d719b2dfe968433047cb65d91f1bc5":[2,0,0,0,0,87,0], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a415ee68e15aa5943d16bcc24fecc5596":[2,0,0,0,0,87,9], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a5620d3455b48a3110b4b2b2312c9fb5a":[2,0,0,0,0,87,12], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a8a81bc15ccaed031629365ee8b57104d":[2,0,0,0,0,87,6], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#a8ec97ee5743a7adb1d27793190004066":[2,0,0,0,0,87,11], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#aa11c3c244e8b5343d50a9ba6407b0b24":[2,0,0,0,0,87,10], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#aad41fe0a8b8b0f452f866e51d3dbf1b1":[2,0,0,0,0,87,8], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#adc8b8640bbe954506ebf019a8c8ac3e5":[2,0,0,0,0,87,13], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#aebafbc2312741d5dd5290df3afadcfe5":[2,0,0,0,0,87,1], +"classfmt_1_1v5_1_1internal_1_1specs__setter.html#af040082b7ccbdc2929c4f0c28aebd744":[2,0,0,0,0,87,2], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator.html":[2,0,0,0,0,90], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html":[2,0,0,0,0,91], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a3e3eaa69e1f7a8302cc9be5f0ce76a98":[2,0,0,0,0,91,3], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a5a99af3c33a7e15fcaa77a387a70c4f7":[2,0,0,0,0,91,1], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a5f21fb8af92548caefb494b1e49814b6":[2,0,0,0,0,91,0], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a69069d1c78272aa6520fdee9fdd987d6":[2,0,0,0,0,91,2], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#ab2c94df15db5ebd65b8f4164cc16431d":[2,0,0,0,0,91,4], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html":[2,0,0,0,0,92], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a2314451849f79cbc4c302dc97dff64c7":[2,0,0,0,0,92,4], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a390d19340dce95b689844db8c030707a":[2,0,0,0,0,92,2], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a9135efbc2c3a9c304e49eb092c85131d":[2,0,0,0,0,92,5], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a9284d872ba9a7fc8e42a9d9a5d7777de":[2,0,0,0,0,92,1], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#adacdaff3cef2aca38eb851d4b2f38cac":[2,0,0,0,0,92,3], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#af1785abde70457e336e28c9e3640e155":[2,0,0,0,0,92,0], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html":[2,0,0,0,0,93], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a09ce2b9fd471cbd9603739d41288a72c":[2,0,0,0,0,93,0], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a1549daf80c73bb341ed33dbe97d9c8a5":[2,0,0,0,0,93,10], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a16eabcb848e779b567918d0935904b7b":[2,0,0,0,0,93,8], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a24832c279c6143d905912d3181872f44":[2,0,0,0,0,93,9], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a56850280db1992628ce9afaab31c8637":[2,0,0,0,0,93,7], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a8abc6756a3aee78332053104ecfce661":[2,0,0,0,0,93,2] }; diff --git a/docs/navtreeindex10.js b/docs/navtreeindex10.js index 531ca7f..0ac6eda 100644 --- a/docs/navtreeindex10.js +++ b/docs/navtreeindex10.js @@ -1,216 +1,217 @@ var NAVTREEINDEX10 = { -"structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4.html":[1,0,0,0,0,68], -"structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool.html":[1,0,0,0,0,69], -"structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html":[1,0,0,0,0,70], -"structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html#a0a5557a4a92010b0e997e82ea7a4bc9d":[1,0,0,0,0,70,0], -"structfmt_1_1v5_1_1internal_1_1named__arg.html":[1,0,0,0,0,71], -"structfmt_1_1v5_1_1internal_1_1named__arg.html#a3b6203a5a5308065fc90392a293fed93":[1,0,0,0,0,71,0], -"structfmt_1_1v5_1_1internal_1_1named__arg.html#a4fb6611dcd33787450c3e489dd0a380f":[1,0,0,0,0,71,1], -"structfmt_1_1v5_1_1internal_1_1named__arg__base.html":[1,0,0,0,0,72], -"structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a00b749531f5c3f26f7360080f900d5b2":[1,0,0,0,0,72,2], -"structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a593f217f9b351886a0312a816be51be1":[1,0,0,0,0,72,3], -"structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a9c38b418312ad17bcea0feafe39f22ce":[1,0,0,0,0,72,1], -"structfmt_1_1v5_1_1internal_1_1named__arg__base.html#acb59c24062e1fccd674816adce9558b6":[1,0,0,0,0,72,0], -"structfmt_1_1v5_1_1internal_1_1needs__conversion.html":[1,0,0,0,0,73], -"structfmt_1_1v5_1_1internal_1_1no__formatter__error.html":[1,0,0,0,0,74], -"structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html":[1,0,0,0,0,75], -"structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#a5f9285e4a5faac1e077ba9d24376141aad8c1eac7d2740563f5dd89c7712ce987":[1,0,0,0,0,75,1], -"structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#ab9fe0f0042a2d6a65a907a58a2a387b2":[1,0,0,0,0,75,2], -"structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#ad1e7da945143945bd5cd6934620331d9":[1,0,0,0,0,75,0], -"structfmt_1_1v5_1_1internal_1_1null.html":[1,0,0,0,0,76], -"structfmt_1_1v5_1_1internal_1_1precision__adapter.html":[1,0,0,0,0,78], -"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#a36e54d0d8eca245cbb452460373122df":[1,0,0,0,0,78,3], -"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#a428b2cb22f69719987193e9b49f4bf9d":[1,0,0,0,0,78,2], -"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aa5e2b37a4b3cafed33be6fcc69bb8d98":[1,0,0,0,0,78,1], -"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aa71ca1e30b68b25348bb19bb2e056869":[1,0,0,0,0,78,4], -"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aac38ce68b195f734a981b68497fcac77":[1,0,0,0,0,78,5], -"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aca2d85b4bd5747fb96a880034a6e4d14":[1,0,0,0,0,78,0], -"structfmt_1_1v5_1_1internal_1_1prettify__handler.html":[1,0,0,0,0,80], -"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a218e3b77fad28065c54461d33f82c8fb":[1,0,0,0,0,80,8], -"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a44f39b58e69588b81665ce2f0fb2e8e6":[1,0,0,0,0,80,4], -"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a4af3a99f9adb0a32c74ce88f1386b986":[1,0,0,0,0,80,0], -"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a5a8b13e38107753a839767adae553ed2":[1,0,0,0,0,80,2], -"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aa0537d2fca130c630cdbc7d7e06bc4cf":[1,0,0,0,0,80,3], -"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aa4a4294911effee4c142bc68fcdd2518":[1,0,0,0,0,80,7], -"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#ab939ca54a7a5ba0a79c2232a5b3aff46":[1,0,0,0,0,80,6], -"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#ad4387eb92b404732e7cc8b4548fc9abe":[1,0,0,0,0,80,5], -"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aeefd7bd2fef0e07643645f824d347ee2":[1,0,0,0,0,80,9], -"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#afeb64699e57c8b20dff3b44048fb60ac":[1,0,0,0,0,80,1], -"structfmt_1_1v5_1_1internal_1_1result__of.html":[1,0,0,0,0,83], -"structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html":[1,0,0,0,0,84], -"structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html#a75a66079d518f0f269c6be9baa8bccd9":[1,0,0,0,0,84,0], -"structfmt_1_1v5_1_1internal_1_1string__value.html":[1,0,0,0,0,88], -"structfmt_1_1v5_1_1internal_1_1string__value.html#a0138fc9479b4f37a74d3f32ff62e10bc":[1,0,0,0,0,88,0], -"structfmt_1_1v5_1_1internal_1_1string__value.html#a8e48ccdd962f1e5e0bb22d6759428f91":[1,0,0,0,0,88,1], -"structfmt_1_1v5_1_1internal_1_1test__stream.html":[1,0,0,0,0,89], -"structfmt_1_1v5_1_1internal_1_1void__.html":[1,0,0,0,0,95], -"structfmt_1_1v5_1_1internal_1_1void__.html#a574c59a1964f87565829257845c51023":[1,0,0,0,0,95,0], -"structfmt_1_1v5_1_1internal_1_1width__adapter.html":[1,0,0,0,0,96], -"structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3b64e9078c79528825385b55cbf1e34c":[1,0,0,0,0,96,4], -"structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3d13e902cc03addce9102d21294260a6":[1,0,0,0,0,96,1], -"structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3f0b73ae2cec14566f76d0f5977dc32c":[1,0,0,0,0,96,2], -"structfmt_1_1v5_1_1internal_1_1width__adapter.html#a524519bc859077ddaa45e229adafddcf":[1,0,0,0,0,96,5], -"structfmt_1_1v5_1_1internal_1_1width__adapter.html#a7216841a9338f38f757dd93a9a6f2869":[1,0,0,0,0,96,0], -"structfmt_1_1v5_1_1internal_1_1width__adapter.html#ac02c304cf7b266259fd689c7c336935d":[1,0,0,0,0,96,3], -"structfmt_1_1v5_1_1is__compile__string.html":[1,0,0,0,48], -"structfmt_1_1v5_1_1is__constructible.html":[1,0,0,0,49], -"structfmt_1_1v5_1_1is__contiguous.html":[1,0,0,0,50], -"structfmt_1_1v5_1_1is__contiguous_3_01internal_1_1basic__buffer_3_01_char_01_4_01_4.html":[1,0,0,0,51], -"structfmt_1_1v5_1_1is__contiguous_3_01std_1_1basic__string_3_01_char_01_4_01_4.html":[1,0,0,0,52], -"structfmt_1_1v5_1_1is__range.html":[1,0,0,0,53], -"structfmt_1_1v5_1_1is__range.html#a57f5c1ea66af4636e56a441636dd4fb3":[1,0,0,0,53,0], -"structfmt_1_1v5_1_1is__tuple__like.html":[1,0,0,0,54], -"structfmt_1_1v5_1_1is__tuple__like.html#a26f4317573be02eefa4019c093bfa8a8":[1,0,0,0,54,0], -"structfmt_1_1v5_1_1monostate.html":[1,0,0,0,55], -"structfmt_1_1v5_1_1printf__formatter.html":[1,0,0,0,58], -"structfmt_1_1v5_1_1printf__formatter.html#af08ea64b651a80ede60aba6ccdd6c72c":[1,0,0,0,58,1], -"structfmt_1_1v5_1_1printf__formatter.html#afbaf6d392ab5b9df30e317eadda1b82b":[1,0,0,0,58,0], -"structfmt_1_1v5_1_1rgb.html":[1,0,0,0,59], -"structfmt_1_1v5_1_1rgb.html#a09431a5576c128fa040c35f390852b14":[1,0,0,0,59,2], -"structfmt_1_1v5_1_1rgb.html#a1daecef7516f5a12c165ac69d93e34c2":[1,0,0,0,59,1], -"structfmt_1_1v5_1_1rgb.html#a62ff2701862b5856f1f44b4665665b32":[1,0,0,0,59,0], -"structfmt_1_1v5_1_1rgb.html#a8643af9dc4da837fce1b6f633b07bb34":[1,0,0,0,59,4], -"structfmt_1_1v5_1_1rgb.html#ac95ca52f2a8db235cd652813193f8ca5":[1,0,0,0,59,6], -"structfmt_1_1v5_1_1rgb.html#ae26aa08687996b7f191f73a6e4d1b626":[1,0,0,0,59,3], -"structfmt_1_1v5_1_1rgb.html#aea0614c87ac3f2fbaf8f83622c0d4b98":[1,0,0,0,59,5], -"structfmt_1_1v5_1_1wformat__args.html":[1,0,0,0,63], -"structfmt_1_1v5_1_1wformat__args.html#a831255528d4129333f3c4e7dfcd40d53":[1,0,0,0,63,0], -"structlivox_1_1_comm_packet.html":[1,0,1,0], -"structlivox_1_1_comm_packet.html#a03bb9a2b86f81a5000369d43ceed043c":[1,0,1,0,5], -"structlivox_1_1_comm_packet.html#a44673e979d10ca9f967fb6a75ffc5612":[1,0,1,0,4], -"structlivox_1_1_comm_packet.html#a54efd9bf0a8bcd7f3e54219dce99f966":[1,0,1,0,12], -"structlivox_1_1_comm_packet.html#a670bd53de47c748164570decdb70c968":[1,0,1,0,6], -"structlivox_1_1_comm_packet.html#a69485605f4d8113b178163d388defa89":[1,0,1,0,0], -"structlivox_1_1_comm_packet.html#a7ba25954258f461a079911c180da2669":[1,0,1,0,2], -"structlivox_1_1_comm_packet.html#a7d4df6086cbac3cbaecedfda76d6c11e":[1,0,1,0,7], -"structlivox_1_1_comm_packet.html#a8723e87d47e47da53e6741f82cc59faf":[1,0,1,0,10], -"structlivox_1_1_comm_packet.html#a9586bf3ae947c5809c25d40aa3091ef7":[1,0,1,0,3], -"structlivox_1_1_comm_packet.html#aae14b486474c57d0f82ed5c3c9e3e807":[1,0,1,0,9], -"structlivox_1_1_comm_packet.html#abd2c32ceba40ea285a0ca2990a7f345d":[1,0,1,0,8], -"structlivox_1_1_comm_packet.html#ad48ad41ffbcd6ae5794668ba8c02f709":[1,0,1,0,11], -"structlivox_1_1_comm_packet.html#af288b1ff799a0d0a9a1a8d0870bb5dd0":[1,0,1,0,1], -"structlivox_1_1_port_cache.html":[1,0,1,2], -"structlivox_1_1_port_cache.html#a0162595514fe1687637993072bfad504":[1,0,1,2,0], -"structlivox_1_1_port_cache.html#a2c92155bd2db69e7368a1be11c384cb8":[1,0,1,2,2], -"structlivox_1_1_port_cache.html#a307ffa61497df31d0d8b50eb3294ce28":[1,0,1,2,1], -"structlivox_1_1_port_cache.html#a7d3d6b10a8a6bb8ed81c8a67add26b1f":[1,0,1,2,3], -"structspdlog_1_1async__factory__impl.html":[1,0,2,2], -"structspdlog_1_1async__factory__impl.html#aa39b4c4216d822e1788beccde29160d9":[1,0,2,2,0], -"structspdlog_1_1details_1_1async__msg.html":[1,0,2,0,3], -"structspdlog_1_1details_1_1async__msg.html#a00cfea0e28fb046d77da1df09d6410b4":[1,0,2,0,3,15], -"structspdlog_1_1details_1_1async__msg.html#a017a4b18324181e93c1b1606b0158999":[1,0,2,0,3,13], -"structspdlog_1_1details_1_1async__msg.html#a02c7d8e28bc720dea6552042801a86c0":[1,0,2,0,3,11], -"structspdlog_1_1details_1_1async__msg.html#a0c3ac027c1ca0c1380210c32219a0370":[1,0,2,0,3,12], -"structspdlog_1_1details_1_1async__msg.html#a11f8ca9e84e22b61fca4cd7fe88db5aa":[1,0,2,0,3,16], -"structspdlog_1_1details_1_1async__msg.html#a1639729ae0bbefc841ec4b87c3369274":[1,0,2,0,3,0], -"structspdlog_1_1details_1_1async__msg.html#a2c5c21ef52bd0b7241ed6ac56f480fd2":[1,0,2,0,3,8], -"structspdlog_1_1details_1_1async__msg.html#a2e618e34ed69ba387e8e5f069543f94a":[1,0,2,0,3,3], -"structspdlog_1_1details_1_1async__msg.html#a3e2008e47f70761ff3240ab56a3be370":[1,0,2,0,3,9], -"structspdlog_1_1details_1_1async__msg.html#a466b9eb427b14c12f59afeeeb98c0e01":[1,0,2,0,3,6], -"structspdlog_1_1details_1_1async__msg.html#a74136620d40e667dbfec1050c8e74179":[1,0,2,0,3,10], -"structspdlog_1_1details_1_1async__msg.html#a963cf593d81367843c4347603a18c5f8":[1,0,2,0,3,7], -"structspdlog_1_1details_1_1async__msg.html#aa525d6ee1ca7b82755a0f39b62283638":[1,0,2,0,3,4], -"structspdlog_1_1details_1_1async__msg.html#aac1c8c51a83bae076197a384d26b8814":[1,0,2,0,3,14], -"structspdlog_1_1details_1_1async__msg.html#ab4a9c6bb231f8b467f4a9bf43820da45":[1,0,2,0,3,1], -"structspdlog_1_1details_1_1async__msg.html#ac61cf7969d3c60aa377cf4a40df6e6a7":[1,0,2,0,3,2], -"structspdlog_1_1details_1_1async__msg.html#ace5999e830cd28f7b14f804952925379":[1,0,2,0,3,5], -"structspdlog_1_1details_1_1console__mutex.html":[1,0,2,0,13], -"structspdlog_1_1details_1_1console__mutex.html#a0eca5de786748bdfe509966a54b4d32f":[1,0,2,0,13,1], -"structspdlog_1_1details_1_1console__mutex.html#a8c47cc70b6f1c3c7ddda2f919e4fae53":[1,0,2,0,13,0], -"structspdlog_1_1details_1_1console__nullmutex.html":[1,0,2,0,14], -"structspdlog_1_1details_1_1console__nullmutex.html#a61016e82a5c02f104e04b58c53f8c95d":[1,0,2,0,14,1], -"structspdlog_1_1details_1_1console__nullmutex.html#a8464e2d02b3800061339841b94400da5":[1,0,2,0,14,0], -"structspdlog_1_1details_1_1console__stderr.html":[1,0,2,0,15], -"structspdlog_1_1details_1_1console__stderr.html#a7e5e8197fac999d0e215e56a3116d1fc":[1,0,2,0,15,0], -"structspdlog_1_1details_1_1console__stdout.html":[1,0,2,0,16], -"structspdlog_1_1details_1_1console__stdout.html#a949fac14432044c2b3f5186a0693b306":[1,0,2,0,16,0], -"structspdlog_1_1details_1_1log__msg.html":[1,0,2,0,30], -"structspdlog_1_1details_1_1log__msg.html#a0aacbf01e2a67660d328fa2080d55def":[1,0,2,0,30,6], -"structspdlog_1_1details_1_1log__msg.html#a0dfc2763f8e6b73ca34e4cb7c5a9950a":[1,0,2,0,30,3], -"structspdlog_1_1details_1_1log__msg.html#a25fadb26e6ce94657af5475d4a581313":[1,0,2,0,30,11], -"structspdlog_1_1details_1_1log__msg.html#a33fd07702d73245581fccd8d0d04b82a":[1,0,2,0,30,8], -"structspdlog_1_1details_1_1log__msg.html#a4142f4d66140a1ea24053311ebea5706":[1,0,2,0,30,5], -"structspdlog_1_1details_1_1log__msg.html#a607e0014c79c1d39e28b515662ca2ca1":[1,0,2,0,30,9], -"structspdlog_1_1details_1_1log__msg.html#a87cb1c5f1ecd7415412722123e35d491":[1,0,2,0,30,4], -"structspdlog_1_1details_1_1log__msg.html#a8cbec91cdecd3cb4efe9cfa39d5d1d84":[1,0,2,0,30,7], -"structspdlog_1_1details_1_1log__msg.html#ab8474cd689276f61021bca37e1993eef":[1,0,2,0,30,10], -"structspdlog_1_1details_1_1log__msg.html#ad3ff125f04a5854bf78f6c359af5183a":[1,0,2,0,30,2], -"structspdlog_1_1details_1_1log__msg.html#aed741a89e884b8f51db4fd6364402e7a":[1,0,2,0,30,1], -"structspdlog_1_1details_1_1log__msg.html#af08273268386a97a4e4a02505f830318":[1,0,2,0,30,0], -"structspdlog_1_1details_1_1null__atomic__int.html":[1,0,2,0,35], -"structspdlog_1_1details_1_1null__atomic__int.html#a6b7a8489e34705db8d07b44f204a7c2f":[1,0,2,0,35,2], -"structspdlog_1_1details_1_1null__atomic__int.html#a75c74956220ca5cc82a4eedcd9aa854f":[1,0,2,0,35,3], -"structspdlog_1_1details_1_1null__atomic__int.html#aa9856518fa8bc88f466b2b9c17bff1b9":[1,0,2,0,35,1], -"structspdlog_1_1details_1_1null__atomic__int.html#ab433069a53cdd1402dc7b0b942d7095f":[1,0,2,0,35,4], -"structspdlog_1_1details_1_1null__atomic__int.html#af41bb35b91f4a0195ab1cd8688fc1ccc":[1,0,2,0,35,0], -"structspdlog_1_1details_1_1null__mutex.html":[1,0,2,0,36], -"structspdlog_1_1details_1_1null__mutex.html#a1e367b1adaa6305edbe163c4d2021c53":[1,0,2,0,36,1], -"structspdlog_1_1details_1_1null__mutex.html#acaccd5741a4d60756a2c23018f670b9a":[1,0,2,0,36,0], -"structspdlog_1_1details_1_1null__mutex.html#acbc27862ec43b4b0e9c8f5197174f95f":[1,0,2,0,36,2], -"structspdlog_1_1details_1_1padding__info.html":[1,0,2,0,38], -"structspdlog_1_1details_1_1padding__info.html#a2c315d1c5ccdac54957d3d9281830ea9":[1,0,2,0,38,3], -"structspdlog_1_1details_1_1padding__info.html#a2ebd71cdda444c97eba736828179b573":[1,0,2,0,38,1], -"structspdlog_1_1details_1_1padding__info.html#a51160b4df2aeb08f476d78d8af4c3851":[1,0,2,0,38,2], -"structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942e":[1,0,2,0,38,0], -"structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942ea44a15fd66c1b0c03c28c995af8b4e029":[1,0,2,0,38,0,0], -"structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942ea9c57d63e3303865488819d4b5679cf09":[1,0,2,0,38,0,1], -"structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942eab923ecb127cd5e213f9d9711b5a72fb0":[1,0,2,0,38,0,2], -"structspdlog_1_1details_1_1padding__info.html#abf18e8b1249987bf04dad4f368e6d91a":[1,0,2,0,38,5], -"structspdlog_1_1details_1_1padding__info.html#af03346e385de821038e0aec989741d14":[1,0,2,0,38,4], -"structspdlog_1_1sinks_1_1daily__filename__calculator.html":[1,0,2,1,5], -"structspdlog_1_1sinks_1_1daily__filename__calculator.html#ae8461e586d3426987a3b11a00b158db2":[1,0,2,1,5,0], -"structspdlog_1_1source__loc.html":[1,0,2,7], -"structspdlog_1_1source__loc.html#a1742569c23cc7e3a01fa6de6f43cc60f":[1,0,2,7,5], -"structspdlog_1_1source__loc.html#a31c69d0d790b00c6f7102b4f8ef826ee":[1,0,2,7,0], -"structspdlog_1_1source__loc.html#a622d48d070d0421ec91a6484923aacd2":[1,0,2,7,4], -"structspdlog_1_1source__loc.html#aa715720ba2447a5b14bf79b453a89e33":[1,0,2,7,2], -"structspdlog_1_1source__loc.html#abf62ea25b5345f1d9003a50fde8e09d8":[1,0,2,7,1], -"structspdlog_1_1source__loc.html#af67920703a5ba0a5557eb86667e09c80":[1,0,2,7,3], -"structspdlog_1_1synchronous__factory.html":[1,0,2,9], -"structspdlog_1_1synchronous__factory.html#acde09e4f9f33281ab1e663de5ef703b5":[1,0,2,9,0], -"syslog__sink_8h.html":[2,0,0,0,1,1,0,2,13], -"syslog__sink_8h.html#a2b5f25193cf4478d74cf9402a120c902":[2,0,0,0,1,1,0,2,13,4], -"syslog__sink_8h.html#a49974c7465d12f994929f70c0caeeb7c":[2,0,0,0,1,1,0,2,13,3], -"syslog__sink_8h.html#a6674644a4ab8a7579e45bd79dc107a70":[2,0,0,0,1,1,0,2,13,1], -"syslog__sink_8h.html#a83f4d6616a2fbf3473a6a979647b5139":[2,0,0,0,1,1,0,2,13,2], -"syslog__sink_8h_source.html":[2,0,0,0,1,1,0,2,13], -"thread__pool_8h.html":[2,0,0,0,1,1,0,0,13], -"thread__pool_8h.html#a22274995cf879a5d0a08d1f7513ee4fb":[2,0,0,0,1,1,0,0,13,3], -"thread__pool_8h.html#a22274995cf879a5d0a08d1f7513ee4fba1459e53d3fbaa95cebaf90860dd7a259":[2,0,0,0,1,1,0,0,13,3,2], -"thread__pool_8h.html#a22274995cf879a5d0a08d1f7513ee4fba86f354b8575a1a736775ae003fa344e5":[2,0,0,0,1,1,0,0,13,3,1], -"thread__pool_8h.html#a22274995cf879a5d0a08d1f7513ee4fbadc1d71bbb5c4d2a5e936db79ef10c19f":[2,0,0,0,1,1,0,0,13,3,0], -"thread__pool_8h.html#a9b6989c16b6150f7e4658ea2aee01bc2":[2,0,0,0,1,1,0,0,13,2], -"thread__pool_8h_source.html":[2,0,0,0,1,1,0,0,13], -"time_8h.html":[2,0,0,0,1,1,0,1,0,10], -"time_8h.html#a0875ccc6b7bc1e51c67559eac8c89d97":[2,0,0,0,1,1,0,1,0,10,2], -"time_8h.html#a0c2d874e178da493766bca4f1b898780":[2,0,0,0,1,1,0,1,0,10,1], -"time_8h.html#a3779b990626b5093f48c272f343d7bf2":[2,0,0,0,1,1,0,1,0,10,3], -"time_8h.html#a50024f1e98f3fd7af41fc631dba4db22":[2,0,0,0,1,1,0,1,0,10,5], -"time_8h.html#a86e43d2c941941591a80c4220f01cec2":[2,0,0,0,1,1,0,1,0,10,6], -"time_8h.html#aa90687ad6156f5dfa8422a0189b388e6":[2,0,0,0,1,1,0,1,0,10,4], -"time_8h.html#aaf3759998f3d75d929560c53a29da8c3":[2,0,0,0,1,1,0,1,0,10,7], -"time_8h.html#ab27295a888e64801971a06ab9f89ece0":[2,0,0,0,1,1,0,1,0,10,9], -"time_8h.html#ace84933f6d3627afab3d2bb1e390ef88":[2,0,0,0,1,1,0,1,0,10,8], -"time_8h_source.html":[2,0,0,0,1,1,0,1,0,10], -"tweakme_8h.html":[2,0,0,0,1,1,0,9], -"tweakme_8h_source.html":[2,0,0,0,1,1,0,9], -"union_status_union.html":[1,0,39], -"union_status_union.html#a75f0636ce9a1b631a2a1e4cc189312a8":[1,0,39,1], -"union_status_union.html#aee8bbc3ee1cfcd5eaab54d09b589028f":[1,0,39,0], -"unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html":[1,0,0,0,0,20,0], -"unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html#a73e951d1431fc31480ac83271d7bf821":[1,0,0,0,0,20,0,1], -"unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html#abc101e3949ceadb82b39a89c0e7ff92c":[1,0,0,0,0,20,0,0], -"version_8h.html":[2,0,0,0,1,1,0,10], -"version_8h.html#a478ac3dbba9c7722f4b5c91f128b6884":[2,0,0,0,1,1,0,10,2], -"version_8h.html#a59fb941b34bcda4ede06be812f0452e9":[2,0,0,0,1,1,0,10,1], -"version_8h.html#a85b8c2495e0596c728553bff9ea7d3d0":[2,0,0,0,1,1,0,10,0], -"version_8h.html#ad8216958bcd014d9cf2b7b2c1c4c01ac":[2,0,0,0,1,1,0,10,3], -"version_8h_source.html":[2,0,0,0,1,1,0,10], -"wincolor__sink_8h.html":[2,0,0,0,1,1,0,2,14], -"wincolor__sink_8h.html#a23305ec4888b5d6d70335c0ae86b2b05":[2,0,0,0,1,1,0,2,14,2], -"wincolor__sink_8h.html#a44bdf82d709a56703eb208cd584529e5":[2,0,0,0,1,1,0,2,14,1], -"wincolor__sink_8h.html#a93242506c736c358ca4ef36286dedb41":[2,0,0,0,1,1,0,2,14,3], -"wincolor__sink_8h.html#ad668215540fc681bd8051e6a8a0c714c":[2,0,0,0,1,1,0,2,14,4], -"wincolor__sink_8h_source.html":[2,0,0,0,1,1,0,2,14] +"structfmt_1_1v5_1_1internal_1_1make__integer__sequence.html":[2,0,0,0,0,67], +"structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4.html":[2,0,0,0,0,68], +"structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool.html":[2,0,0,0,0,69], +"structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html":[2,0,0,0,0,70], +"structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html#a0a5557a4a92010b0e997e82ea7a4bc9d":[2,0,0,0,0,70,0], +"structfmt_1_1v5_1_1internal_1_1named__arg.html":[2,0,0,0,0,71], +"structfmt_1_1v5_1_1internal_1_1named__arg.html#a3b6203a5a5308065fc90392a293fed93":[2,0,0,0,0,71,0], +"structfmt_1_1v5_1_1internal_1_1named__arg.html#a4fb6611dcd33787450c3e489dd0a380f":[2,0,0,0,0,71,1], +"structfmt_1_1v5_1_1internal_1_1named__arg__base.html":[2,0,0,0,0,72], +"structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a00b749531f5c3f26f7360080f900d5b2":[2,0,0,0,0,72,2], +"structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a593f217f9b351886a0312a816be51be1":[2,0,0,0,0,72,3], +"structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a9c38b418312ad17bcea0feafe39f22ce":[2,0,0,0,0,72,1], +"structfmt_1_1v5_1_1internal_1_1named__arg__base.html#acb59c24062e1fccd674816adce9558b6":[2,0,0,0,0,72,0], +"structfmt_1_1v5_1_1internal_1_1needs__conversion.html":[2,0,0,0,0,73], +"structfmt_1_1v5_1_1internal_1_1no__formatter__error.html":[2,0,0,0,0,74], +"structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html":[2,0,0,0,0,75], +"structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#a5f9285e4a5faac1e077ba9d24376141aad8c1eac7d2740563f5dd89c7712ce987":[2,0,0,0,0,75,1], +"structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#ab9fe0f0042a2d6a65a907a58a2a387b2":[2,0,0,0,0,75,2], +"structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#ad1e7da945143945bd5cd6934620331d9":[2,0,0,0,0,75,0], +"structfmt_1_1v5_1_1internal_1_1null.html":[2,0,0,0,0,76], +"structfmt_1_1v5_1_1internal_1_1precision__adapter.html":[2,0,0,0,0,78], +"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#a36e54d0d8eca245cbb452460373122df":[2,0,0,0,0,78,3], +"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#a428b2cb22f69719987193e9b49f4bf9d":[2,0,0,0,0,78,2], +"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aa5e2b37a4b3cafed33be6fcc69bb8d98":[2,0,0,0,0,78,1], +"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aa71ca1e30b68b25348bb19bb2e056869":[2,0,0,0,0,78,4], +"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aac38ce68b195f734a981b68497fcac77":[2,0,0,0,0,78,5], +"structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aca2d85b4bd5747fb96a880034a6e4d14":[2,0,0,0,0,78,0], +"structfmt_1_1v5_1_1internal_1_1prettify__handler.html":[2,0,0,0,0,80], +"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a218e3b77fad28065c54461d33f82c8fb":[2,0,0,0,0,80,8], +"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a44f39b58e69588b81665ce2f0fb2e8e6":[2,0,0,0,0,80,4], +"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a4af3a99f9adb0a32c74ce88f1386b986":[2,0,0,0,0,80,0], +"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a5a8b13e38107753a839767adae553ed2":[2,0,0,0,0,80,2], +"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aa0537d2fca130c630cdbc7d7e06bc4cf":[2,0,0,0,0,80,3], +"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aa4a4294911effee4c142bc68fcdd2518":[2,0,0,0,0,80,7], +"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#ab939ca54a7a5ba0a79c2232a5b3aff46":[2,0,0,0,0,80,6], +"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#ad4387eb92b404732e7cc8b4548fc9abe":[2,0,0,0,0,80,5], +"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aeefd7bd2fef0e07643645f824d347ee2":[2,0,0,0,0,80,9], +"structfmt_1_1v5_1_1internal_1_1prettify__handler.html#afeb64699e57c8b20dff3b44048fb60ac":[2,0,0,0,0,80,1], +"structfmt_1_1v5_1_1internal_1_1result__of.html":[2,0,0,0,0,83], +"structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html":[2,0,0,0,0,84], +"structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html#a75a66079d518f0f269c6be9baa8bccd9":[2,0,0,0,0,84,0], +"structfmt_1_1v5_1_1internal_1_1string__value.html":[2,0,0,0,0,88], +"structfmt_1_1v5_1_1internal_1_1string__value.html#a0138fc9479b4f37a74d3f32ff62e10bc":[2,0,0,0,0,88,0], +"structfmt_1_1v5_1_1internal_1_1string__value.html#a8e48ccdd962f1e5e0bb22d6759428f91":[2,0,0,0,0,88,1], +"structfmt_1_1v5_1_1internal_1_1test__stream.html":[2,0,0,0,0,89], +"structfmt_1_1v5_1_1internal_1_1void__.html":[2,0,0,0,0,95], +"structfmt_1_1v5_1_1internal_1_1void__.html#a574c59a1964f87565829257845c51023":[2,0,0,0,0,95,0], +"structfmt_1_1v5_1_1internal_1_1width__adapter.html":[2,0,0,0,0,96], +"structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3b64e9078c79528825385b55cbf1e34c":[2,0,0,0,0,96,4], +"structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3d13e902cc03addce9102d21294260a6":[2,0,0,0,0,96,1], +"structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3f0b73ae2cec14566f76d0f5977dc32c":[2,0,0,0,0,96,2], +"structfmt_1_1v5_1_1internal_1_1width__adapter.html#a524519bc859077ddaa45e229adafddcf":[2,0,0,0,0,96,5], +"structfmt_1_1v5_1_1internal_1_1width__adapter.html#a7216841a9338f38f757dd93a9a6f2869":[2,0,0,0,0,96,0], +"structfmt_1_1v5_1_1internal_1_1width__adapter.html#ac02c304cf7b266259fd689c7c336935d":[2,0,0,0,0,96,3], +"structfmt_1_1v5_1_1is__compile__string.html":[2,0,0,0,48], +"structfmt_1_1v5_1_1is__constructible.html":[2,0,0,0,49], +"structfmt_1_1v5_1_1is__contiguous.html":[2,0,0,0,50], +"structfmt_1_1v5_1_1is__contiguous_3_01internal_1_1basic__buffer_3_01_char_01_4_01_4.html":[2,0,0,0,51], +"structfmt_1_1v5_1_1is__contiguous_3_01std_1_1basic__string_3_01_char_01_4_01_4.html":[2,0,0,0,52], +"structfmt_1_1v5_1_1is__range.html":[2,0,0,0,53], +"structfmt_1_1v5_1_1is__range.html#a57f5c1ea66af4636e56a441636dd4fb3":[2,0,0,0,53,0], +"structfmt_1_1v5_1_1is__tuple__like.html":[2,0,0,0,54], +"structfmt_1_1v5_1_1is__tuple__like.html#a26f4317573be02eefa4019c093bfa8a8":[2,0,0,0,54,0], +"structfmt_1_1v5_1_1monostate.html":[2,0,0,0,55], +"structfmt_1_1v5_1_1printf__formatter.html":[2,0,0,0,58], +"structfmt_1_1v5_1_1printf__formatter.html#af08ea64b651a80ede60aba6ccdd6c72c":[2,0,0,0,58,1], +"structfmt_1_1v5_1_1printf__formatter.html#afbaf6d392ab5b9df30e317eadda1b82b":[2,0,0,0,58,0], +"structfmt_1_1v5_1_1rgb.html":[2,0,0,0,59], +"structfmt_1_1v5_1_1rgb.html#a09431a5576c128fa040c35f390852b14":[2,0,0,0,59,2], +"structfmt_1_1v5_1_1rgb.html#a1daecef7516f5a12c165ac69d93e34c2":[2,0,0,0,59,1], +"structfmt_1_1v5_1_1rgb.html#a62ff2701862b5856f1f44b4665665b32":[2,0,0,0,59,0], +"structfmt_1_1v5_1_1rgb.html#a8643af9dc4da837fce1b6f633b07bb34":[2,0,0,0,59,4], +"structfmt_1_1v5_1_1rgb.html#ac95ca52f2a8db235cd652813193f8ca5":[2,0,0,0,59,6], +"structfmt_1_1v5_1_1rgb.html#ae26aa08687996b7f191f73a6e4d1b626":[2,0,0,0,59,3], +"structfmt_1_1v5_1_1rgb.html#aea0614c87ac3f2fbaf8f83622c0d4b98":[2,0,0,0,59,5], +"structfmt_1_1v5_1_1wformat__args.html":[2,0,0,0,63], +"structfmt_1_1v5_1_1wformat__args.html#a831255528d4129333f3c4e7dfcd40d53":[2,0,0,0,63,0], +"structlivox_1_1_comm_packet.html":[2,0,1,0], +"structlivox_1_1_comm_packet.html#a03bb9a2b86f81a5000369d43ceed043c":[2,0,1,0,5], +"structlivox_1_1_comm_packet.html#a44673e979d10ca9f967fb6a75ffc5612":[2,0,1,0,4], +"structlivox_1_1_comm_packet.html#a54efd9bf0a8bcd7f3e54219dce99f966":[2,0,1,0,12], +"structlivox_1_1_comm_packet.html#a670bd53de47c748164570decdb70c968":[2,0,1,0,6], +"structlivox_1_1_comm_packet.html#a69485605f4d8113b178163d388defa89":[2,0,1,0,0], +"structlivox_1_1_comm_packet.html#a7ba25954258f461a079911c180da2669":[2,0,1,0,2], +"structlivox_1_1_comm_packet.html#a7d4df6086cbac3cbaecedfda76d6c11e":[2,0,1,0,7], +"structlivox_1_1_comm_packet.html#a8723e87d47e47da53e6741f82cc59faf":[2,0,1,0,10], +"structlivox_1_1_comm_packet.html#a9586bf3ae947c5809c25d40aa3091ef7":[2,0,1,0,3], +"structlivox_1_1_comm_packet.html#aae14b486474c57d0f82ed5c3c9e3e807":[2,0,1,0,9], +"structlivox_1_1_comm_packet.html#abd2c32ceba40ea285a0ca2990a7f345d":[2,0,1,0,8], +"structlivox_1_1_comm_packet.html#ad48ad41ffbcd6ae5794668ba8c02f709":[2,0,1,0,11], +"structlivox_1_1_comm_packet.html#af288b1ff799a0d0a9a1a8d0870bb5dd0":[2,0,1,0,1], +"structlivox_1_1_port_cache.html":[2,0,1,2], +"structlivox_1_1_port_cache.html#a0162595514fe1687637993072bfad504":[2,0,1,2,0], +"structlivox_1_1_port_cache.html#a2c92155bd2db69e7368a1be11c384cb8":[2,0,1,2,2], +"structlivox_1_1_port_cache.html#a307ffa61497df31d0d8b50eb3294ce28":[2,0,1,2,1], +"structlivox_1_1_port_cache.html#a7d3d6b10a8a6bb8ed81c8a67add26b1f":[2,0,1,2,3], +"structspdlog_1_1async__factory__impl.html":[2,0,2,2], +"structspdlog_1_1async__factory__impl.html#aa39b4c4216d822e1788beccde29160d9":[2,0,2,2,0], +"structspdlog_1_1details_1_1async__msg.html":[2,0,2,0,3], +"structspdlog_1_1details_1_1async__msg.html#a00cfea0e28fb046d77da1df09d6410b4":[2,0,2,0,3,15], +"structspdlog_1_1details_1_1async__msg.html#a017a4b18324181e93c1b1606b0158999":[2,0,2,0,3,13], +"structspdlog_1_1details_1_1async__msg.html#a02c7d8e28bc720dea6552042801a86c0":[2,0,2,0,3,11], +"structspdlog_1_1details_1_1async__msg.html#a0c3ac027c1ca0c1380210c32219a0370":[2,0,2,0,3,12], +"structspdlog_1_1details_1_1async__msg.html#a11f8ca9e84e22b61fca4cd7fe88db5aa":[2,0,2,0,3,16], +"structspdlog_1_1details_1_1async__msg.html#a1639729ae0bbefc841ec4b87c3369274":[2,0,2,0,3,0], +"structspdlog_1_1details_1_1async__msg.html#a2c5c21ef52bd0b7241ed6ac56f480fd2":[2,0,2,0,3,8], +"structspdlog_1_1details_1_1async__msg.html#a2e618e34ed69ba387e8e5f069543f94a":[2,0,2,0,3,3], +"structspdlog_1_1details_1_1async__msg.html#a3e2008e47f70761ff3240ab56a3be370":[2,0,2,0,3,9], +"structspdlog_1_1details_1_1async__msg.html#a466b9eb427b14c12f59afeeeb98c0e01":[2,0,2,0,3,6], +"structspdlog_1_1details_1_1async__msg.html#a74136620d40e667dbfec1050c8e74179":[2,0,2,0,3,10], +"structspdlog_1_1details_1_1async__msg.html#a963cf593d81367843c4347603a18c5f8":[2,0,2,0,3,7], +"structspdlog_1_1details_1_1async__msg.html#aa525d6ee1ca7b82755a0f39b62283638":[2,0,2,0,3,4], +"structspdlog_1_1details_1_1async__msg.html#aac1c8c51a83bae076197a384d26b8814":[2,0,2,0,3,14], +"structspdlog_1_1details_1_1async__msg.html#ab4a9c6bb231f8b467f4a9bf43820da45":[2,0,2,0,3,1], +"structspdlog_1_1details_1_1async__msg.html#ac61cf7969d3c60aa377cf4a40df6e6a7":[2,0,2,0,3,2], +"structspdlog_1_1details_1_1async__msg.html#ace5999e830cd28f7b14f804952925379":[2,0,2,0,3,5], +"structspdlog_1_1details_1_1console__mutex.html":[2,0,2,0,13], +"structspdlog_1_1details_1_1console__mutex.html#a0eca5de786748bdfe509966a54b4d32f":[2,0,2,0,13,1], +"structspdlog_1_1details_1_1console__mutex.html#a8c47cc70b6f1c3c7ddda2f919e4fae53":[2,0,2,0,13,0], +"structspdlog_1_1details_1_1console__nullmutex.html":[2,0,2,0,14], +"structspdlog_1_1details_1_1console__nullmutex.html#a61016e82a5c02f104e04b58c53f8c95d":[2,0,2,0,14,1], +"structspdlog_1_1details_1_1console__nullmutex.html#a8464e2d02b3800061339841b94400da5":[2,0,2,0,14,0], +"structspdlog_1_1details_1_1console__stderr.html":[2,0,2,0,15], +"structspdlog_1_1details_1_1console__stderr.html#a7e5e8197fac999d0e215e56a3116d1fc":[2,0,2,0,15,0], +"structspdlog_1_1details_1_1console__stdout.html":[2,0,2,0,16], +"structspdlog_1_1details_1_1console__stdout.html#a949fac14432044c2b3f5186a0693b306":[2,0,2,0,16,0], +"structspdlog_1_1details_1_1log__msg.html":[2,0,2,0,30], +"structspdlog_1_1details_1_1log__msg.html#a0aacbf01e2a67660d328fa2080d55def":[2,0,2,0,30,6], +"structspdlog_1_1details_1_1log__msg.html#a0dfc2763f8e6b73ca34e4cb7c5a9950a":[2,0,2,0,30,3], +"structspdlog_1_1details_1_1log__msg.html#a25fadb26e6ce94657af5475d4a581313":[2,0,2,0,30,11], +"structspdlog_1_1details_1_1log__msg.html#a33fd07702d73245581fccd8d0d04b82a":[2,0,2,0,30,8], +"structspdlog_1_1details_1_1log__msg.html#a4142f4d66140a1ea24053311ebea5706":[2,0,2,0,30,5], +"structspdlog_1_1details_1_1log__msg.html#a607e0014c79c1d39e28b515662ca2ca1":[2,0,2,0,30,9], +"structspdlog_1_1details_1_1log__msg.html#a87cb1c5f1ecd7415412722123e35d491":[2,0,2,0,30,4], +"structspdlog_1_1details_1_1log__msg.html#a8cbec91cdecd3cb4efe9cfa39d5d1d84":[2,0,2,0,30,7], +"structspdlog_1_1details_1_1log__msg.html#ab8474cd689276f61021bca37e1993eef":[2,0,2,0,30,10], +"structspdlog_1_1details_1_1log__msg.html#ad3ff125f04a5854bf78f6c359af5183a":[2,0,2,0,30,2], +"structspdlog_1_1details_1_1log__msg.html#aed741a89e884b8f51db4fd6364402e7a":[2,0,2,0,30,1], +"structspdlog_1_1details_1_1log__msg.html#af08273268386a97a4e4a02505f830318":[2,0,2,0,30,0], +"structspdlog_1_1details_1_1null__atomic__int.html":[2,0,2,0,35], +"structspdlog_1_1details_1_1null__atomic__int.html#a6b7a8489e34705db8d07b44f204a7c2f":[2,0,2,0,35,2], +"structspdlog_1_1details_1_1null__atomic__int.html#a75c74956220ca5cc82a4eedcd9aa854f":[2,0,2,0,35,3], +"structspdlog_1_1details_1_1null__atomic__int.html#aa9856518fa8bc88f466b2b9c17bff1b9":[2,0,2,0,35,1], +"structspdlog_1_1details_1_1null__atomic__int.html#ab433069a53cdd1402dc7b0b942d7095f":[2,0,2,0,35,4], +"structspdlog_1_1details_1_1null__atomic__int.html#af41bb35b91f4a0195ab1cd8688fc1ccc":[2,0,2,0,35,0], +"structspdlog_1_1details_1_1null__mutex.html":[2,0,2,0,36], +"structspdlog_1_1details_1_1null__mutex.html#a1e367b1adaa6305edbe163c4d2021c53":[2,0,2,0,36,1], +"structspdlog_1_1details_1_1null__mutex.html#acaccd5741a4d60756a2c23018f670b9a":[2,0,2,0,36,0], +"structspdlog_1_1details_1_1null__mutex.html#acbc27862ec43b4b0e9c8f5197174f95f":[2,0,2,0,36,2], +"structspdlog_1_1details_1_1padding__info.html":[2,0,2,0,38], +"structspdlog_1_1details_1_1padding__info.html#a2c315d1c5ccdac54957d3d9281830ea9":[2,0,2,0,38,3], +"structspdlog_1_1details_1_1padding__info.html#a2ebd71cdda444c97eba736828179b573":[2,0,2,0,38,1], +"structspdlog_1_1details_1_1padding__info.html#a51160b4df2aeb08f476d78d8af4c3851":[2,0,2,0,38,2], +"structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942e":[2,0,2,0,38,0], +"structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942ea44a15fd66c1b0c03c28c995af8b4e029":[2,0,2,0,38,0,0], +"structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942ea9c57d63e3303865488819d4b5679cf09":[2,0,2,0,38,0,1], +"structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942eab923ecb127cd5e213f9d9711b5a72fb0":[2,0,2,0,38,0,2], +"structspdlog_1_1details_1_1padding__info.html#abf18e8b1249987bf04dad4f368e6d91a":[2,0,2,0,38,5], +"structspdlog_1_1details_1_1padding__info.html#af03346e385de821038e0aec989741d14":[2,0,2,0,38,4], +"structspdlog_1_1sinks_1_1daily__filename__calculator.html":[2,0,2,1,5], +"structspdlog_1_1sinks_1_1daily__filename__calculator.html#ae8461e586d3426987a3b11a00b158db2":[2,0,2,1,5,0], +"structspdlog_1_1source__loc.html":[2,0,2,7], +"structspdlog_1_1source__loc.html#a1742569c23cc7e3a01fa6de6f43cc60f":[2,0,2,7,5], +"structspdlog_1_1source__loc.html#a31c69d0d790b00c6f7102b4f8ef826ee":[2,0,2,7,0], +"structspdlog_1_1source__loc.html#a622d48d070d0421ec91a6484923aacd2":[2,0,2,7,4], +"structspdlog_1_1source__loc.html#aa715720ba2447a5b14bf79b453a89e33":[2,0,2,7,2], +"structspdlog_1_1source__loc.html#abf62ea25b5345f1d9003a50fde8e09d8":[2,0,2,7,1], +"structspdlog_1_1source__loc.html#af67920703a5ba0a5557eb86667e09c80":[2,0,2,7,3], +"structspdlog_1_1synchronous__factory.html":[2,0,2,9], +"structspdlog_1_1synchronous__factory.html#acde09e4f9f33281ab1e663de5ef703b5":[2,0,2,9,0], +"syslog__sink_8h.html":[3,0,0,0,1,1,0,2,13], +"syslog__sink_8h.html#a2b5f25193cf4478d74cf9402a120c902":[3,0,0,0,1,1,0,2,13,4], +"syslog__sink_8h.html#a49974c7465d12f994929f70c0caeeb7c":[3,0,0,0,1,1,0,2,13,3], +"syslog__sink_8h.html#a6674644a4ab8a7579e45bd79dc107a70":[3,0,0,0,1,1,0,2,13,1], +"syslog__sink_8h.html#a83f4d6616a2fbf3473a6a979647b5139":[3,0,0,0,1,1,0,2,13,2], +"syslog__sink_8h_source.html":[3,0,0,0,1,1,0,2,13], +"thread__pool_8h.html":[3,0,0,0,1,1,0,0,13], +"thread__pool_8h.html#a22274995cf879a5d0a08d1f7513ee4fb":[3,0,0,0,1,1,0,0,13,3], +"thread__pool_8h.html#a22274995cf879a5d0a08d1f7513ee4fba1459e53d3fbaa95cebaf90860dd7a259":[3,0,0,0,1,1,0,0,13,3,2], +"thread__pool_8h.html#a22274995cf879a5d0a08d1f7513ee4fba86f354b8575a1a736775ae003fa344e5":[3,0,0,0,1,1,0,0,13,3,1], +"thread__pool_8h.html#a22274995cf879a5d0a08d1f7513ee4fbadc1d71bbb5c4d2a5e936db79ef10c19f":[3,0,0,0,1,1,0,0,13,3,0], +"thread__pool_8h.html#a9b6989c16b6150f7e4658ea2aee01bc2":[3,0,0,0,1,1,0,0,13,2], +"thread__pool_8h_source.html":[3,0,0,0,1,1,0,0,13], +"time_8h.html":[3,0,0,0,1,1,0,1,0,10], +"time_8h.html#a0875ccc6b7bc1e51c67559eac8c89d97":[3,0,0,0,1,1,0,1,0,10,2], +"time_8h.html#a0c2d874e178da493766bca4f1b898780":[3,0,0,0,1,1,0,1,0,10,1], +"time_8h.html#a3779b990626b5093f48c272f343d7bf2":[3,0,0,0,1,1,0,1,0,10,3], +"time_8h.html#a50024f1e98f3fd7af41fc631dba4db22":[3,0,0,0,1,1,0,1,0,10,5], +"time_8h.html#a86e43d2c941941591a80c4220f01cec2":[3,0,0,0,1,1,0,1,0,10,6], +"time_8h.html#aa90687ad6156f5dfa8422a0189b388e6":[3,0,0,0,1,1,0,1,0,10,4], +"time_8h.html#aaf3759998f3d75d929560c53a29da8c3":[3,0,0,0,1,1,0,1,0,10,7], +"time_8h.html#ab27295a888e64801971a06ab9f89ece0":[3,0,0,0,1,1,0,1,0,10,9], +"time_8h.html#ace84933f6d3627afab3d2bb1e390ef88":[3,0,0,0,1,1,0,1,0,10,8], +"time_8h_source.html":[3,0,0,0,1,1,0,1,0,10], +"tweakme_8h.html":[3,0,0,0,1,1,0,9], +"tweakme_8h_source.html":[3,0,0,0,1,1,0,9], +"union_status_union.html":[2,0,39], +"union_status_union.html#a75f0636ce9a1b631a2a1e4cc189312a8":[2,0,39,1], +"union_status_union.html#aee8bbc3ee1cfcd5eaab54d09b589028f":[2,0,39,0], +"unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html":[2,0,0,0,0,20,0], +"unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html#a73e951d1431fc31480ac83271d7bf821":[2,0,0,0,0,20,0,1], +"unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html#abc101e3949ceadb82b39a89c0e7ff92c":[2,0,0,0,0,20,0,0], +"version_8h.html":[3,0,0,0,1,1,0,10], +"version_8h.html#a478ac3dbba9c7722f4b5c91f128b6884":[3,0,0,0,1,1,0,10,2], +"version_8h.html#a59fb941b34bcda4ede06be812f0452e9":[3,0,0,0,1,1,0,10,1], +"version_8h.html#a85b8c2495e0596c728553bff9ea7d3d0":[3,0,0,0,1,1,0,10,0], +"version_8h.html#ad8216958bcd014d9cf2b7b2c1c4c01ac":[3,0,0,0,1,1,0,10,3], +"version_8h_source.html":[3,0,0,0,1,1,0,10], +"wincolor__sink_8h.html":[3,0,0,0,1,1,0,2,14], +"wincolor__sink_8h.html#a23305ec4888b5d6d70335c0ae86b2b05":[3,0,0,0,1,1,0,2,14,2], +"wincolor__sink_8h.html#a44bdf82d709a56703eb208cd584529e5":[3,0,0,0,1,1,0,2,14,1], +"wincolor__sink_8h.html#a93242506c736c358ca4ef36286dedb41":[3,0,0,0,1,1,0,2,14,3], +"wincolor__sink_8h.html#ad668215540fc681bd8051e6a8a0c714c":[3,0,0,0,1,1,0,2,14,4], +"wincolor__sink_8h_source.html":[3,0,0,0,1,1,0,2,14] }; diff --git a/docs/navtreeindex2.js b/docs/navtreeindex2.js index dc9883b..588061a 100644 --- a/docs/navtreeindex2.js +++ b/docs/navtreeindex2.js @@ -1,253 +1,253 @@ var NAVTREEINDEX2 = { -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a9722e33a6fdfb563b8db59829f133711":[1,0,0,0,0,93,5], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a9b0fdd9f2efbd8d05a5184bf12b375fe":[1,0,0,0,0,93,1], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#aa704255e4ff2778a7149a7d2cf687e5f":[1,0,0,0,0,93,6], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#aa891dd373534efdbf8a03c9b1b5a77fa":[1,0,0,0,0,93,4], -"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#acfec8964ca97b0ea4a08d2efff4ba6ba":[1,0,0,0,0,93,3], -"classfmt_1_1v5_1_1internal_1_1value.html":[1,0,0,0,0,94], -"classfmt_1_1v5_1_1internal_1_1value.html#a00ca42d8559d880b30ecd06f0aaa78fa":[1,0,0,0,0,94,7], -"classfmt_1_1v5_1_1internal_1_1value.html#a09d5b4b61a7adc6403a607e29be5555e":[1,0,0,0,0,94,16], -"classfmt_1_1v5_1_1internal_1_1value.html#a0c125f0f450b4afb7f90759397a65086":[1,0,0,0,0,94,18], -"classfmt_1_1v5_1_1internal_1_1value.html#a104a4d2d5dd02f9dab13c911f7e87cb7":[1,0,0,0,0,94,5], -"classfmt_1_1v5_1_1internal_1_1value.html#a2f3ea08c07ddaf1679366b007f54d728":[1,0,0,0,0,94,14], -"classfmt_1_1v5_1_1internal_1_1value.html#a31afcc8ff22723835e02b0ada26c1976":[1,0,0,0,0,94,24], -"classfmt_1_1v5_1_1internal_1_1value.html#a3a77ac045f2ccd3165589946f822513b":[1,0,0,0,0,94,11], -"classfmt_1_1v5_1_1internal_1_1value.html#a3f87c938b3db0f2f31e6f4fa517d85eb":[1,0,0,0,0,94,2], -"classfmt_1_1v5_1_1internal_1_1value.html#a4617949bd5f9aeb22e51ab3c278aabaa":[1,0,0,0,0,94,6], -"classfmt_1_1v5_1_1internal_1_1value.html#a6f80a37fd412337e895740ed124e66c3":[1,0,0,0,0,94,23], -"classfmt_1_1v5_1_1internal_1_1value.html#a77d470cccc7a2fa754a1abce3daed5d6":[1,0,0,0,0,94,10], -"classfmt_1_1v5_1_1internal_1_1value.html#a8a1749aa5371e7d0c25ca2f99edf6b47":[1,0,0,0,0,94,8], -"classfmt_1_1v5_1_1internal_1_1value.html#a96fdd21add279317263cff9e835c5a97":[1,0,0,0,0,94,20], -"classfmt_1_1v5_1_1internal_1_1value.html#a98a35538aba4deefa8e5f640f1d96648":[1,0,0,0,0,94,13], -"classfmt_1_1v5_1_1internal_1_1value.html#a9c1c70838798225c536727bc6bf125bc":[1,0,0,0,0,94,3], -"classfmt_1_1v5_1_1internal_1_1value.html#aa69a8daba75dfea365755c87b16c1760":[1,0,0,0,0,94,19], -"classfmt_1_1v5_1_1internal_1_1value.html#aaa7bee65d796b1212dc35e2b9cc721d3":[1,0,0,0,0,94,21], -"classfmt_1_1v5_1_1internal_1_1value.html#aae5d0d1372c0bfcd51c929bdc70fe139":[1,0,0,0,0,94,4], -"classfmt_1_1v5_1_1internal_1_1value.html#abe1bc7d3e37d07c320314586f0156bd4":[1,0,0,0,0,94,0], -"classfmt_1_1v5_1_1internal_1_1value.html#abf10ba105cb5ebb65156465cf9126857":[1,0,0,0,0,94,17], -"classfmt_1_1v5_1_1internal_1_1value.html#ac7edf7c1b544ebdf7b355a0b50a26d51":[1,0,0,0,0,94,12], -"classfmt_1_1v5_1_1internal_1_1value.html#ad27b872dc092249a541f517f5f2157d7":[1,0,0,0,0,94,1], -"classfmt_1_1v5_1_1internal_1_1value.html#ad93ad99163bd8ebc4a985298dace4a56":[1,0,0,0,0,94,9], -"classfmt_1_1v5_1_1internal_1_1value.html#ae1b4342c0188c4f9a366e0223a4b0836":[1,0,0,0,0,94,15], -"classfmt_1_1v5_1_1internal_1_1value.html#aea22330ef411f765099b2962090e56d4":[1,0,0,0,0,94,22], -"classfmt_1_1v5_1_1internal_1_1width__checker.html":[1,0,0,0,0,97], -"classfmt_1_1v5_1_1internal_1_1width__checker.html#a5cbe5b8226dc90636572d2e0d2b30c01":[1,0,0,0,0,97,2], -"classfmt_1_1v5_1_1internal_1_1width__checker.html#a63630366e25e4dec187bc186976bf0d3":[1,0,0,0,0,97,0], -"classfmt_1_1v5_1_1internal_1_1width__checker.html#a69ee4d46cb35d94fdc14aeb469781957":[1,0,0,0,0,97,1], -"classfmt_1_1v5_1_1output__range.html":[1,0,0,0,56], -"classfmt_1_1v5_1_1output__range.html#a001ad2356c56ce8aa89a3e89487ce8d8":[1,0,0,0,56,0], -"classfmt_1_1v5_1_1output__range.html#a1c35641258830babeb553b03a6bc802b":[1,0,0,0,56,2], -"classfmt_1_1v5_1_1output__range.html#acd03d46c6de53cdc7dccc5890a9df377":[1,0,0,0,56,1], -"classfmt_1_1v5_1_1output__range.html#ad67186390eb4062ee39779478d554b98":[1,0,0,0,56,3], -"classfmt_1_1v5_1_1printf__arg__formatter.html":[1,0,0,0,57], -"classfmt_1_1v5_1_1printf__arg__formatter.html#a1699fc4ff1987dccc2a7958ff3beaf59":[1,0,0,0,57,1], -"classfmt_1_1v5_1_1printf__arg__formatter.html#a22240208526549d9d65250ee2d82c118":[1,0,0,0,57,2], -"classfmt_1_1v5_1_1printf__arg__formatter.html#a3cbb7f33e396d8a644a118e4434c5b81":[1,0,0,0,57,5], -"classfmt_1_1v5_1_1printf__arg__formatter.html#a417fd64792fc9869670cc1abbbdb79d0":[1,0,0,0,57,4], -"classfmt_1_1v5_1_1printf__arg__formatter.html#a74110f935913bf148cac1b9c982ee630":[1,0,0,0,57,0], -"classfmt_1_1v5_1_1printf__arg__formatter.html#a7a7f1491adb37d14a9083a6bba1cb3c8":[1,0,0,0,57,9], -"classfmt_1_1v5_1_1printf__arg__formatter.html#a8365e0442d0fece054b41d7e2ae7b13f":[1,0,0,0,57,8], -"classfmt_1_1v5_1_1printf__arg__formatter.html#a9060b8f9cef005edf81af5d70d162668":[1,0,0,0,57,6], -"classfmt_1_1v5_1_1printf__arg__formatter.html#ae47a63e9e03c8a3470c0ada1dc351837":[1,0,0,0,57,7], -"classfmt_1_1v5_1_1printf__arg__formatter.html#af46ac008c63fe91ec5e60ba5ed9fb3ba":[1,0,0,0,57,3], -"classfmt_1_1v5_1_1system__error.html":[1,0,0,0,60], -"classfmt_1_1v5_1_1system__error.html#a0d2342ce3d391ad12df4aa7509bd9ac7":[1,0,0,0,60,2], -"classfmt_1_1v5_1_1system__error.html#ac761354e3eb707044395fd140020e796":[1,0,0,0,60,3], -"classfmt_1_1v5_1_1system__error.html#ae0c11bcd7a213bd3cd259393cd73fc45":[1,0,0,0,60,1], -"classfmt_1_1v5_1_1system__error.html#afab23543db82d4cebb222ac5582c29f4":[1,0,0,0,60,0], -"classfmt_1_1v5_1_1text__style.html":[1,0,0,0,61], -"classfmt_1_1v5_1_1text__style.html#a1f53d64ef2910e2e461777bf78077c59":[1,0,0,0,61,10], -"classfmt_1_1v5_1_1text__style.html#a5324d97346072124428bfdad11462bea":[1,0,0,0,61,1], -"classfmt_1_1v5_1_1text__style.html#a55feba93f4dbd6d9d8f6f357dc4b2860":[1,0,0,0,61,0], -"classfmt_1_1v5_1_1text__style.html#a72bef1c6e5993308ca69290a262468b0":[1,0,0,0,61,9], -"classfmt_1_1v5_1_1text__style.html#a75f3f3ccdf9ea0a441113237e00bae2f":[1,0,0,0,61,2], -"classfmt_1_1v5_1_1text__style.html#a8f82651b0a8ae904452f333054ea1a64":[1,0,0,0,61,11], -"classfmt_1_1v5_1_1text__style.html#a951ddffc7cc6b47c9bd8238b9bc45d75":[1,0,0,0,61,3], -"classfmt_1_1v5_1_1text__style.html#aab30ce069feb1260eb2f51b92b3c61c4":[1,0,0,0,61,8], -"classfmt_1_1v5_1_1text__style.html#ab8ce8b037913d539e5a753d513297f14":[1,0,0,0,61,12], -"classfmt_1_1v5_1_1text__style.html#acb1535c94d8cc4d69b19c4170a78f7d0":[1,0,0,0,61,7], -"classfmt_1_1v5_1_1text__style.html#ae42bc013e5bdb08527611dc444844f3e":[1,0,0,0,61,5], -"classfmt_1_1v5_1_1text__style.html#ae8b438a20e753fcfc1c912d3a4bdb1c9":[1,0,0,0,61,4], -"classfmt_1_1v5_1_1text__style.html#af39caf143ad60465481521f0147c1dbf":[1,0,0,0,61,6], -"classfmt_1_1v5_1_1u8string__view.html":[1,0,0,0,62], -"classfmt_1_1v5_1_1u8string__view.html#a7d8fc1c8138683c75574261561e78652":[1,0,0,0,62,2], -"classfmt_1_1v5_1_1u8string__view.html#aa0aaed9e4977fa2cbec789178ea3b694":[1,0,0,0,62,0], -"classfmt_1_1v5_1_1u8string__view.html#ace3a1b7f6bca7b364411dd7bca8eb666":[1,0,0,0,62,1], -"classlivox_1_1_comm_port.html":[1,0,1,1], -"classlivox_1_1_comm_port.html#a0747279cfee5e49d6abe399adbe81e2a":[1,0,1,1,5], -"classlivox_1_1_comm_port.html#a12578479c9799e0e1019e5698841072b":[1,0,1,1,1], -"classlivox_1_1_comm_port.html#a5a159a37a2b90e3e99a8a2258494c374":[1,0,1,1,0], -"classlivox_1_1_comm_port.html#a921c62e412bfa973effc62d2592eb2ac":[1,0,1,1,3], -"classlivox_1_1_comm_port.html#aa06a75c5c7801967271b8925bd734fd1":[1,0,1,1,4], -"classlivox_1_1_comm_port.html#ab520a4434c8e19868cf3bab6c229ab7d":[1,0,1,1,6], -"classlivox_1_1_comm_port.html#abb44afd20231d53d38f477e4b5861711":[1,0,1,1,2], -"classlivox_1_1_protocol.html":[1,0,1,3], -"classlivox_1_1_protocol.html#a0327374f8c1e7008805b8d87732fe4b8":[1,0,1,3,7], -"classlivox_1_1_protocol.html#a52573a66bbd0f40a624e23ec76465045":[1,0,1,3,6], -"classlivox_1_1_protocol.html#a66113a1c1b0f523f05411ef3fab97808":[1,0,1,3,5], -"classlivox_1_1_protocol.html#a8a3949d5d8b4ed37a895cc3a53569200":[1,0,1,3,3], -"classlivox_1_1_protocol.html#acaf1a7dbf16f2deee49ded19e17a998a":[1,0,1,3,2], -"classlivox_1_1_protocol.html#ad44a13b2298df2c134bb41537a2d8706":[1,0,1,3,0], -"classlivox_1_1_protocol.html#af29b4a6d2966e31e19b7f640414ebeb7":[1,0,1,3,1], -"classlivox_1_1_protocol.html#afc5dbf8f0b6e52622fd5c6185db18aba":[1,0,1,3,4], -"classspdlog_1_1async__logger.html":[1,0,2,3], -"classspdlog_1_1async__logger.html#a24a37552c3339c7b129a38a2c4702689":[1,0,2,3,3], -"classspdlog_1_1async__logger.html#a2a74bf8d8d850ea760396ba8ae55d552":[1,0,2,3,0], -"classspdlog_1_1async__logger.html#a50a7de9842c326ab5b99cbcc851d9c60":[1,0,2,3,4], -"classspdlog_1_1async__logger.html#a67ce2a7de422d11203d66f1f6da4be03":[1,0,2,3,8], -"classspdlog_1_1async__logger.html#a99dcf454b74db04fe3300c68baff4d79":[1,0,2,3,2], -"classspdlog_1_1async__logger.html#ad42c05a733917cc7e7b3d9d2ad10a47f":[1,0,2,3,1], -"classspdlog_1_1async__logger.html#ae7eeca32af4d650bc1e2dd06122d0224":[1,0,2,3,6], -"classspdlog_1_1async__logger.html#aef60bc96b78ff98a471dc08977d4cb5c":[1,0,2,3,5], -"classspdlog_1_1async__logger.html#aefd367c3266773bfe756d34150705329":[1,0,2,3,7], -"classspdlog_1_1details_1_1_a__formatter.html":[1,0,2,0,1], -"classspdlog_1_1details_1_1_a__formatter.html#a4df40ed70fbad25284e8479aefa680bb":[1,0,2,0,1,1], -"classspdlog_1_1details_1_1_a__formatter.html#aaa0b668428ff16e07a5258575b711955":[1,0,2,0,1,0], -"classspdlog_1_1details_1_1_b__formatter.html":[1,0,2,0,5], -"classspdlog_1_1details_1_1_b__formatter.html#a2dde180e941a7b44a65b7967fec4d359":[1,0,2,0,5,0], -"classspdlog_1_1details_1_1_b__formatter.html#a5f17328272b26d5d107e59bad150fac8":[1,0,2,0,5,1], -"classspdlog_1_1details_1_1_c__formatter.html":[1,0,2,0,8], -"classspdlog_1_1details_1_1_c__formatter.html#a241d6298edc054937cf40c0d7ed90ae2":[1,0,2,0,8,1], -"classspdlog_1_1details_1_1_c__formatter.html#a8b9038a7449cb208fd2a6b1a886b7be8":[1,0,2,0,8,0], -"classspdlog_1_1details_1_1_d__formatter.html":[1,0,2,0,17], -"classspdlog_1_1details_1_1_d__formatter.html#a065cf427de180dfee0b6abb642a78cb0":[1,0,2,0,17,1], -"classspdlog_1_1details_1_1_d__formatter.html#a2df2757737cfb0580fcf50edd83efd02":[1,0,2,0,17,0], -"classspdlog_1_1details_1_1_e__formatter.html":[1,0,2,0,19], -"classspdlog_1_1details_1_1_e__formatter.html#a133d1ba939b743041a036eb16c2c524a":[1,0,2,0,19,1], -"classspdlog_1_1details_1_1_e__formatter.html#a6965aa5fe03beb42c5b360b56ca4dc54":[1,0,2,0,19,0], -"classspdlog_1_1details_1_1_f__formatter.html":[1,0,2,0,22], -"classspdlog_1_1details_1_1_f__formatter.html#a1ff6475bf808c73612748c55fe3883c2":[1,0,2,0,22,1], -"classspdlog_1_1details_1_1_f__formatter.html#a932cd91a68880bfedd402ebf934ccd77":[1,0,2,0,22,0], -"classspdlog_1_1details_1_1_h__formatter.html":[1,0,2,0,26], -"classspdlog_1_1details_1_1_h__formatter.html#a46e166ed26e90bfe5bbc6b5f83040bef":[1,0,2,0,26,1], -"classspdlog_1_1details_1_1_h__formatter.html#a4cbf3915e24d7588af53b06a1233ea56":[1,0,2,0,26,0], -"classspdlog_1_1details_1_1_i__formatter.html":[1,0,2,0,28], -"classspdlog_1_1details_1_1_i__formatter.html#a33599ccfecedd0d409c91792ffa82fbc":[1,0,2,0,28,0], -"classspdlog_1_1details_1_1_i__formatter.html#ab9d6511acc53b2296ecce30f715779c7":[1,0,2,0,28,1], -"classspdlog_1_1details_1_1_m__formatter.html":[1,0,2,0,32], -"classspdlog_1_1details_1_1_m__formatter.html#a6d27aa27b0ede646701b4b5138afe4cd":[1,0,2,0,32,0], -"classspdlog_1_1details_1_1_m__formatter.html#ab6c0f013ea2c54cceb4561033d59ca0c":[1,0,2,0,32,1], -"classspdlog_1_1details_1_1_r__formatter.html":[1,0,2,0,41], -"classspdlog_1_1details_1_1_r__formatter.html#a1fe66a7fbf57ef47faa59e82132e9051":[1,0,2,0,41,1], -"classspdlog_1_1details_1_1_r__formatter.html#a712095b0b26244817d78963d98a9a6fb":[1,0,2,0,41,0], -"classspdlog_1_1details_1_1_s__formatter.html":[1,0,2,0,44], -"classspdlog_1_1details_1_1_s__formatter.html#a8e9ddad945ae1f9bfc79adb0286723a6":[1,0,2,0,44,0], -"classspdlog_1_1details_1_1_s__formatter.html#aec1945b20074132e9ebe7d94357081fa":[1,0,2,0,44,1], -"classspdlog_1_1details_1_1_t__formatter.html":[1,0,2,0,51], -"classspdlog_1_1details_1_1_t__formatter.html#a338d37f02f3a9a4376acc3d4b655eda3":[1,0,2,0,51,1], -"classspdlog_1_1details_1_1_t__formatter.html#affd0c9557cd9649339f10abd943608ff":[1,0,2,0,51,0], -"classspdlog_1_1details_1_1_y__formatter.html":[1,0,2,0,55], -"classspdlog_1_1details_1_1_y__formatter.html#a0a05d2970b7558f0e24336fdc05e504a":[1,0,2,0,55,1], -"classspdlog_1_1details_1_1_y__formatter.html#ac720d56ae2b7f315bcb788505f6f0b32":[1,0,2,0,55,0], -"classspdlog_1_1details_1_1a__formatter.html":[1,0,2,0,0], -"classspdlog_1_1details_1_1a__formatter.html#a0dbb4322f91afd22b82fc0c0b20a35db":[1,0,2,0,0,1], -"classspdlog_1_1details_1_1a__formatter.html#a48d1f1eba77e826b69ff1e6eea389b63":[1,0,2,0,0,0], -"classspdlog_1_1details_1_1aggregate__formatter.html":[1,0,2,0,2], -"classspdlog_1_1details_1_1aggregate__formatter.html#a068c157540411ecb4932860266effb82":[1,0,2,0,2,0], -"classspdlog_1_1details_1_1aggregate__formatter.html#a19bcf6f721f9a3b2758a59293305987d":[1,0,2,0,2,2], -"classspdlog_1_1details_1_1aggregate__formatter.html#aa4a450cafac2ed6ef1fdc6dbda962ac6":[1,0,2,0,2,1], -"classspdlog_1_1details_1_1b__formatter.html":[1,0,2,0,4], -"classspdlog_1_1details_1_1b__formatter.html#a08418409ea0e59ea9b79d27974e30824":[1,0,2,0,4,0], -"classspdlog_1_1details_1_1b__formatter.html#a3943edd9e27eb217e4871abf06b91df5":[1,0,2,0,4,1], -"classspdlog_1_1details_1_1bytes__range.html":[1,0,2,0,6], -"classspdlog_1_1details_1_1bytes__range.html#a513faba7dd574f7a32f00504739d6032":[1,0,2,0,6,2], -"classspdlog_1_1details_1_1bytes__range.html#aa623616735396b0422737b9b62bdd46e":[1,0,2,0,6,0], -"classspdlog_1_1details_1_1bytes__range.html#abe7813dcd59c848fd56b0c33e5bbc134":[1,0,2,0,6,1], -"classspdlog_1_1details_1_1c__formatter.html":[1,0,2,0,7], -"classspdlog_1_1details_1_1c__formatter.html#a1b09d9e9e1d84b29fc2fb8d37fa07d57":[1,0,2,0,7,1], -"classspdlog_1_1details_1_1c__formatter.html#aa16ea42a3648637a5223ed85d711aa50":[1,0,2,0,7,0], -"classspdlog_1_1details_1_1ch__formatter.html":[1,0,2,0,9], -"classspdlog_1_1details_1_1ch__formatter.html#a0ea7f88fed22209cce188238bf103a35":[1,0,2,0,9,0], -"classspdlog_1_1details_1_1ch__formatter.html#a11cf092c89041ff6186efb4324227cdb":[1,0,2,0,9,1], -"classspdlog_1_1details_1_1circular__q.html":[1,0,2,0,10], -"classspdlog_1_1details_1_1circular__q.html#a2f683dc45eca25efad9e415cf73c7ea0":[1,0,2,0,10,4], -"classspdlog_1_1details_1_1circular__q.html#a50926d98e20ee48b70d4b66d99895e97":[1,0,2,0,10,0], -"classspdlog_1_1details_1_1circular__q.html#a6e05a29447127eadabf01175a6b3ddc0":[1,0,2,0,10,5], -"classspdlog_1_1details_1_1circular__q.html#a6f9e90a9957c230376a463b20f909191":[1,0,2,0,10,3], -"classspdlog_1_1details_1_1circular__q.html#aaaab548bb6f5dd362458d6b044e0e950":[1,0,2,0,10,6], -"classspdlog_1_1details_1_1circular__q.html#ab0aae072dd38824fee65ed9d48568c2f":[1,0,2,0,10,1], -"classspdlog_1_1details_1_1circular__q.html#ae27eea7ecb58860f4471f473e02270f8":[1,0,2,0,10,2], -"classspdlog_1_1details_1_1color__start__formatter.html":[1,0,2,0,11], -"classspdlog_1_1details_1_1color__start__formatter.html#a5222b004ac21f1b4db466400a324ad21":[1,0,2,0,11,0], -"classspdlog_1_1details_1_1color__start__formatter.html#af91a839656b9128edbc7f0d6ea297d3f":[1,0,2,0,11,1], -"classspdlog_1_1details_1_1color__stop__formatter.html":[1,0,2,0,12], -"classspdlog_1_1details_1_1color__stop__formatter.html#ac59e274cc3d37db75f0e7ea3dc484209":[1,0,2,0,12,1], -"classspdlog_1_1details_1_1color__stop__formatter.html#ae91bec8b6dec2965b7406026925d1cdc":[1,0,2,0,12,0], -"classspdlog_1_1details_1_1d__formatter.html":[1,0,2,0,18], -"classspdlog_1_1details_1_1d__formatter.html#aa5c9a67121b2ab9395b3bed60f5e56a8":[1,0,2,0,18,0], -"classspdlog_1_1details_1_1d__formatter.html#ad1c7decfd7bfa7ecd6fd105e2d74bed4":[1,0,2,0,18,1], -"classspdlog_1_1details_1_1e__formatter.html":[1,0,2,0,20], -"classspdlog_1_1details_1_1e__formatter.html#a75148ba81c9eac2025b6c405acd51ea3":[1,0,2,0,20,0], -"classspdlog_1_1details_1_1e__formatter.html#a931a5482cce50c580dd4e570fd27e976":[1,0,2,0,20,1], -"classspdlog_1_1details_1_1f__formatter.html":[1,0,2,0,21], -"classspdlog_1_1details_1_1f__formatter.html#a7e6998176a0bace8105a555ff56fce73":[1,0,2,0,21,0], -"classspdlog_1_1details_1_1f__formatter.html#ab3af92f69f6a1b4a70189f4e2a7ccbba":[1,0,2,0,21,1], -"classspdlog_1_1details_1_1file__helper.html":[1,0,2,0,23], -"classspdlog_1_1details_1_1file__helper.html#a1a75f29ec0c13d9fbc269bcd8378b18b":[1,0,2,0,23,6], -"classspdlog_1_1details_1_1file__helper.html#a21c688da7f241c53871b462c3a5c2c94":[1,0,2,0,23,9], -"classspdlog_1_1details_1_1file__helper.html#a22be952a421d866566eed3a5ce201144":[1,0,2,0,23,14], -"classspdlog_1_1details_1_1file__helper.html#a28d87e3f42c52a12c95af0558aca66f2":[1,0,2,0,23,11], -"classspdlog_1_1details_1_1file__helper.html#a51eb58a2d46f1896f3ab7b9d323d97ae":[1,0,2,0,23,12], -"classspdlog_1_1details_1_1file__helper.html#a6a6d7a75014ae880857b4fe4fd01dc7a":[1,0,2,0,23,3], -"classspdlog_1_1details_1_1file__helper.html#a76610058a1769b25bd6ed52a1443b552":[1,0,2,0,23,5], -"classspdlog_1_1details_1_1file__helper.html#a7c7314360e404efa02326feb7aa98442":[1,0,2,0,23,8], -"classspdlog_1_1details_1_1file__helper.html#a8612066fd098080cc60e3aefed6a6085":[1,0,2,0,23,7], -"classspdlog_1_1details_1_1file__helper.html#a8c5f69588e8a54f436c3565317c233bd":[1,0,2,0,23,4], -"classspdlog_1_1details_1_1file__helper.html#aa11a5129c9d7492638a68d849d66d47d":[1,0,2,0,23,0], -"classspdlog_1_1details_1_1file__helper.html#aad84ef5f999c2721a0a8ad36ce641e8c":[1,0,2,0,23,2], -"classspdlog_1_1details_1_1file__helper.html#ab68b7720555f7656a8f387f8e0dcb37d":[1,0,2,0,23,1], -"classspdlog_1_1details_1_1file__helper.html#ae945d9701134218c2d0558958e9d1cf2":[1,0,2,0,23,10], -"classspdlog_1_1details_1_1file__helper.html#aea72ea8d655bb11f19dbe48477e6c8b3":[1,0,2,0,23,13], -"classspdlog_1_1details_1_1flag__formatter.html":[1,0,2,0,24], -"classspdlog_1_1details_1_1flag__formatter.html#a104f93112896f70c5dedf970240ef12b":[1,0,2,0,24,2], -"classspdlog_1_1details_1_1flag__formatter.html#a19fcada419b07c4c0db0080b0fbf8b46":[1,0,2,0,24,1], -"classspdlog_1_1details_1_1flag__formatter.html#a33fb3e42a4c8200cceb833d92b53fb67":[1,0,2,0,24,3], -"classspdlog_1_1details_1_1flag__formatter.html#a7f775ab8ad4027546c3490f2f299bf43":[1,0,2,0,24,0], -"classspdlog_1_1details_1_1flag__formatter.html#a80f1166212df85f665d87f2826240567":[1,0,2,0,24,4], -"classspdlog_1_1details_1_1full__formatter.html":[1,0,2,0,25], -"classspdlog_1_1details_1_1full__formatter.html#a11da1d2ec8378841d228df071915da35":[1,0,2,0,25,1], -"classspdlog_1_1details_1_1full__formatter.html#ac0212ed0f1efbb64726ddd73b62b20a0":[1,0,2,0,25,0], -"classspdlog_1_1details_1_1i__formatter.html":[1,0,2,0,27], -"classspdlog_1_1details_1_1i__formatter.html#a69d03626d465771f9b6f8ef302114b9c":[1,0,2,0,27,0], -"classspdlog_1_1details_1_1i__formatter.html#aacaecd1c3fd6827287055d2f607f10ed":[1,0,2,0,27,1], -"classspdlog_1_1details_1_1level__formatter.html":[1,0,2,0,29], -"classspdlog_1_1details_1_1level__formatter.html#a36967967164ade9221ad216e0b617749":[1,0,2,0,29,1], -"classspdlog_1_1details_1_1level__formatter.html#a76ae7447054b8943fede15d0b64f8603":[1,0,2,0,29,0], -"classspdlog_1_1details_1_1m__formatter.html":[1,0,2,0,31], -"classspdlog_1_1details_1_1m__formatter.html#a218eb07d23a3b69557b9347eae493dc3":[1,0,2,0,31,0], -"classspdlog_1_1details_1_1m__formatter.html#a507ce5bc00de736d28d93e5d7307589b":[1,0,2,0,31,1], -"classspdlog_1_1details_1_1mpmc__blocking__queue.html":[1,0,2,0,33], -"classspdlog_1_1details_1_1mpmc__blocking__queue.html#a1280489c9035a705f50f04905a5ed394":[1,0,2,0,33,4], -"classspdlog_1_1details_1_1mpmc__blocking__queue.html#a15e3d12dff953034d5aad5590b8282cd":[1,0,2,0,33,5], -"classspdlog_1_1details_1_1mpmc__blocking__queue.html#a3795640b651fcb2de66a21ef2bc221f1":[1,0,2,0,33,3], -"classspdlog_1_1details_1_1mpmc__blocking__queue.html#abb22a6f25c5fd96af5b163dc93eec397":[1,0,2,0,33,0], -"classspdlog_1_1details_1_1mpmc__blocking__queue.html#ace609561c8f631202988ec49f95422fa":[1,0,2,0,33,1], -"classspdlog_1_1details_1_1mpmc__blocking__queue.html#af4015ea1657b393755f34d76c97a28d1":[1,0,2,0,33,2], -"classspdlog_1_1details_1_1name__formatter.html":[1,0,2,0,34], -"classspdlog_1_1details_1_1name__formatter.html#a03bf01931018c5c2cd9dcbff64233d6e":[1,0,2,0,34,0], -"classspdlog_1_1details_1_1name__formatter.html#ac7e2adb4e29b3fbf06ef3c0e236d64de":[1,0,2,0,34,1], -"classspdlog_1_1details_1_1p__formatter.html":[1,0,2,0,37], -"classspdlog_1_1details_1_1p__formatter.html#a18faf31df030e289f7166eaa7e6f1af1":[1,0,2,0,37,1], -"classspdlog_1_1details_1_1p__formatter.html#a8a8cea56b038ed4d7f6cd6a04db4a135":[1,0,2,0,37,0], -"classspdlog_1_1details_1_1periodic__worker.html":[1,0,2,0,39], -"classspdlog_1_1details_1_1periodic__worker.html#a16ae1b1cb27aa85efbc25a2f055d3523":[1,0,2,0,39,0], -"classspdlog_1_1details_1_1periodic__worker.html#a21168ffd3a91ca2d82fd8959c205a464":[1,0,2,0,39,2], -"classspdlog_1_1details_1_1periodic__worker.html#a43b4294bd9a547727864ff18da48b775":[1,0,2,0,39,1], -"classspdlog_1_1details_1_1periodic__worker.html#a81c0461ef77f85295b93991749df746b":[1,0,2,0,39,3], -"classspdlog_1_1details_1_1pid__formatter.html":[1,0,2,0,40], -"classspdlog_1_1details_1_1pid__formatter.html#a7a37fa9f0f96483f5552cc55ba4c16da":[1,0,2,0,40,0], -"classspdlog_1_1details_1_1pid__formatter.html#abe690b2f66b9046e40931bae634779d5":[1,0,2,0,40,1], -"classspdlog_1_1details_1_1r__formatter.html":[1,0,2,0,42], -"classspdlog_1_1details_1_1r__formatter.html#a5d4a5d4f5f1285c4a4af104a775e9859":[1,0,2,0,42,1], -"classspdlog_1_1details_1_1r__formatter.html#ac3be2e36215d0335d859af35a35e2810":[1,0,2,0,42,0], -"classspdlog_1_1details_1_1registry.html":[1,0,2,0,43], -"classspdlog_1_1details_1_1registry.html#a0cfc3780c18f5331ad31ea1d40248952":[1,0,2,0,43,15], -"classspdlog_1_1details_1_1registry.html#a0fddfd080598f35c675d618cb5e414c6":[1,0,2,0,43,22], -"classspdlog_1_1details_1_1registry.html#a127ccc3786f6ddef57f16d354ba4db91":[1,0,2,0,43,4], -"classspdlog_1_1details_1_1registry.html#a12da238b4eda17829b194b36f383e8a0":[1,0,2,0,43,13], -"classspdlog_1_1details_1_1registry.html#a1fd3bc96c2a7be1af1841f5980cd5f4c":[1,0,2,0,43,9], -"classspdlog_1_1details_1_1registry.html#a21f513aa5a7da6a21fe35a5077b2db74":[1,0,2,0,43,3], -"classspdlog_1_1details_1_1registry.html#a34841160632afca0f2063f1d55629d73":[1,0,2,0,43,7], -"classspdlog_1_1details_1_1registry.html#a3abe5826eebb056d51dd0dd75beed42d":[1,0,2,0,43,5] +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a9722e33a6fdfb563b8db59829f133711":[2,0,0,0,0,93,5], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a9b0fdd9f2efbd8d05a5184bf12b375fe":[2,0,0,0,0,93,1], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#aa704255e4ff2778a7149a7d2cf687e5f":[2,0,0,0,0,93,6], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#aa891dd373534efdbf8a03c9b1b5a77fa":[2,0,0,0,0,93,4], +"classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#acfec8964ca97b0ea4a08d2efff4ba6ba":[2,0,0,0,0,93,3], +"classfmt_1_1v5_1_1internal_1_1value.html":[2,0,0,0,0,94], +"classfmt_1_1v5_1_1internal_1_1value.html#a00ca42d8559d880b30ecd06f0aaa78fa":[2,0,0,0,0,94,7], +"classfmt_1_1v5_1_1internal_1_1value.html#a09d5b4b61a7adc6403a607e29be5555e":[2,0,0,0,0,94,16], +"classfmt_1_1v5_1_1internal_1_1value.html#a0c125f0f450b4afb7f90759397a65086":[2,0,0,0,0,94,18], +"classfmt_1_1v5_1_1internal_1_1value.html#a104a4d2d5dd02f9dab13c911f7e87cb7":[2,0,0,0,0,94,5], +"classfmt_1_1v5_1_1internal_1_1value.html#a2f3ea08c07ddaf1679366b007f54d728":[2,0,0,0,0,94,14], +"classfmt_1_1v5_1_1internal_1_1value.html#a31afcc8ff22723835e02b0ada26c1976":[2,0,0,0,0,94,24], +"classfmt_1_1v5_1_1internal_1_1value.html#a3a77ac045f2ccd3165589946f822513b":[2,0,0,0,0,94,11], +"classfmt_1_1v5_1_1internal_1_1value.html#a3f87c938b3db0f2f31e6f4fa517d85eb":[2,0,0,0,0,94,2], +"classfmt_1_1v5_1_1internal_1_1value.html#a4617949bd5f9aeb22e51ab3c278aabaa":[2,0,0,0,0,94,6], +"classfmt_1_1v5_1_1internal_1_1value.html#a6f80a37fd412337e895740ed124e66c3":[2,0,0,0,0,94,23], +"classfmt_1_1v5_1_1internal_1_1value.html#a77d470cccc7a2fa754a1abce3daed5d6":[2,0,0,0,0,94,10], +"classfmt_1_1v5_1_1internal_1_1value.html#a8a1749aa5371e7d0c25ca2f99edf6b47":[2,0,0,0,0,94,8], +"classfmt_1_1v5_1_1internal_1_1value.html#a96fdd21add279317263cff9e835c5a97":[2,0,0,0,0,94,20], +"classfmt_1_1v5_1_1internal_1_1value.html#a98a35538aba4deefa8e5f640f1d96648":[2,0,0,0,0,94,13], +"classfmt_1_1v5_1_1internal_1_1value.html#a9c1c70838798225c536727bc6bf125bc":[2,0,0,0,0,94,3], +"classfmt_1_1v5_1_1internal_1_1value.html#aa69a8daba75dfea365755c87b16c1760":[2,0,0,0,0,94,19], +"classfmt_1_1v5_1_1internal_1_1value.html#aaa7bee65d796b1212dc35e2b9cc721d3":[2,0,0,0,0,94,21], +"classfmt_1_1v5_1_1internal_1_1value.html#aae5d0d1372c0bfcd51c929bdc70fe139":[2,0,0,0,0,94,4], +"classfmt_1_1v5_1_1internal_1_1value.html#abe1bc7d3e37d07c320314586f0156bd4":[2,0,0,0,0,94,0], +"classfmt_1_1v5_1_1internal_1_1value.html#abf10ba105cb5ebb65156465cf9126857":[2,0,0,0,0,94,17], +"classfmt_1_1v5_1_1internal_1_1value.html#ac7edf7c1b544ebdf7b355a0b50a26d51":[2,0,0,0,0,94,12], +"classfmt_1_1v5_1_1internal_1_1value.html#ad27b872dc092249a541f517f5f2157d7":[2,0,0,0,0,94,1], +"classfmt_1_1v5_1_1internal_1_1value.html#ad93ad99163bd8ebc4a985298dace4a56":[2,0,0,0,0,94,9], +"classfmt_1_1v5_1_1internal_1_1value.html#ae1b4342c0188c4f9a366e0223a4b0836":[2,0,0,0,0,94,15], +"classfmt_1_1v5_1_1internal_1_1value.html#aea22330ef411f765099b2962090e56d4":[2,0,0,0,0,94,22], +"classfmt_1_1v5_1_1internal_1_1width__checker.html":[2,0,0,0,0,97], +"classfmt_1_1v5_1_1internal_1_1width__checker.html#a5cbe5b8226dc90636572d2e0d2b30c01":[2,0,0,0,0,97,2], +"classfmt_1_1v5_1_1internal_1_1width__checker.html#a63630366e25e4dec187bc186976bf0d3":[2,0,0,0,0,97,0], +"classfmt_1_1v5_1_1internal_1_1width__checker.html#a69ee4d46cb35d94fdc14aeb469781957":[2,0,0,0,0,97,1], +"classfmt_1_1v5_1_1output__range.html":[2,0,0,0,56], +"classfmt_1_1v5_1_1output__range.html#a001ad2356c56ce8aa89a3e89487ce8d8":[2,0,0,0,56,0], +"classfmt_1_1v5_1_1output__range.html#a1c35641258830babeb553b03a6bc802b":[2,0,0,0,56,2], +"classfmt_1_1v5_1_1output__range.html#acd03d46c6de53cdc7dccc5890a9df377":[2,0,0,0,56,1], +"classfmt_1_1v5_1_1output__range.html#ad67186390eb4062ee39779478d554b98":[2,0,0,0,56,3], +"classfmt_1_1v5_1_1printf__arg__formatter.html":[2,0,0,0,57], +"classfmt_1_1v5_1_1printf__arg__formatter.html#a1699fc4ff1987dccc2a7958ff3beaf59":[2,0,0,0,57,1], +"classfmt_1_1v5_1_1printf__arg__formatter.html#a22240208526549d9d65250ee2d82c118":[2,0,0,0,57,2], +"classfmt_1_1v5_1_1printf__arg__formatter.html#a3cbb7f33e396d8a644a118e4434c5b81":[2,0,0,0,57,5], +"classfmt_1_1v5_1_1printf__arg__formatter.html#a417fd64792fc9869670cc1abbbdb79d0":[2,0,0,0,57,4], +"classfmt_1_1v5_1_1printf__arg__formatter.html#a74110f935913bf148cac1b9c982ee630":[2,0,0,0,57,0], +"classfmt_1_1v5_1_1printf__arg__formatter.html#a7a7f1491adb37d14a9083a6bba1cb3c8":[2,0,0,0,57,9], +"classfmt_1_1v5_1_1printf__arg__formatter.html#a8365e0442d0fece054b41d7e2ae7b13f":[2,0,0,0,57,8], +"classfmt_1_1v5_1_1printf__arg__formatter.html#a9060b8f9cef005edf81af5d70d162668":[2,0,0,0,57,6], +"classfmt_1_1v5_1_1printf__arg__formatter.html#ae47a63e9e03c8a3470c0ada1dc351837":[2,0,0,0,57,7], +"classfmt_1_1v5_1_1printf__arg__formatter.html#af46ac008c63fe91ec5e60ba5ed9fb3ba":[2,0,0,0,57,3], +"classfmt_1_1v5_1_1system__error.html":[2,0,0,0,60], +"classfmt_1_1v5_1_1system__error.html#a0d2342ce3d391ad12df4aa7509bd9ac7":[2,0,0,0,60,2], +"classfmt_1_1v5_1_1system__error.html#ac761354e3eb707044395fd140020e796":[2,0,0,0,60,3], +"classfmt_1_1v5_1_1system__error.html#ae0c11bcd7a213bd3cd259393cd73fc45":[2,0,0,0,60,1], +"classfmt_1_1v5_1_1system__error.html#afab23543db82d4cebb222ac5582c29f4":[2,0,0,0,60,0], +"classfmt_1_1v5_1_1text__style.html":[2,0,0,0,61], +"classfmt_1_1v5_1_1text__style.html#a1f53d64ef2910e2e461777bf78077c59":[2,0,0,0,61,10], +"classfmt_1_1v5_1_1text__style.html#a5324d97346072124428bfdad11462bea":[2,0,0,0,61,1], +"classfmt_1_1v5_1_1text__style.html#a55feba93f4dbd6d9d8f6f357dc4b2860":[2,0,0,0,61,0], +"classfmt_1_1v5_1_1text__style.html#a72bef1c6e5993308ca69290a262468b0":[2,0,0,0,61,9], +"classfmt_1_1v5_1_1text__style.html#a75f3f3ccdf9ea0a441113237e00bae2f":[2,0,0,0,61,2], +"classfmt_1_1v5_1_1text__style.html#a8f82651b0a8ae904452f333054ea1a64":[2,0,0,0,61,11], +"classfmt_1_1v5_1_1text__style.html#a951ddffc7cc6b47c9bd8238b9bc45d75":[2,0,0,0,61,3], +"classfmt_1_1v5_1_1text__style.html#aab30ce069feb1260eb2f51b92b3c61c4":[2,0,0,0,61,8], +"classfmt_1_1v5_1_1text__style.html#ab8ce8b037913d539e5a753d513297f14":[2,0,0,0,61,12], +"classfmt_1_1v5_1_1text__style.html#acb1535c94d8cc4d69b19c4170a78f7d0":[2,0,0,0,61,7], +"classfmt_1_1v5_1_1text__style.html#ae42bc013e5bdb08527611dc444844f3e":[2,0,0,0,61,5], +"classfmt_1_1v5_1_1text__style.html#ae8b438a20e753fcfc1c912d3a4bdb1c9":[2,0,0,0,61,4], +"classfmt_1_1v5_1_1text__style.html#af39caf143ad60465481521f0147c1dbf":[2,0,0,0,61,6], +"classfmt_1_1v5_1_1u8string__view.html":[2,0,0,0,62], +"classfmt_1_1v5_1_1u8string__view.html#a7d8fc1c8138683c75574261561e78652":[2,0,0,0,62,2], +"classfmt_1_1v5_1_1u8string__view.html#aa0aaed9e4977fa2cbec789178ea3b694":[2,0,0,0,62,0], +"classfmt_1_1v5_1_1u8string__view.html#ace3a1b7f6bca7b364411dd7bca8eb666":[2,0,0,0,62,1], +"classlivox_1_1_comm_port.html":[2,0,1,1], +"classlivox_1_1_comm_port.html#a0747279cfee5e49d6abe399adbe81e2a":[2,0,1,1,5], +"classlivox_1_1_comm_port.html#a12578479c9799e0e1019e5698841072b":[2,0,1,1,1], +"classlivox_1_1_comm_port.html#a5a159a37a2b90e3e99a8a2258494c374":[2,0,1,1,0], +"classlivox_1_1_comm_port.html#a921c62e412bfa973effc62d2592eb2ac":[2,0,1,1,3], +"classlivox_1_1_comm_port.html#aa06a75c5c7801967271b8925bd734fd1":[2,0,1,1,4], +"classlivox_1_1_comm_port.html#ab520a4434c8e19868cf3bab6c229ab7d":[2,0,1,1,6], +"classlivox_1_1_comm_port.html#abb44afd20231d53d38f477e4b5861711":[2,0,1,1,2], +"classlivox_1_1_protocol.html":[2,0,1,3], +"classlivox_1_1_protocol.html#a0327374f8c1e7008805b8d87732fe4b8":[2,0,1,3,7], +"classlivox_1_1_protocol.html#a52573a66bbd0f40a624e23ec76465045":[2,0,1,3,6], +"classlivox_1_1_protocol.html#a66113a1c1b0f523f05411ef3fab97808":[2,0,1,3,5], +"classlivox_1_1_protocol.html#a8a3949d5d8b4ed37a895cc3a53569200":[2,0,1,3,3], +"classlivox_1_1_protocol.html#acaf1a7dbf16f2deee49ded19e17a998a":[2,0,1,3,2], +"classlivox_1_1_protocol.html#ad44a13b2298df2c134bb41537a2d8706":[2,0,1,3,0], +"classlivox_1_1_protocol.html#af29b4a6d2966e31e19b7f640414ebeb7":[2,0,1,3,1], +"classlivox_1_1_protocol.html#afc5dbf8f0b6e52622fd5c6185db18aba":[2,0,1,3,4], +"classspdlog_1_1async__logger.html":[2,0,2,3], +"classspdlog_1_1async__logger.html#a24a37552c3339c7b129a38a2c4702689":[2,0,2,3,3], +"classspdlog_1_1async__logger.html#a2a74bf8d8d850ea760396ba8ae55d552":[2,0,2,3,0], +"classspdlog_1_1async__logger.html#a50a7de9842c326ab5b99cbcc851d9c60":[2,0,2,3,4], +"classspdlog_1_1async__logger.html#a67ce2a7de422d11203d66f1f6da4be03":[2,0,2,3,8], +"classspdlog_1_1async__logger.html#a99dcf454b74db04fe3300c68baff4d79":[2,0,2,3,2], +"classspdlog_1_1async__logger.html#ad42c05a733917cc7e7b3d9d2ad10a47f":[2,0,2,3,1], +"classspdlog_1_1async__logger.html#ae7eeca32af4d650bc1e2dd06122d0224":[2,0,2,3,6], +"classspdlog_1_1async__logger.html#aef60bc96b78ff98a471dc08977d4cb5c":[2,0,2,3,5], +"classspdlog_1_1async__logger.html#aefd367c3266773bfe756d34150705329":[2,0,2,3,7], +"classspdlog_1_1details_1_1_a__formatter.html":[2,0,2,0,1], +"classspdlog_1_1details_1_1_a__formatter.html#a4df40ed70fbad25284e8479aefa680bb":[2,0,2,0,1,1], +"classspdlog_1_1details_1_1_a__formatter.html#aaa0b668428ff16e07a5258575b711955":[2,0,2,0,1,0], +"classspdlog_1_1details_1_1_b__formatter.html":[2,0,2,0,5], +"classspdlog_1_1details_1_1_b__formatter.html#a2dde180e941a7b44a65b7967fec4d359":[2,0,2,0,5,0], +"classspdlog_1_1details_1_1_b__formatter.html#a5f17328272b26d5d107e59bad150fac8":[2,0,2,0,5,1], +"classspdlog_1_1details_1_1_c__formatter.html":[2,0,2,0,8], +"classspdlog_1_1details_1_1_c__formatter.html#a241d6298edc054937cf40c0d7ed90ae2":[2,0,2,0,8,1], +"classspdlog_1_1details_1_1_c__formatter.html#a8b9038a7449cb208fd2a6b1a886b7be8":[2,0,2,0,8,0], +"classspdlog_1_1details_1_1_d__formatter.html":[2,0,2,0,17], +"classspdlog_1_1details_1_1_d__formatter.html#a065cf427de180dfee0b6abb642a78cb0":[2,0,2,0,17,1], +"classspdlog_1_1details_1_1_d__formatter.html#a2df2757737cfb0580fcf50edd83efd02":[2,0,2,0,17,0], +"classspdlog_1_1details_1_1_e__formatter.html":[2,0,2,0,19], +"classspdlog_1_1details_1_1_e__formatter.html#a133d1ba939b743041a036eb16c2c524a":[2,0,2,0,19,1], +"classspdlog_1_1details_1_1_e__formatter.html#a6965aa5fe03beb42c5b360b56ca4dc54":[2,0,2,0,19,0], +"classspdlog_1_1details_1_1_f__formatter.html":[2,0,2,0,22], +"classspdlog_1_1details_1_1_f__formatter.html#a1ff6475bf808c73612748c55fe3883c2":[2,0,2,0,22,1], +"classspdlog_1_1details_1_1_f__formatter.html#a932cd91a68880bfedd402ebf934ccd77":[2,0,2,0,22,0], +"classspdlog_1_1details_1_1_h__formatter.html":[2,0,2,0,26], +"classspdlog_1_1details_1_1_h__formatter.html#a46e166ed26e90bfe5bbc6b5f83040bef":[2,0,2,0,26,1], +"classspdlog_1_1details_1_1_h__formatter.html#a4cbf3915e24d7588af53b06a1233ea56":[2,0,2,0,26,0], +"classspdlog_1_1details_1_1_i__formatter.html":[2,0,2,0,28], +"classspdlog_1_1details_1_1_i__formatter.html#a33599ccfecedd0d409c91792ffa82fbc":[2,0,2,0,28,0], +"classspdlog_1_1details_1_1_i__formatter.html#ab9d6511acc53b2296ecce30f715779c7":[2,0,2,0,28,1], +"classspdlog_1_1details_1_1_m__formatter.html":[2,0,2,0,32], +"classspdlog_1_1details_1_1_m__formatter.html#a6d27aa27b0ede646701b4b5138afe4cd":[2,0,2,0,32,0], +"classspdlog_1_1details_1_1_m__formatter.html#ab6c0f013ea2c54cceb4561033d59ca0c":[2,0,2,0,32,1], +"classspdlog_1_1details_1_1_r__formatter.html":[2,0,2,0,41], +"classspdlog_1_1details_1_1_r__formatter.html#a1fe66a7fbf57ef47faa59e82132e9051":[2,0,2,0,41,1], +"classspdlog_1_1details_1_1_r__formatter.html#a712095b0b26244817d78963d98a9a6fb":[2,0,2,0,41,0], +"classspdlog_1_1details_1_1_s__formatter.html":[2,0,2,0,44], +"classspdlog_1_1details_1_1_s__formatter.html#a8e9ddad945ae1f9bfc79adb0286723a6":[2,0,2,0,44,0], +"classspdlog_1_1details_1_1_s__formatter.html#aec1945b20074132e9ebe7d94357081fa":[2,0,2,0,44,1], +"classspdlog_1_1details_1_1_t__formatter.html":[2,0,2,0,51], +"classspdlog_1_1details_1_1_t__formatter.html#a338d37f02f3a9a4376acc3d4b655eda3":[2,0,2,0,51,1], +"classspdlog_1_1details_1_1_t__formatter.html#affd0c9557cd9649339f10abd943608ff":[2,0,2,0,51,0], +"classspdlog_1_1details_1_1_y__formatter.html":[2,0,2,0,55], +"classspdlog_1_1details_1_1_y__formatter.html#a0a05d2970b7558f0e24336fdc05e504a":[2,0,2,0,55,1], +"classspdlog_1_1details_1_1_y__formatter.html#ac720d56ae2b7f315bcb788505f6f0b32":[2,0,2,0,55,0], +"classspdlog_1_1details_1_1a__formatter.html":[2,0,2,0,0], +"classspdlog_1_1details_1_1a__formatter.html#a0dbb4322f91afd22b82fc0c0b20a35db":[2,0,2,0,0,1], +"classspdlog_1_1details_1_1a__formatter.html#a48d1f1eba77e826b69ff1e6eea389b63":[2,0,2,0,0,0], +"classspdlog_1_1details_1_1aggregate__formatter.html":[2,0,2,0,2], +"classspdlog_1_1details_1_1aggregate__formatter.html#a068c157540411ecb4932860266effb82":[2,0,2,0,2,0], +"classspdlog_1_1details_1_1aggregate__formatter.html#a19bcf6f721f9a3b2758a59293305987d":[2,0,2,0,2,2], +"classspdlog_1_1details_1_1aggregate__formatter.html#aa4a450cafac2ed6ef1fdc6dbda962ac6":[2,0,2,0,2,1], +"classspdlog_1_1details_1_1b__formatter.html":[2,0,2,0,4], +"classspdlog_1_1details_1_1b__formatter.html#a08418409ea0e59ea9b79d27974e30824":[2,0,2,0,4,0], +"classspdlog_1_1details_1_1b__formatter.html#a3943edd9e27eb217e4871abf06b91df5":[2,0,2,0,4,1], +"classspdlog_1_1details_1_1bytes__range.html":[2,0,2,0,6], +"classspdlog_1_1details_1_1bytes__range.html#a513faba7dd574f7a32f00504739d6032":[2,0,2,0,6,2], +"classspdlog_1_1details_1_1bytes__range.html#aa623616735396b0422737b9b62bdd46e":[2,0,2,0,6,0], +"classspdlog_1_1details_1_1bytes__range.html#abe7813dcd59c848fd56b0c33e5bbc134":[2,0,2,0,6,1], +"classspdlog_1_1details_1_1c__formatter.html":[2,0,2,0,7], +"classspdlog_1_1details_1_1c__formatter.html#a1b09d9e9e1d84b29fc2fb8d37fa07d57":[2,0,2,0,7,1], +"classspdlog_1_1details_1_1c__formatter.html#aa16ea42a3648637a5223ed85d711aa50":[2,0,2,0,7,0], +"classspdlog_1_1details_1_1ch__formatter.html":[2,0,2,0,9], +"classspdlog_1_1details_1_1ch__formatter.html#a0ea7f88fed22209cce188238bf103a35":[2,0,2,0,9,0], +"classspdlog_1_1details_1_1ch__formatter.html#a11cf092c89041ff6186efb4324227cdb":[2,0,2,0,9,1], +"classspdlog_1_1details_1_1circular__q.html":[2,0,2,0,10], +"classspdlog_1_1details_1_1circular__q.html#a2f683dc45eca25efad9e415cf73c7ea0":[2,0,2,0,10,4], +"classspdlog_1_1details_1_1circular__q.html#a50926d98e20ee48b70d4b66d99895e97":[2,0,2,0,10,0], +"classspdlog_1_1details_1_1circular__q.html#a6e05a29447127eadabf01175a6b3ddc0":[2,0,2,0,10,5], +"classspdlog_1_1details_1_1circular__q.html#a6f9e90a9957c230376a463b20f909191":[2,0,2,0,10,3], +"classspdlog_1_1details_1_1circular__q.html#aaaab548bb6f5dd362458d6b044e0e950":[2,0,2,0,10,6], +"classspdlog_1_1details_1_1circular__q.html#ab0aae072dd38824fee65ed9d48568c2f":[2,0,2,0,10,1], +"classspdlog_1_1details_1_1circular__q.html#ae27eea7ecb58860f4471f473e02270f8":[2,0,2,0,10,2], +"classspdlog_1_1details_1_1color__start__formatter.html":[2,0,2,0,11], +"classspdlog_1_1details_1_1color__start__formatter.html#a5222b004ac21f1b4db466400a324ad21":[2,0,2,0,11,0], +"classspdlog_1_1details_1_1color__start__formatter.html#af91a839656b9128edbc7f0d6ea297d3f":[2,0,2,0,11,1], +"classspdlog_1_1details_1_1color__stop__formatter.html":[2,0,2,0,12], +"classspdlog_1_1details_1_1color__stop__formatter.html#ac59e274cc3d37db75f0e7ea3dc484209":[2,0,2,0,12,1], +"classspdlog_1_1details_1_1color__stop__formatter.html#ae91bec8b6dec2965b7406026925d1cdc":[2,0,2,0,12,0], +"classspdlog_1_1details_1_1d__formatter.html":[2,0,2,0,18], +"classspdlog_1_1details_1_1d__formatter.html#aa5c9a67121b2ab9395b3bed60f5e56a8":[2,0,2,0,18,0], +"classspdlog_1_1details_1_1d__formatter.html#ad1c7decfd7bfa7ecd6fd105e2d74bed4":[2,0,2,0,18,1], +"classspdlog_1_1details_1_1e__formatter.html":[2,0,2,0,20], +"classspdlog_1_1details_1_1e__formatter.html#a75148ba81c9eac2025b6c405acd51ea3":[2,0,2,0,20,0], +"classspdlog_1_1details_1_1e__formatter.html#a931a5482cce50c580dd4e570fd27e976":[2,0,2,0,20,1], +"classspdlog_1_1details_1_1f__formatter.html":[2,0,2,0,21], +"classspdlog_1_1details_1_1f__formatter.html#a7e6998176a0bace8105a555ff56fce73":[2,0,2,0,21,0], +"classspdlog_1_1details_1_1f__formatter.html#ab3af92f69f6a1b4a70189f4e2a7ccbba":[2,0,2,0,21,1], +"classspdlog_1_1details_1_1file__helper.html":[2,0,2,0,23], +"classspdlog_1_1details_1_1file__helper.html#a1a75f29ec0c13d9fbc269bcd8378b18b":[2,0,2,0,23,6], +"classspdlog_1_1details_1_1file__helper.html#a21c688da7f241c53871b462c3a5c2c94":[2,0,2,0,23,9], +"classspdlog_1_1details_1_1file__helper.html#a22be952a421d866566eed3a5ce201144":[2,0,2,0,23,14], +"classspdlog_1_1details_1_1file__helper.html#a28d87e3f42c52a12c95af0558aca66f2":[2,0,2,0,23,11], +"classspdlog_1_1details_1_1file__helper.html#a51eb58a2d46f1896f3ab7b9d323d97ae":[2,0,2,0,23,12], +"classspdlog_1_1details_1_1file__helper.html#a6a6d7a75014ae880857b4fe4fd01dc7a":[2,0,2,0,23,3], +"classspdlog_1_1details_1_1file__helper.html#a76610058a1769b25bd6ed52a1443b552":[2,0,2,0,23,5], +"classspdlog_1_1details_1_1file__helper.html#a7c7314360e404efa02326feb7aa98442":[2,0,2,0,23,8], +"classspdlog_1_1details_1_1file__helper.html#a8612066fd098080cc60e3aefed6a6085":[2,0,2,0,23,7], +"classspdlog_1_1details_1_1file__helper.html#a8c5f69588e8a54f436c3565317c233bd":[2,0,2,0,23,4], +"classspdlog_1_1details_1_1file__helper.html#aa11a5129c9d7492638a68d849d66d47d":[2,0,2,0,23,0], +"classspdlog_1_1details_1_1file__helper.html#aad84ef5f999c2721a0a8ad36ce641e8c":[2,0,2,0,23,2], +"classspdlog_1_1details_1_1file__helper.html#ab68b7720555f7656a8f387f8e0dcb37d":[2,0,2,0,23,1], +"classspdlog_1_1details_1_1file__helper.html#ae945d9701134218c2d0558958e9d1cf2":[2,0,2,0,23,10], +"classspdlog_1_1details_1_1file__helper.html#aea72ea8d655bb11f19dbe48477e6c8b3":[2,0,2,0,23,13], +"classspdlog_1_1details_1_1flag__formatter.html":[2,0,2,0,24], +"classspdlog_1_1details_1_1flag__formatter.html#a104f93112896f70c5dedf970240ef12b":[2,0,2,0,24,2], +"classspdlog_1_1details_1_1flag__formatter.html#a19fcada419b07c4c0db0080b0fbf8b46":[2,0,2,0,24,1], +"classspdlog_1_1details_1_1flag__formatter.html#a33fb3e42a4c8200cceb833d92b53fb67":[2,0,2,0,24,3], +"classspdlog_1_1details_1_1flag__formatter.html#a7f775ab8ad4027546c3490f2f299bf43":[2,0,2,0,24,0], +"classspdlog_1_1details_1_1flag__formatter.html#a80f1166212df85f665d87f2826240567":[2,0,2,0,24,4], +"classspdlog_1_1details_1_1full__formatter.html":[2,0,2,0,25], +"classspdlog_1_1details_1_1full__formatter.html#a11da1d2ec8378841d228df071915da35":[2,0,2,0,25,1], +"classspdlog_1_1details_1_1full__formatter.html#ac0212ed0f1efbb64726ddd73b62b20a0":[2,0,2,0,25,0], +"classspdlog_1_1details_1_1i__formatter.html":[2,0,2,0,27], +"classspdlog_1_1details_1_1i__formatter.html#a69d03626d465771f9b6f8ef302114b9c":[2,0,2,0,27,0], +"classspdlog_1_1details_1_1i__formatter.html#aacaecd1c3fd6827287055d2f607f10ed":[2,0,2,0,27,1], +"classspdlog_1_1details_1_1level__formatter.html":[2,0,2,0,29], +"classspdlog_1_1details_1_1level__formatter.html#a36967967164ade9221ad216e0b617749":[2,0,2,0,29,1], +"classspdlog_1_1details_1_1level__formatter.html#a76ae7447054b8943fede15d0b64f8603":[2,0,2,0,29,0], +"classspdlog_1_1details_1_1m__formatter.html":[2,0,2,0,31], +"classspdlog_1_1details_1_1m__formatter.html#a218eb07d23a3b69557b9347eae493dc3":[2,0,2,0,31,0], +"classspdlog_1_1details_1_1m__formatter.html#a507ce5bc00de736d28d93e5d7307589b":[2,0,2,0,31,1], +"classspdlog_1_1details_1_1mpmc__blocking__queue.html":[2,0,2,0,33], +"classspdlog_1_1details_1_1mpmc__blocking__queue.html#a1280489c9035a705f50f04905a5ed394":[2,0,2,0,33,4], +"classspdlog_1_1details_1_1mpmc__blocking__queue.html#a15e3d12dff953034d5aad5590b8282cd":[2,0,2,0,33,5], +"classspdlog_1_1details_1_1mpmc__blocking__queue.html#a3795640b651fcb2de66a21ef2bc221f1":[2,0,2,0,33,3], +"classspdlog_1_1details_1_1mpmc__blocking__queue.html#abb22a6f25c5fd96af5b163dc93eec397":[2,0,2,0,33,0], +"classspdlog_1_1details_1_1mpmc__blocking__queue.html#ace609561c8f631202988ec49f95422fa":[2,0,2,0,33,1], +"classspdlog_1_1details_1_1mpmc__blocking__queue.html#af4015ea1657b393755f34d76c97a28d1":[2,0,2,0,33,2], +"classspdlog_1_1details_1_1name__formatter.html":[2,0,2,0,34], +"classspdlog_1_1details_1_1name__formatter.html#a03bf01931018c5c2cd9dcbff64233d6e":[2,0,2,0,34,0], +"classspdlog_1_1details_1_1name__formatter.html#ac7e2adb4e29b3fbf06ef3c0e236d64de":[2,0,2,0,34,1], +"classspdlog_1_1details_1_1p__formatter.html":[2,0,2,0,37], +"classspdlog_1_1details_1_1p__formatter.html#a18faf31df030e289f7166eaa7e6f1af1":[2,0,2,0,37,1], +"classspdlog_1_1details_1_1p__formatter.html#a8a8cea56b038ed4d7f6cd6a04db4a135":[2,0,2,0,37,0], +"classspdlog_1_1details_1_1periodic__worker.html":[2,0,2,0,39], +"classspdlog_1_1details_1_1periodic__worker.html#a16ae1b1cb27aa85efbc25a2f055d3523":[2,0,2,0,39,0], +"classspdlog_1_1details_1_1periodic__worker.html#a21168ffd3a91ca2d82fd8959c205a464":[2,0,2,0,39,2], +"classspdlog_1_1details_1_1periodic__worker.html#a43b4294bd9a547727864ff18da48b775":[2,0,2,0,39,1], +"classspdlog_1_1details_1_1periodic__worker.html#a81c0461ef77f85295b93991749df746b":[2,0,2,0,39,3], +"classspdlog_1_1details_1_1pid__formatter.html":[2,0,2,0,40], +"classspdlog_1_1details_1_1pid__formatter.html#a7a37fa9f0f96483f5552cc55ba4c16da":[2,0,2,0,40,0], +"classspdlog_1_1details_1_1pid__formatter.html#abe690b2f66b9046e40931bae634779d5":[2,0,2,0,40,1], +"classspdlog_1_1details_1_1r__formatter.html":[2,0,2,0,42], +"classspdlog_1_1details_1_1r__formatter.html#a5d4a5d4f5f1285c4a4af104a775e9859":[2,0,2,0,42,1], +"classspdlog_1_1details_1_1r__formatter.html#ac3be2e36215d0335d859af35a35e2810":[2,0,2,0,42,0], +"classspdlog_1_1details_1_1registry.html":[2,0,2,0,43], +"classspdlog_1_1details_1_1registry.html#a0cfc3780c18f5331ad31ea1d40248952":[2,0,2,0,43,15], +"classspdlog_1_1details_1_1registry.html#a0fddfd080598f35c675d618cb5e414c6":[2,0,2,0,43,22], +"classspdlog_1_1details_1_1registry.html#a127ccc3786f6ddef57f16d354ba4db91":[2,0,2,0,43,4], +"classspdlog_1_1details_1_1registry.html#a12da238b4eda17829b194b36f383e8a0":[2,0,2,0,43,13], +"classspdlog_1_1details_1_1registry.html#a1fd3bc96c2a7be1af1841f5980cd5f4c":[2,0,2,0,43,9], +"classspdlog_1_1details_1_1registry.html#a21f513aa5a7da6a21fe35a5077b2db74":[2,0,2,0,43,3], +"classspdlog_1_1details_1_1registry.html#a34841160632afca0f2063f1d55629d73":[2,0,2,0,43,7], +"classspdlog_1_1details_1_1registry.html#a3abe5826eebb056d51dd0dd75beed42d":[2,0,2,0,43,5] }; diff --git a/docs/navtreeindex3.js b/docs/navtreeindex3.js index a14d4a9..4b5a8af 100644 --- a/docs/navtreeindex3.js +++ b/docs/navtreeindex3.js @@ -1,253 +1,253 @@ var NAVTREEINDEX3 = { -"classspdlog_1_1details_1_1registry.html#a43cb4919dd9f66cf4eeeeaf9774caade":[1,0,2,0,43,8], -"classspdlog_1_1details_1_1registry.html#a47543b9b7ebe0dc3664cfd5f3e385905":[1,0,2,0,43,17], -"classspdlog_1_1details_1_1registry.html#a4b8494e781ed3151586b307cca63edb7":[1,0,2,0,43,19], -"classspdlog_1_1details_1_1registry.html#a58a1bbb352f751f6b729bc57bfadd6be":[1,0,2,0,43,12], -"classspdlog_1_1details_1_1registry.html#a781454ea62603cfaebddf14ec2ec9985":[1,0,2,0,43,1], -"classspdlog_1_1details_1_1registry.html#a78eb75a31640c0bb204d7f2123ba825c":[1,0,2,0,43,6], -"classspdlog_1_1details_1_1registry.html#a7e015c41e9c32c9f1e8e7f9adc578cee":[1,0,2,0,43,11], -"classspdlog_1_1details_1_1registry.html#a8f8dcb7f6b7987716cfbcb92bbe96517":[1,0,2,0,43,18], -"classspdlog_1_1details_1_1registry.html#aa5503db04a70a06f97e7c1218aa8cbe2":[1,0,2,0,43,20], -"classspdlog_1_1details_1_1registry.html#ab5c1a2f7b8e2e9eec4e0fa75d9167f3b":[1,0,2,0,43,0], -"classspdlog_1_1details_1_1registry.html#ab77fb7513b2e3e6442a83f037543e391":[1,0,2,0,43,14], -"classspdlog_1_1details_1_1registry.html#ac93f888f316b0488414771ad6533b6a9":[1,0,2,0,43,21], -"classspdlog_1_1details_1_1registry.html#ae2a45628046a1d0cd3f8de81a5556acb":[1,0,2,0,43,16], -"classspdlog_1_1details_1_1registry.html#af6c1f16e0433b6400aef5219fa1b81ea":[1,0,2,0,43,2], -"classspdlog_1_1details_1_1registry.html#af86cd2fcbec489ebc343815f49a6e076":[1,0,2,0,43,10], -"classspdlog_1_1details_1_1scoped__pad.html":[1,0,2,0,45], -"classspdlog_1_1details_1_1scoped__pad.html#a1da16eb464801b04d397174e7338d990":[1,0,2,0,45,0], -"classspdlog_1_1details_1_1scoped__pad.html#a945477b9e2c1ee236238bb63129a767d":[1,0,2,0,45,1], -"classspdlog_1_1details_1_1scoped__pad.html#ad901678fa607829f784cd293f712a112":[1,0,2,0,45,2], -"classspdlog_1_1details_1_1short__level__formatter.html":[1,0,2,0,46], -"classspdlog_1_1details_1_1short__level__formatter.html#acf241e8ab58e6142e02a9c493034f81d":[1,0,2,0,46,1], -"classspdlog_1_1details_1_1short__level__formatter.html#adcc003358c5cea986bb25ae092df0f70":[1,0,2,0,46,0], -"classspdlog_1_1details_1_1source__filename__formatter.html":[1,0,2,0,47], -"classspdlog_1_1details_1_1source__filename__formatter.html#a9a2e549eda5c8044c76281be33b04b38":[1,0,2,0,47,1], -"classspdlog_1_1details_1_1source__filename__formatter.html#a9feacaecd2eaa3aee5eb992c7334dc9d":[1,0,2,0,47,0], -"classspdlog_1_1details_1_1source__funcname__formatter.html":[1,0,2,0,48], -"classspdlog_1_1details_1_1source__funcname__formatter.html#a1f20c622f780c9f9e8696e9c5960dcb8":[1,0,2,0,48,0], -"classspdlog_1_1details_1_1source__funcname__formatter.html#a7628b8914c638affa0bf0fc9de62f0e4":[1,0,2,0,48,1], -"classspdlog_1_1details_1_1source__linenum__formatter.html":[1,0,2,0,49], -"classspdlog_1_1details_1_1source__linenum__formatter.html#ac165ced330bd04ea5485e182b9d913a2":[1,0,2,0,49,1], -"classspdlog_1_1details_1_1source__linenum__formatter.html#ac8899bb5c6919498b71f2575f40ca504":[1,0,2,0,49,0], -"classspdlog_1_1details_1_1source__location__formatter.html":[1,0,2,0,50], -"classspdlog_1_1details_1_1source__location__formatter.html#a045946c595dd299307511d89b404fe31":[1,0,2,0,50,0], -"classspdlog_1_1details_1_1source__location__formatter.html#af0d34490d35c582fdb1553a27f03e147":[1,0,2,0,50,1], -"classspdlog_1_1details_1_1t__formatter.html":[1,0,2,0,52], -"classspdlog_1_1details_1_1t__formatter.html#a58cd7de54067c8f05815a94edaf43e17":[1,0,2,0,52,1], -"classspdlog_1_1details_1_1t__formatter.html#a8cd4b638e72934a3ca2517d00e2aa06b":[1,0,2,0,52,0], -"classspdlog_1_1details_1_1thread__pool.html":[1,0,2,0,53], -"classspdlog_1_1details_1_1thread__pool.html#a1a62f3ab1474d69cd1e25143664e856d":[1,0,2,0,53,5], -"classspdlog_1_1details_1_1thread__pool.html#a27e41d821a8aa8137bc0e64df031ccd4":[1,0,2,0,53,3], -"classspdlog_1_1details_1_1thread__pool.html#a2ac821eb936f7373cc51949fb05e841c":[1,0,2,0,53,2], -"classspdlog_1_1details_1_1thread__pool.html#a5e8f86d40f81af1d22a21ee0368287b2":[1,0,2,0,53,4], -"classspdlog_1_1details_1_1thread__pool.html#a70cc09729d82174d84640eaface150e0":[1,0,2,0,53,8], -"classspdlog_1_1details_1_1thread__pool.html#a77d633d56b0b5e1fe37965faa4642df5":[1,0,2,0,53,1], -"classspdlog_1_1details_1_1thread__pool.html#a997d954a51e8fa8aa92071d1a9c08536":[1,0,2,0,53,0], -"classspdlog_1_1details_1_1thread__pool.html#aa851092603e816f78dd81bb980232048":[1,0,2,0,53,7], -"classspdlog_1_1details_1_1thread__pool.html#adc34920f65797d8f54986dc1894a8804":[1,0,2,0,53,6], -"classspdlog_1_1details_1_1v__formatter.html":[1,0,2,0,54], -"classspdlog_1_1details_1_1v__formatter.html#a54e77c3b682da6b1417f6a2adb23b018":[1,0,2,0,54,0], -"classspdlog_1_1details_1_1v__formatter.html#af794a57051f743266fdb6ccf7fd6c61f":[1,0,2,0,54,1], -"classspdlog_1_1details_1_1z__formatter.html":[1,0,2,0,56], -"classspdlog_1_1details_1_1z__formatter.html#a09f0b7e5cf2bc8260375d38ac9b14a31":[1,0,2,0,56,2], -"classspdlog_1_1details_1_1z__formatter.html#a230a4469c1ffda4d06bed933ecca1fd5":[1,0,2,0,56,1], -"classspdlog_1_1details_1_1z__formatter.html#a3c7902ee9047ef7c0d53cf1e9c4cd834":[1,0,2,0,56,0], -"classspdlog_1_1details_1_1z__formatter.html#a804a8b5035af28939f4803033c951edc":[1,0,2,0,56,5], -"classspdlog_1_1details_1_1z__formatter.html#ada7a5e9a3c30039cbfb684b7743b8945":[1,0,2,0,56,3], -"classspdlog_1_1details_1_1z__formatter.html#aea05e7a7a960bb9450b00aa9558e78fe":[1,0,2,0,56,4], -"classspdlog_1_1formatter.html":[1,0,2,4], -"classspdlog_1_1formatter.html#a63ee38e660519d09020b21dd7d54d4fe":[1,0,2,4,0], -"classspdlog_1_1formatter.html#ad50e2b119d08fad952b0f885455b3bee":[1,0,2,4,2], -"classspdlog_1_1formatter.html#ae9857a794904d98a4a9527a742e37129":[1,0,2,4,1], -"classspdlog_1_1logger.html":[1,0,2,5], -"classspdlog_1_1logger.html#a00677a369b642aec9e8428374ee09df6":[1,0,2,5,47], -"classspdlog_1_1logger.html#a00c27f251b795caf028718b605572e1f":[1,0,2,5,39], -"classspdlog_1_1logger.html#a0d0307a6501a9f56689c386a006991fe":[1,0,2,5,11], -"classspdlog_1_1logger.html#a0f61c15b955775652da9b2b813d9f3cd":[1,0,2,5,35], -"classspdlog_1_1logger.html#a144338f88fd2d2bec2cae951e214a9a5":[1,0,2,5,12], -"classspdlog_1_1logger.html#a16d3d178ac86ea71b8a0becfca0c5449":[1,0,2,5,27], -"classspdlog_1_1logger.html#a1b9b7304f017163d181692e41101b648":[1,0,2,5,17], -"classspdlog_1_1logger.html#a1e1dff0caa0d1bf072739dfcc1e331d8":[1,0,2,5,21], -"classspdlog_1_1logger.html#a1e4b2c515490efb5456665a9a64382d9":[1,0,2,5,23], -"classspdlog_1_1logger.html#a1f60afc8308e0127c2eab2619ae352d5":[1,0,2,5,8], -"classspdlog_1_1logger.html#a20dc8198d08c98f84ae10be635108bef":[1,0,2,5,22], -"classspdlog_1_1logger.html#a24a3b3250f3fe52fa7c3053e77076f07":[1,0,2,5,51], -"classspdlog_1_1logger.html#a3432e21bdc19d74024b57cc3f26a8471":[1,0,2,5,10], -"classspdlog_1_1logger.html#a3691352a0a61bcba0bf3fb32d236bce5":[1,0,2,5,3], -"classspdlog_1_1logger.html#a3c5140393ec153b2b8478361aac80eb6":[1,0,2,5,7], -"classspdlog_1_1logger.html#a3d11416764fe7ead94868d4c6438f583":[1,0,2,5,6], -"classspdlog_1_1logger.html#a3e623bd54bd38315f66063ae8907ce17":[1,0,2,5,45], -"classspdlog_1_1logger.html#a403ccd4cd1bc85c6ba6b1517c37726c7":[1,0,2,5,34], -"classspdlog_1_1logger.html#a414da79baaad89ba6ffe0e738027d234":[1,0,2,5,2], -"classspdlog_1_1logger.html#a43ac8d73671a109cba253eadb0b049e2":[1,0,2,5,38], -"classspdlog_1_1logger.html#a47c021d339c1f246758e1a87a41668e3":[1,0,2,5,18], -"classspdlog_1_1logger.html#a4ad269959d007dcbe38cdb3c4e70d85b":[1,0,2,5,28], -"classspdlog_1_1logger.html#a4ad269959d007dcbe38cdb3c4e70d85b":[1,0,2,5,29], -"classspdlog_1_1logger.html#a50417cea5f81704cd4800aaafa944bc5":[1,0,2,5,24], -"classspdlog_1_1logger.html#a55bf9c5c960391a56399b5f1ea601b4b":[1,0,2,5,19], -"classspdlog_1_1logger.html#a59a8516fe055c6b78c9b1822148f78ec":[1,0,2,5,41], -"classspdlog_1_1logger.html#a5d3b321a0319e9b8b27bf04f206a9900":[1,0,2,5,0], -"classspdlog_1_1logger.html#a649a3c1a1b380e2488a93f9c3ae694de":[1,0,2,5,5], -"classspdlog_1_1logger.html#a66e008d30a46c33283c4546f3851a80a":[1,0,2,5,42], -"classspdlog_1_1logger.html#a69f7cbb7e1b2d5204a409906a62c1e94":[1,0,2,5,46], -"classspdlog_1_1logger.html#a72f80c2e379df565c628adab1efdab34":[1,0,2,5,20], -"classspdlog_1_1logger.html#a7d93aa2653b924f2c9981d026aea9822":[1,0,2,5,40], -"classspdlog_1_1logger.html#a7ef1e291dcb766951fc5c25f110d775f":[1,0,2,5,49], -"classspdlog_1_1logger.html#a861bb4d4e65de07966148822075bee86":[1,0,2,5,15], -"classspdlog_1_1logger.html#a94c77395570c462953ded4188aaaf655":[1,0,2,5,37], -"classspdlog_1_1logger.html#a98981b19089a6000fdfa8765af52ef0e":[1,0,2,5,16], -"classspdlog_1_1logger.html#a9c5b880ddf9a9c86ec9893364e57071d":[1,0,2,5,33], -"classspdlog_1_1logger.html#a9ce73acaa12b7dbbecde6ac3bc7353e5":[1,0,2,5,13], -"classspdlog_1_1logger.html#aa1027cf4e4d6fd7fcf361534affe7bdc":[1,0,2,5,43], -"classspdlog_1_1logger.html#aa1bbe703cdeed2aef722a97a2bc1a800":[1,0,2,5,36], -"classspdlog_1_1logger.html#aa6074d763b0df4e7d16ccf7d307a3938":[1,0,2,5,4], -"classspdlog_1_1logger.html#aad05282c338eb617ca260e40ab8134bc":[1,0,2,5,50], -"classspdlog_1_1logger.html#abf7d5c94e0c295aa2e55e1139b787a57":[1,0,2,5,26], -"classspdlog_1_1logger.html#ac6c864952112a3bbe4084884cc1d64a1":[1,0,2,5,14], -"classspdlog_1_1logger.html#ac7c6ed0f30ace90402254dc2d3ef1453":[1,0,2,5,30], -"classspdlog_1_1logger.html#aca96637e71ab459738ccc7287be28c2e":[1,0,2,5,9], -"classspdlog_1_1logger.html#ae59d1c2d5b3a4cc4807534c73b46f297":[1,0,2,5,25], -"classspdlog_1_1logger.html#aeeb9d71caa8f357f4255447fb72135d3":[1,0,2,5,32], -"classspdlog_1_1logger.html#af167b5b45a369b3cef019b40a87ed71d":[1,0,2,5,48], -"classspdlog_1_1logger.html#af1f2f69f6bbbe9eb23cf428d66d20f70":[1,0,2,5,1], -"classspdlog_1_1logger.html#af9153fa3a0735a535ea56f684dc53256":[1,0,2,5,44], -"classspdlog_1_1logger.html#afd373cd857f49de170d9a23f1dd34bc0":[1,0,2,5,31], -"classspdlog_1_1pattern__formatter.html":[1,0,2,6], -"classspdlog_1_1pattern__formatter.html#a3c7051314c9422b667e254cb27d81b80":[1,0,2,6,2], -"classspdlog_1_1pattern__formatter.html#a4c11f41c2e6a62ac10e80170c0958192":[1,0,2,6,1], -"classspdlog_1_1pattern__formatter.html#a73a60f53c23e860a2c1229c0781819f9":[1,0,2,6,3], -"classspdlog_1_1pattern__formatter.html#a77d5f83cf0e00029d5796b81de1e1a9e":[1,0,2,6,0], -"classspdlog_1_1pattern__formatter.html#a868ba15a181c7a407780aaa84902de31":[1,0,2,6,5], -"classspdlog_1_1pattern__formatter.html#ae43e84d7421ee7810b22ce1dc817ca3f":[1,0,2,6,4], -"classspdlog_1_1sinks_1_1android__sink.html":[1,0,2,1,0], -"classspdlog_1_1sinks_1_1android__sink.html#ab91c7aabd013d009ff811e6d34324128":[1,0,2,1,0,2], -"classspdlog_1_1sinks_1_1android__sink.html#ac71785899fb01c7b0328b66b3727e2c3":[1,0,2,1,0,1], -"classspdlog_1_1sinks_1_1android__sink.html#afc2727bf62737809cd3f2105e5637540":[1,0,2,1,0,0], -"classspdlog_1_1sinks_1_1ansicolor__sink.html":[1,0,2,1,1], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a030c3495398d4f320ad444ca940b4731":[1,0,2,1,1,8], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a042a6ab886430570095737e1984e7c6e":[1,0,2,1,1,5], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a0cf149033d141e033f2ffb4b239f84f6":[1,0,2,1,1,25], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a22d86f2cb36da074052308603f058764":[1,0,2,1,1,32], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a2677f9c054be6ae2a2e673a92ba27189":[1,0,2,1,1,34], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a3802a11d60d725bb27b3a6aaff62bfed":[1,0,2,1,1,18], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a3c0587e868d2a42f96b878c6031333a0":[1,0,2,1,1,4], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a628bbe153b16a66b33566608794b82fc":[1,0,2,1,1,23], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a681736d8ce3d3551bdb51e053a839fc3":[1,0,2,1,1,16], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a6b2e0a6f8d365e054a255b631c4d4046":[1,0,2,1,1,17], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a7450ec0f85ad82c7830b11e1f54f1606":[1,0,2,1,1,28], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a74514f96774a00d0a7300b7a625c5044":[1,0,2,1,1,33], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a7a232ef41d85a03d99053ee931fb11a4":[1,0,2,1,1,30], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a7d2fcd5a2f9a3f02e64648a609a45fb1":[1,0,2,1,1,6], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a8b4b2900e0db2ed81b1d87531c75db70":[1,0,2,1,1,22], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a9618b1494bbc280913755f76abde2ed4":[1,0,2,1,1,10], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a99718be9a953edac6cae0371bc00fb2f":[1,0,2,1,1,0], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#a9a665375cbfd2c7ab4a07004df386fce":[1,0,2,1,1,20], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#aa52fbe671a7c1fbeaf784b8a325745c6":[1,0,2,1,1,15], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#aa5f719a0fe17fe167d2c90e65173865d":[1,0,2,1,1,13], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#aa66893db05fcfebc131c66b7db30ea49":[1,0,2,1,1,26], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab169c076bac30ee54cf369a7f6bfb2ea":[1,0,2,1,1,3], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab3b3847f7cfac7e21e5a4300ef0295f0":[1,0,2,1,1,14], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab42fb978ba2ad9d004bf31903f0d0edc":[1,0,2,1,1,27], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab5c0ce75c9457f5125a441555287b8d2":[1,0,2,1,1,29], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab762e65612c98bbc6b264fb4b042fc9c":[1,0,2,1,1,19], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab84f8a9299e060e55dcfbe333806aedc":[1,0,2,1,1,9], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#abca2e1439a310ff1a4d75044a5c718d1":[1,0,2,1,1,2], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#ac755cd237351fa5cdf4910e491ddbf97":[1,0,2,1,1,31], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#ac887dfeac8f16dbd96128398333786f5":[1,0,2,1,1,21], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#ad19df81408ed6dbbe62fe4a1e5a7fca8":[1,0,2,1,1,7], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#addc3addb0060ca767421a4a3149c4747":[1,0,2,1,1,24], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#addca553132fac957295bd585ce6f59a8":[1,0,2,1,1,12], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#aed8c41cc6f792b27bc37d2f46536268d":[1,0,2,1,1,1], -"classspdlog_1_1sinks_1_1ansicolor__sink.html#afe5bffc4e1d4977d2a351c8772f2f676":[1,0,2,1,1,11], -"classspdlog_1_1sinks_1_1base__sink.html":[1,0,2,1,2], -"classspdlog_1_1sinks_1_1base__sink.html#a1b99823aeb2513a891bba168639421a9":[1,0,2,1,2,5], -"classspdlog_1_1sinks_1_1base__sink.html#a2b0a0b95f1e7272b443de67b46914152":[1,0,2,1,2,8], -"classspdlog_1_1sinks_1_1base__sink.html#a2de93f1edc37e891555685ed4e520343":[1,0,2,1,2,2], -"classspdlog_1_1sinks_1_1base__sink.html#a38658ba620d110065ce93e178b9ec60e":[1,0,2,1,2,0], -"classspdlog_1_1sinks_1_1base__sink.html#a56bc5fc8e03dc0aeb6679856ffee7fb4":[1,0,2,1,2,9], -"classspdlog_1_1sinks_1_1base__sink.html#a5ac2b237c60f68a18122a1ca09b812b4":[1,0,2,1,2,3], -"classspdlog_1_1sinks_1_1base__sink.html#a6a72602ffe60fdfe6a3cbfbecca54bb0":[1,0,2,1,2,4], -"classspdlog_1_1sinks_1_1base__sink.html#a929422554ce18d8bffd9b4d75cc7acf3":[1,0,2,1,2,11], -"classspdlog_1_1sinks_1_1base__sink.html#a9639062f2ce3598203c0d958576491d1":[1,0,2,1,2,1], -"classspdlog_1_1sinks_1_1base__sink.html#ad66435c2e9e0adb06ee279dde88a2243":[1,0,2,1,2,6], -"classspdlog_1_1sinks_1_1base__sink.html#ad698d300cb7f5e58b2aa1b9907cdbd87":[1,0,2,1,2,10], -"classspdlog_1_1sinks_1_1base__sink.html#aed93aabfba62b684e603eb525671c864":[1,0,2,1,2,7], -"classspdlog_1_1sinks_1_1basic__file__sink.html":[1,0,2,1,3], -"classspdlog_1_1sinks_1_1basic__file__sink.html#a5efef88cd9a88234e61a94ffd2f0312e":[1,0,2,1,3,1], -"classspdlog_1_1sinks_1_1basic__file__sink.html#a689a12d9459d081edff7f8c7d3af227c":[1,0,2,1,3,2], -"classspdlog_1_1sinks_1_1basic__file__sink.html#a799e95cc46fd69b03f4ef7497aa21436":[1,0,2,1,3,0], -"classspdlog_1_1sinks_1_1basic__file__sink.html#a8d9239f225478ade4e879dc643f577ba":[1,0,2,1,3,3], -"classspdlog_1_1sinks_1_1daily__file__sink.html":[1,0,2,1,4], -"classspdlog_1_1sinks_1_1daily__file__sink.html#a37199f25868ac70b91e4f126bcc4b3f8":[1,0,2,1,4,2], -"classspdlog_1_1sinks_1_1daily__file__sink.html#a442164b0813283bc631ad39708fb3669":[1,0,2,1,4,0], -"classspdlog_1_1sinks_1_1daily__file__sink.html#a5563c23f71ed255510c79bafd5084339":[1,0,2,1,4,1], -"classspdlog_1_1sinks_1_1daily__file__sink.html#ac82447cddb7a2ddb45ab81f97b74286d":[1,0,2,1,4,3], -"classspdlog_1_1sinks_1_1dist__sink.html":[1,0,2,1,6], -"classspdlog_1_1sinks_1_1dist__sink.html#a3d9d8c330d7d6455f45db77d4e6977f4":[1,0,2,1,6,10], -"classspdlog_1_1sinks_1_1dist__sink.html#a516ef929a8cd73df2ead2e0086e04607":[1,0,2,1,6,9], -"classspdlog_1_1sinks_1_1dist__sink.html#a5e83e285fcceaab7ee4c4736c2decef0":[1,0,2,1,6,6], -"classspdlog_1_1sinks_1_1dist__sink.html#a6f77a1e2f45ed85ee8ed554cf7442d4e":[1,0,2,1,6,7], -"classspdlog_1_1sinks_1_1dist__sink.html#a6f91b5522c12fd448ca2fd7cb8fe0097":[1,0,2,1,6,4], -"classspdlog_1_1sinks_1_1dist__sink.html#a790a80f63276473cedbce99047adcab0":[1,0,2,1,6,3], -"classspdlog_1_1sinks_1_1dist__sink.html#aa0e154cef03e368fefaa7bc845d682a1":[1,0,2,1,6,8], -"classspdlog_1_1sinks_1_1dist__sink.html#ab5cfe7f044b6381435eac6dc273384e5":[1,0,2,1,6,0], -"classspdlog_1_1sinks_1_1dist__sink.html#ac1537fdc6225fd57cc819e1fb9c5f8c7":[1,0,2,1,6,5], -"classspdlog_1_1sinks_1_1dist__sink.html#ae2250f59f23ecaf3214da6059198ad3c":[1,0,2,1,6,2], -"classspdlog_1_1sinks_1_1dist__sink.html#afadef20aeb435c8b62b2efa2f0906de5":[1,0,2,1,6,1], -"classspdlog_1_1sinks_1_1null__sink.html":[1,0,2,1,7], -"classspdlog_1_1sinks_1_1null__sink.html#a074c0d22167808789440953111a97926":[1,0,2,1,7,0], -"classspdlog_1_1sinks_1_1null__sink.html#a158c702167f6a46609de2c561f82973c":[1,0,2,1,7,1], -"classspdlog_1_1sinks_1_1ostream__sink.html":[1,0,2,1,8], -"classspdlog_1_1sinks_1_1ostream__sink.html#a53db4ea84203737b100365438d1951b4":[1,0,2,1,8,6], -"classspdlog_1_1sinks_1_1ostream__sink.html#a5778019dfdf7dc09ea798c490810eaed":[1,0,2,1,8,5], -"classspdlog_1_1sinks_1_1ostream__sink.html#a727591b2a4ca044848cacccfca4eb3af":[1,0,2,1,8,3], -"classspdlog_1_1sinks_1_1ostream__sink.html#a761f1c26210fe42673af4734b38fe167":[1,0,2,1,8,1], -"classspdlog_1_1sinks_1_1ostream__sink.html#a77f36cef81daf668ec55a07fa191d1e7":[1,0,2,1,8,4], -"classspdlog_1_1sinks_1_1ostream__sink.html#a96458aa6b79019744ef4cb61979c39e0":[1,0,2,1,8,2], -"classspdlog_1_1sinks_1_1ostream__sink.html#aa038c6518dc69c08a1251e7469bc4fd8":[1,0,2,1,8,0], -"classspdlog_1_1sinks_1_1rotating__file__sink.html":[1,0,2,1,9], -"classspdlog_1_1sinks_1_1rotating__file__sink.html#a05d77d7013bc54f55cac702c122ac1c9":[1,0,2,1,9,1], -"classspdlog_1_1sinks_1_1rotating__file__sink.html#a16489efcc8bd112bbc0151f54ba46f2e":[1,0,2,1,9,2], -"classspdlog_1_1sinks_1_1rotating__file__sink.html#a1dcebdde175de15bee24da6e9ec70990":[1,0,2,1,9,0], -"classspdlog_1_1sinks_1_1rotating__file__sink.html#a3cf93e445ad92380c7d352f971cd76a4":[1,0,2,1,9,4], -"classspdlog_1_1sinks_1_1rotating__file__sink.html#ae93e4792b76f73bb0be8e50b5c5e889b":[1,0,2,1,9,3], -"classspdlog_1_1sinks_1_1sink.html":[1,0,2,1,10], -"classspdlog_1_1sinks_1_1sink.html#a038a91409395dca18a7ccca81622fd83":[1,0,2,1,10,7], -"classspdlog_1_1sinks_1_1sink.html#a1c932f19f67057fbe7518999bdd5c422":[1,0,2,1,10,9], -"classspdlog_1_1sinks_1_1sink.html#a2637af0973ac863eedd76ee683279c0b":[1,0,2,1,10,2], -"classspdlog_1_1sinks_1_1sink.html#a435da07b59e1165b38d53635cdada30a":[1,0,2,1,10,11], -"classspdlog_1_1sinks_1_1sink.html#a51d8f34ad79064e0dc13c6013236e427":[1,0,2,1,10,5], -"classspdlog_1_1sinks_1_1sink.html#a7e5cfd4b683c8bfa8fbd602d7f409632":[1,0,2,1,10,8], -"classspdlog_1_1sinks_1_1sink.html#a8a0674ae3bca8f1617aef820e23a2ccd":[1,0,2,1,10,3], -"classspdlog_1_1sinks_1_1sink.html#aa0d19f09363a11b63b4a9b1d46f8a4b3":[1,0,2,1,10,10], -"classspdlog_1_1sinks_1_1sink.html#ac410f2229e583a75337a5fdf45d020be":[1,0,2,1,10,6], -"classspdlog_1_1sinks_1_1sink.html#ae32182a47ebea9c66c02e6a9822ffdcd":[1,0,2,1,10,0], -"classspdlog_1_1sinks_1_1sink.html#ae59ca2b418c5cdfed1c04e49a444be1c":[1,0,2,1,10,4], -"classspdlog_1_1sinks_1_1sink.html#aea8106cba54ae87840fc1cf33cdfd2c1":[1,0,2,1,10,1], -"classspdlog_1_1sinks_1_1stdout__sink.html":[1,0,2,1,11], -"classspdlog_1_1sinks_1_1stdout__sink.html#a0bee23de61cbea7c1dfb5e8712a98d74":[1,0,2,1,11,6], -"classspdlog_1_1sinks_1_1stdout__sink.html#a5b8759dab80ca44e9d185e21aa797d2a":[1,0,2,1,11,8], -"classspdlog_1_1sinks_1_1stdout__sink.html#a8546278774f901c3b5159876154e2eea":[1,0,2,1,11,0], -"classspdlog_1_1sinks_1_1stdout__sink.html#aadb52e8ba9e2992f847c46ec521b4407":[1,0,2,1,11,1], -"classspdlog_1_1sinks_1_1stdout__sink.html#ab7761f533c069ef52a256573de29077d":[1,0,2,1,11,3], -"classspdlog_1_1sinks_1_1stdout__sink.html#ada2b3ef5a7821873df46ebda72b77e6c":[1,0,2,1,11,7], -"classspdlog_1_1sinks_1_1stdout__sink.html#adda1fffa1daf4565f72b3e94734d984a":[1,0,2,1,11,5], -"classspdlog_1_1sinks_1_1stdout__sink.html#ae0e434d7d55f6ec9c05ff308bc8e673b":[1,0,2,1,11,2], -"classspdlog_1_1sinks_1_1stdout__sink.html#af3a13cc82215681bdd7ca5e33a7c28b5":[1,0,2,1,11,4], -"classspdlog_1_1sinks_1_1syslog__sink.html":[1,0,2,1,12], -"classspdlog_1_1sinks_1_1syslog__sink.html#a303bccf40cd03356510391c493078005":[1,0,2,1,12,5], -"classspdlog_1_1sinks_1_1syslog__sink.html#a3e2454370f91c3fe2befb3f24e25ede7":[1,0,2,1,12,4], -"classspdlog_1_1sinks_1_1syslog__sink.html#a505adae200592eab1e093ab258ad0291":[1,0,2,1,12,2], -"classspdlog_1_1sinks_1_1syslog__sink.html#a6afb5ba7ef5e5f2950e624ec650fb562":[1,0,2,1,12,3], -"classspdlog_1_1sinks_1_1syslog__sink.html#acc60de632a07b329aeba41ee48ced4f6":[1,0,2,1,12,0], -"classspdlog_1_1sinks_1_1syslog__sink.html#ae440dafe6eca68065ac0b6438761ac38":[1,0,2,1,12,1], -"classspdlog_1_1sinks_1_1wincolor__sink.html":[1,0,2,1,13], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a229d666b7880d587aefa8c5d999acfb4":[1,0,2,1,13,1], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a32682f38336031a282e1681622f1cff4":[1,0,2,1,13,13], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a3746a35fc36218e76dc3080e52fe6233":[1,0,2,1,13,3], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a39daa889c7395936e2caf95baf2c4181":[1,0,2,1,13,11], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a48cc1a252565bdbb66b12ba2a40e62f9":[1,0,2,1,13,7], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a4ed05c6780bc65806080c88202d80577":[1,0,2,1,13,0] +"classspdlog_1_1details_1_1registry.html#a43cb4919dd9f66cf4eeeeaf9774caade":[2,0,2,0,43,8], +"classspdlog_1_1details_1_1registry.html#a47543b9b7ebe0dc3664cfd5f3e385905":[2,0,2,0,43,17], +"classspdlog_1_1details_1_1registry.html#a4b8494e781ed3151586b307cca63edb7":[2,0,2,0,43,19], +"classspdlog_1_1details_1_1registry.html#a58a1bbb352f751f6b729bc57bfadd6be":[2,0,2,0,43,12], +"classspdlog_1_1details_1_1registry.html#a781454ea62603cfaebddf14ec2ec9985":[2,0,2,0,43,1], +"classspdlog_1_1details_1_1registry.html#a78eb75a31640c0bb204d7f2123ba825c":[2,0,2,0,43,6], +"classspdlog_1_1details_1_1registry.html#a7e015c41e9c32c9f1e8e7f9adc578cee":[2,0,2,0,43,11], +"classspdlog_1_1details_1_1registry.html#a8f8dcb7f6b7987716cfbcb92bbe96517":[2,0,2,0,43,18], +"classspdlog_1_1details_1_1registry.html#aa5503db04a70a06f97e7c1218aa8cbe2":[2,0,2,0,43,20], +"classspdlog_1_1details_1_1registry.html#ab5c1a2f7b8e2e9eec4e0fa75d9167f3b":[2,0,2,0,43,0], +"classspdlog_1_1details_1_1registry.html#ab77fb7513b2e3e6442a83f037543e391":[2,0,2,0,43,14], +"classspdlog_1_1details_1_1registry.html#ac93f888f316b0488414771ad6533b6a9":[2,0,2,0,43,21], +"classspdlog_1_1details_1_1registry.html#ae2a45628046a1d0cd3f8de81a5556acb":[2,0,2,0,43,16], +"classspdlog_1_1details_1_1registry.html#af6c1f16e0433b6400aef5219fa1b81ea":[2,0,2,0,43,2], +"classspdlog_1_1details_1_1registry.html#af86cd2fcbec489ebc343815f49a6e076":[2,0,2,0,43,10], +"classspdlog_1_1details_1_1scoped__pad.html":[2,0,2,0,45], +"classspdlog_1_1details_1_1scoped__pad.html#a1da16eb464801b04d397174e7338d990":[2,0,2,0,45,0], +"classspdlog_1_1details_1_1scoped__pad.html#a945477b9e2c1ee236238bb63129a767d":[2,0,2,0,45,1], +"classspdlog_1_1details_1_1scoped__pad.html#ad901678fa607829f784cd293f712a112":[2,0,2,0,45,2], +"classspdlog_1_1details_1_1short__level__formatter.html":[2,0,2,0,46], +"classspdlog_1_1details_1_1short__level__formatter.html#acf241e8ab58e6142e02a9c493034f81d":[2,0,2,0,46,1], +"classspdlog_1_1details_1_1short__level__formatter.html#adcc003358c5cea986bb25ae092df0f70":[2,0,2,0,46,0], +"classspdlog_1_1details_1_1source__filename__formatter.html":[2,0,2,0,47], +"classspdlog_1_1details_1_1source__filename__formatter.html#a9a2e549eda5c8044c76281be33b04b38":[2,0,2,0,47,1], +"classspdlog_1_1details_1_1source__filename__formatter.html#a9feacaecd2eaa3aee5eb992c7334dc9d":[2,0,2,0,47,0], +"classspdlog_1_1details_1_1source__funcname__formatter.html":[2,0,2,0,48], +"classspdlog_1_1details_1_1source__funcname__formatter.html#a1f20c622f780c9f9e8696e9c5960dcb8":[2,0,2,0,48,0], +"classspdlog_1_1details_1_1source__funcname__formatter.html#a7628b8914c638affa0bf0fc9de62f0e4":[2,0,2,0,48,1], +"classspdlog_1_1details_1_1source__linenum__formatter.html":[2,0,2,0,49], +"classspdlog_1_1details_1_1source__linenum__formatter.html#ac165ced330bd04ea5485e182b9d913a2":[2,0,2,0,49,1], +"classspdlog_1_1details_1_1source__linenum__formatter.html#ac8899bb5c6919498b71f2575f40ca504":[2,0,2,0,49,0], +"classspdlog_1_1details_1_1source__location__formatter.html":[2,0,2,0,50], +"classspdlog_1_1details_1_1source__location__formatter.html#a045946c595dd299307511d89b404fe31":[2,0,2,0,50,0], +"classspdlog_1_1details_1_1source__location__formatter.html#af0d34490d35c582fdb1553a27f03e147":[2,0,2,0,50,1], +"classspdlog_1_1details_1_1t__formatter.html":[2,0,2,0,52], +"classspdlog_1_1details_1_1t__formatter.html#a58cd7de54067c8f05815a94edaf43e17":[2,0,2,0,52,1], +"classspdlog_1_1details_1_1t__formatter.html#a8cd4b638e72934a3ca2517d00e2aa06b":[2,0,2,0,52,0], +"classspdlog_1_1details_1_1thread__pool.html":[2,0,2,0,53], +"classspdlog_1_1details_1_1thread__pool.html#a1a62f3ab1474d69cd1e25143664e856d":[2,0,2,0,53,5], +"classspdlog_1_1details_1_1thread__pool.html#a27e41d821a8aa8137bc0e64df031ccd4":[2,0,2,0,53,3], +"classspdlog_1_1details_1_1thread__pool.html#a2ac821eb936f7373cc51949fb05e841c":[2,0,2,0,53,2], +"classspdlog_1_1details_1_1thread__pool.html#a5e8f86d40f81af1d22a21ee0368287b2":[2,0,2,0,53,4], +"classspdlog_1_1details_1_1thread__pool.html#a70cc09729d82174d84640eaface150e0":[2,0,2,0,53,8], +"classspdlog_1_1details_1_1thread__pool.html#a77d633d56b0b5e1fe37965faa4642df5":[2,0,2,0,53,1], +"classspdlog_1_1details_1_1thread__pool.html#a997d954a51e8fa8aa92071d1a9c08536":[2,0,2,0,53,0], +"classspdlog_1_1details_1_1thread__pool.html#aa851092603e816f78dd81bb980232048":[2,0,2,0,53,7], +"classspdlog_1_1details_1_1thread__pool.html#adc34920f65797d8f54986dc1894a8804":[2,0,2,0,53,6], +"classspdlog_1_1details_1_1v__formatter.html":[2,0,2,0,54], +"classspdlog_1_1details_1_1v__formatter.html#a54e77c3b682da6b1417f6a2adb23b018":[2,0,2,0,54,0], +"classspdlog_1_1details_1_1v__formatter.html#af794a57051f743266fdb6ccf7fd6c61f":[2,0,2,0,54,1], +"classspdlog_1_1details_1_1z__formatter.html":[2,0,2,0,56], +"classspdlog_1_1details_1_1z__formatter.html#a09f0b7e5cf2bc8260375d38ac9b14a31":[2,0,2,0,56,2], +"classspdlog_1_1details_1_1z__formatter.html#a230a4469c1ffda4d06bed933ecca1fd5":[2,0,2,0,56,1], +"classspdlog_1_1details_1_1z__formatter.html#a3c7902ee9047ef7c0d53cf1e9c4cd834":[2,0,2,0,56,0], +"classspdlog_1_1details_1_1z__formatter.html#a804a8b5035af28939f4803033c951edc":[2,0,2,0,56,5], +"classspdlog_1_1details_1_1z__formatter.html#ada7a5e9a3c30039cbfb684b7743b8945":[2,0,2,0,56,3], +"classspdlog_1_1details_1_1z__formatter.html#aea05e7a7a960bb9450b00aa9558e78fe":[2,0,2,0,56,4], +"classspdlog_1_1formatter.html":[2,0,2,4], +"classspdlog_1_1formatter.html#a63ee38e660519d09020b21dd7d54d4fe":[2,0,2,4,0], +"classspdlog_1_1formatter.html#ad50e2b119d08fad952b0f885455b3bee":[2,0,2,4,2], +"classspdlog_1_1formatter.html#ae9857a794904d98a4a9527a742e37129":[2,0,2,4,1], +"classspdlog_1_1logger.html":[2,0,2,5], +"classspdlog_1_1logger.html#a00677a369b642aec9e8428374ee09df6":[2,0,2,5,47], +"classspdlog_1_1logger.html#a00c27f251b795caf028718b605572e1f":[2,0,2,5,39], +"classspdlog_1_1logger.html#a0d0307a6501a9f56689c386a006991fe":[2,0,2,5,11], +"classspdlog_1_1logger.html#a0f61c15b955775652da9b2b813d9f3cd":[2,0,2,5,35], +"classspdlog_1_1logger.html#a144338f88fd2d2bec2cae951e214a9a5":[2,0,2,5,12], +"classspdlog_1_1logger.html#a16d3d178ac86ea71b8a0becfca0c5449":[2,0,2,5,27], +"classspdlog_1_1logger.html#a1b9b7304f017163d181692e41101b648":[2,0,2,5,17], +"classspdlog_1_1logger.html#a1e1dff0caa0d1bf072739dfcc1e331d8":[2,0,2,5,21], +"classspdlog_1_1logger.html#a1e4b2c515490efb5456665a9a64382d9":[2,0,2,5,23], +"classspdlog_1_1logger.html#a1f60afc8308e0127c2eab2619ae352d5":[2,0,2,5,8], +"classspdlog_1_1logger.html#a20dc8198d08c98f84ae10be635108bef":[2,0,2,5,22], +"classspdlog_1_1logger.html#a24a3b3250f3fe52fa7c3053e77076f07":[2,0,2,5,51], +"classspdlog_1_1logger.html#a3432e21bdc19d74024b57cc3f26a8471":[2,0,2,5,10], +"classspdlog_1_1logger.html#a3691352a0a61bcba0bf3fb32d236bce5":[2,0,2,5,3], +"classspdlog_1_1logger.html#a3c5140393ec153b2b8478361aac80eb6":[2,0,2,5,7], +"classspdlog_1_1logger.html#a3d11416764fe7ead94868d4c6438f583":[2,0,2,5,6], +"classspdlog_1_1logger.html#a3e623bd54bd38315f66063ae8907ce17":[2,0,2,5,45], +"classspdlog_1_1logger.html#a403ccd4cd1bc85c6ba6b1517c37726c7":[2,0,2,5,34], +"classspdlog_1_1logger.html#a414da79baaad89ba6ffe0e738027d234":[2,0,2,5,2], +"classspdlog_1_1logger.html#a43ac8d73671a109cba253eadb0b049e2":[2,0,2,5,38], +"classspdlog_1_1logger.html#a47c021d339c1f246758e1a87a41668e3":[2,0,2,5,18], +"classspdlog_1_1logger.html#a4ad269959d007dcbe38cdb3c4e70d85b":[2,0,2,5,28], +"classspdlog_1_1logger.html#a4ad269959d007dcbe38cdb3c4e70d85b":[2,0,2,5,29], +"classspdlog_1_1logger.html#a50417cea5f81704cd4800aaafa944bc5":[2,0,2,5,24], +"classspdlog_1_1logger.html#a55bf9c5c960391a56399b5f1ea601b4b":[2,0,2,5,19], +"classspdlog_1_1logger.html#a59a8516fe055c6b78c9b1822148f78ec":[2,0,2,5,41], +"classspdlog_1_1logger.html#a5d3b321a0319e9b8b27bf04f206a9900":[2,0,2,5,0], +"classspdlog_1_1logger.html#a649a3c1a1b380e2488a93f9c3ae694de":[2,0,2,5,5], +"classspdlog_1_1logger.html#a66e008d30a46c33283c4546f3851a80a":[2,0,2,5,42], +"classspdlog_1_1logger.html#a69f7cbb7e1b2d5204a409906a62c1e94":[2,0,2,5,46], +"classspdlog_1_1logger.html#a72f80c2e379df565c628adab1efdab34":[2,0,2,5,20], +"classspdlog_1_1logger.html#a7d93aa2653b924f2c9981d026aea9822":[2,0,2,5,40], +"classspdlog_1_1logger.html#a7ef1e291dcb766951fc5c25f110d775f":[2,0,2,5,49], +"classspdlog_1_1logger.html#a861bb4d4e65de07966148822075bee86":[2,0,2,5,15], +"classspdlog_1_1logger.html#a94c77395570c462953ded4188aaaf655":[2,0,2,5,37], +"classspdlog_1_1logger.html#a98981b19089a6000fdfa8765af52ef0e":[2,0,2,5,16], +"classspdlog_1_1logger.html#a9c5b880ddf9a9c86ec9893364e57071d":[2,0,2,5,33], +"classspdlog_1_1logger.html#a9ce73acaa12b7dbbecde6ac3bc7353e5":[2,0,2,5,13], +"classspdlog_1_1logger.html#aa1027cf4e4d6fd7fcf361534affe7bdc":[2,0,2,5,43], +"classspdlog_1_1logger.html#aa1bbe703cdeed2aef722a97a2bc1a800":[2,0,2,5,36], +"classspdlog_1_1logger.html#aa6074d763b0df4e7d16ccf7d307a3938":[2,0,2,5,4], +"classspdlog_1_1logger.html#aad05282c338eb617ca260e40ab8134bc":[2,0,2,5,50], +"classspdlog_1_1logger.html#abf7d5c94e0c295aa2e55e1139b787a57":[2,0,2,5,26], +"classspdlog_1_1logger.html#ac6c864952112a3bbe4084884cc1d64a1":[2,0,2,5,14], +"classspdlog_1_1logger.html#ac7c6ed0f30ace90402254dc2d3ef1453":[2,0,2,5,30], +"classspdlog_1_1logger.html#aca96637e71ab459738ccc7287be28c2e":[2,0,2,5,9], +"classspdlog_1_1logger.html#ae59d1c2d5b3a4cc4807534c73b46f297":[2,0,2,5,25], +"classspdlog_1_1logger.html#aeeb9d71caa8f357f4255447fb72135d3":[2,0,2,5,32], +"classspdlog_1_1logger.html#af167b5b45a369b3cef019b40a87ed71d":[2,0,2,5,48], +"classspdlog_1_1logger.html#af1f2f69f6bbbe9eb23cf428d66d20f70":[2,0,2,5,1], +"classspdlog_1_1logger.html#af9153fa3a0735a535ea56f684dc53256":[2,0,2,5,44], +"classspdlog_1_1logger.html#afd373cd857f49de170d9a23f1dd34bc0":[2,0,2,5,31], +"classspdlog_1_1pattern__formatter.html":[2,0,2,6], +"classspdlog_1_1pattern__formatter.html#a3c7051314c9422b667e254cb27d81b80":[2,0,2,6,2], +"classspdlog_1_1pattern__formatter.html#a4c11f41c2e6a62ac10e80170c0958192":[2,0,2,6,1], +"classspdlog_1_1pattern__formatter.html#a73a60f53c23e860a2c1229c0781819f9":[2,0,2,6,3], +"classspdlog_1_1pattern__formatter.html#a77d5f83cf0e00029d5796b81de1e1a9e":[2,0,2,6,0], +"classspdlog_1_1pattern__formatter.html#a868ba15a181c7a407780aaa84902de31":[2,0,2,6,5], +"classspdlog_1_1pattern__formatter.html#ae43e84d7421ee7810b22ce1dc817ca3f":[2,0,2,6,4], +"classspdlog_1_1sinks_1_1android__sink.html":[2,0,2,1,0], +"classspdlog_1_1sinks_1_1android__sink.html#ab91c7aabd013d009ff811e6d34324128":[2,0,2,1,0,2], +"classspdlog_1_1sinks_1_1android__sink.html#ac71785899fb01c7b0328b66b3727e2c3":[2,0,2,1,0,1], +"classspdlog_1_1sinks_1_1android__sink.html#afc2727bf62737809cd3f2105e5637540":[2,0,2,1,0,0], +"classspdlog_1_1sinks_1_1ansicolor__sink.html":[2,0,2,1,1], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a030c3495398d4f320ad444ca940b4731":[2,0,2,1,1,8], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a042a6ab886430570095737e1984e7c6e":[2,0,2,1,1,5], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a0cf149033d141e033f2ffb4b239f84f6":[2,0,2,1,1,25], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a22d86f2cb36da074052308603f058764":[2,0,2,1,1,32], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a2677f9c054be6ae2a2e673a92ba27189":[2,0,2,1,1,34], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a3802a11d60d725bb27b3a6aaff62bfed":[2,0,2,1,1,18], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a3c0587e868d2a42f96b878c6031333a0":[2,0,2,1,1,4], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a628bbe153b16a66b33566608794b82fc":[2,0,2,1,1,23], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a681736d8ce3d3551bdb51e053a839fc3":[2,0,2,1,1,16], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a6b2e0a6f8d365e054a255b631c4d4046":[2,0,2,1,1,17], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a7450ec0f85ad82c7830b11e1f54f1606":[2,0,2,1,1,28], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a74514f96774a00d0a7300b7a625c5044":[2,0,2,1,1,33], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a7a232ef41d85a03d99053ee931fb11a4":[2,0,2,1,1,30], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a7d2fcd5a2f9a3f02e64648a609a45fb1":[2,0,2,1,1,6], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a8b4b2900e0db2ed81b1d87531c75db70":[2,0,2,1,1,22], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a9618b1494bbc280913755f76abde2ed4":[2,0,2,1,1,10], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a99718be9a953edac6cae0371bc00fb2f":[2,0,2,1,1,0], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#a9a665375cbfd2c7ab4a07004df386fce":[2,0,2,1,1,20], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#aa52fbe671a7c1fbeaf784b8a325745c6":[2,0,2,1,1,15], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#aa5f719a0fe17fe167d2c90e65173865d":[2,0,2,1,1,13], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#aa66893db05fcfebc131c66b7db30ea49":[2,0,2,1,1,26], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab169c076bac30ee54cf369a7f6bfb2ea":[2,0,2,1,1,3], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab3b3847f7cfac7e21e5a4300ef0295f0":[2,0,2,1,1,14], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab42fb978ba2ad9d004bf31903f0d0edc":[2,0,2,1,1,27], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab5c0ce75c9457f5125a441555287b8d2":[2,0,2,1,1,29], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab762e65612c98bbc6b264fb4b042fc9c":[2,0,2,1,1,19], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#ab84f8a9299e060e55dcfbe333806aedc":[2,0,2,1,1,9], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#abca2e1439a310ff1a4d75044a5c718d1":[2,0,2,1,1,2], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#ac755cd237351fa5cdf4910e491ddbf97":[2,0,2,1,1,31], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#ac887dfeac8f16dbd96128398333786f5":[2,0,2,1,1,21], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#ad19df81408ed6dbbe62fe4a1e5a7fca8":[2,0,2,1,1,7], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#addc3addb0060ca767421a4a3149c4747":[2,0,2,1,1,24], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#addca553132fac957295bd585ce6f59a8":[2,0,2,1,1,12], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#aed8c41cc6f792b27bc37d2f46536268d":[2,0,2,1,1,1], +"classspdlog_1_1sinks_1_1ansicolor__sink.html#afe5bffc4e1d4977d2a351c8772f2f676":[2,0,2,1,1,11], +"classspdlog_1_1sinks_1_1base__sink.html":[2,0,2,1,2], +"classspdlog_1_1sinks_1_1base__sink.html#a1b99823aeb2513a891bba168639421a9":[2,0,2,1,2,5], +"classspdlog_1_1sinks_1_1base__sink.html#a2b0a0b95f1e7272b443de67b46914152":[2,0,2,1,2,8], +"classspdlog_1_1sinks_1_1base__sink.html#a2de93f1edc37e891555685ed4e520343":[2,0,2,1,2,2], +"classspdlog_1_1sinks_1_1base__sink.html#a38658ba620d110065ce93e178b9ec60e":[2,0,2,1,2,0], +"classspdlog_1_1sinks_1_1base__sink.html#a56bc5fc8e03dc0aeb6679856ffee7fb4":[2,0,2,1,2,9], +"classspdlog_1_1sinks_1_1base__sink.html#a5ac2b237c60f68a18122a1ca09b812b4":[2,0,2,1,2,3], +"classspdlog_1_1sinks_1_1base__sink.html#a6a72602ffe60fdfe6a3cbfbecca54bb0":[2,0,2,1,2,4], +"classspdlog_1_1sinks_1_1base__sink.html#a929422554ce18d8bffd9b4d75cc7acf3":[2,0,2,1,2,11], +"classspdlog_1_1sinks_1_1base__sink.html#a9639062f2ce3598203c0d958576491d1":[2,0,2,1,2,1], +"classspdlog_1_1sinks_1_1base__sink.html#ad66435c2e9e0adb06ee279dde88a2243":[2,0,2,1,2,6], +"classspdlog_1_1sinks_1_1base__sink.html#ad698d300cb7f5e58b2aa1b9907cdbd87":[2,0,2,1,2,10], +"classspdlog_1_1sinks_1_1base__sink.html#aed93aabfba62b684e603eb525671c864":[2,0,2,1,2,7], +"classspdlog_1_1sinks_1_1basic__file__sink.html":[2,0,2,1,3], +"classspdlog_1_1sinks_1_1basic__file__sink.html#a5efef88cd9a88234e61a94ffd2f0312e":[2,0,2,1,3,1], +"classspdlog_1_1sinks_1_1basic__file__sink.html#a689a12d9459d081edff7f8c7d3af227c":[2,0,2,1,3,2], +"classspdlog_1_1sinks_1_1basic__file__sink.html#a799e95cc46fd69b03f4ef7497aa21436":[2,0,2,1,3,0], +"classspdlog_1_1sinks_1_1basic__file__sink.html#a8d9239f225478ade4e879dc643f577ba":[2,0,2,1,3,3], +"classspdlog_1_1sinks_1_1daily__file__sink.html":[2,0,2,1,4], +"classspdlog_1_1sinks_1_1daily__file__sink.html#a37199f25868ac70b91e4f126bcc4b3f8":[2,0,2,1,4,2], +"classspdlog_1_1sinks_1_1daily__file__sink.html#a442164b0813283bc631ad39708fb3669":[2,0,2,1,4,0], +"classspdlog_1_1sinks_1_1daily__file__sink.html#a5563c23f71ed255510c79bafd5084339":[2,0,2,1,4,1], +"classspdlog_1_1sinks_1_1daily__file__sink.html#ac82447cddb7a2ddb45ab81f97b74286d":[2,0,2,1,4,3], +"classspdlog_1_1sinks_1_1dist__sink.html":[2,0,2,1,6], +"classspdlog_1_1sinks_1_1dist__sink.html#a3d9d8c330d7d6455f45db77d4e6977f4":[2,0,2,1,6,10], +"classspdlog_1_1sinks_1_1dist__sink.html#a516ef929a8cd73df2ead2e0086e04607":[2,0,2,1,6,9], +"classspdlog_1_1sinks_1_1dist__sink.html#a5e83e285fcceaab7ee4c4736c2decef0":[2,0,2,1,6,6], +"classspdlog_1_1sinks_1_1dist__sink.html#a6f77a1e2f45ed85ee8ed554cf7442d4e":[2,0,2,1,6,7], +"classspdlog_1_1sinks_1_1dist__sink.html#a6f91b5522c12fd448ca2fd7cb8fe0097":[2,0,2,1,6,4], +"classspdlog_1_1sinks_1_1dist__sink.html#a790a80f63276473cedbce99047adcab0":[2,0,2,1,6,3], +"classspdlog_1_1sinks_1_1dist__sink.html#aa0e154cef03e368fefaa7bc845d682a1":[2,0,2,1,6,8], +"classspdlog_1_1sinks_1_1dist__sink.html#ab5cfe7f044b6381435eac6dc273384e5":[2,0,2,1,6,0], +"classspdlog_1_1sinks_1_1dist__sink.html#ac1537fdc6225fd57cc819e1fb9c5f8c7":[2,0,2,1,6,5], +"classspdlog_1_1sinks_1_1dist__sink.html#ae2250f59f23ecaf3214da6059198ad3c":[2,0,2,1,6,2], +"classspdlog_1_1sinks_1_1dist__sink.html#afadef20aeb435c8b62b2efa2f0906de5":[2,0,2,1,6,1], +"classspdlog_1_1sinks_1_1null__sink.html":[2,0,2,1,7], +"classspdlog_1_1sinks_1_1null__sink.html#a074c0d22167808789440953111a97926":[2,0,2,1,7,0], +"classspdlog_1_1sinks_1_1null__sink.html#a158c702167f6a46609de2c561f82973c":[2,0,2,1,7,1], +"classspdlog_1_1sinks_1_1ostream__sink.html":[2,0,2,1,8], +"classspdlog_1_1sinks_1_1ostream__sink.html#a53db4ea84203737b100365438d1951b4":[2,0,2,1,8,6], +"classspdlog_1_1sinks_1_1ostream__sink.html#a5778019dfdf7dc09ea798c490810eaed":[2,0,2,1,8,5], +"classspdlog_1_1sinks_1_1ostream__sink.html#a727591b2a4ca044848cacccfca4eb3af":[2,0,2,1,8,3], +"classspdlog_1_1sinks_1_1ostream__sink.html#a761f1c26210fe42673af4734b38fe167":[2,0,2,1,8,1], +"classspdlog_1_1sinks_1_1ostream__sink.html#a77f36cef81daf668ec55a07fa191d1e7":[2,0,2,1,8,4], +"classspdlog_1_1sinks_1_1ostream__sink.html#a96458aa6b79019744ef4cb61979c39e0":[2,0,2,1,8,2], +"classspdlog_1_1sinks_1_1ostream__sink.html#aa038c6518dc69c08a1251e7469bc4fd8":[2,0,2,1,8,0], +"classspdlog_1_1sinks_1_1rotating__file__sink.html":[2,0,2,1,9], +"classspdlog_1_1sinks_1_1rotating__file__sink.html#a05d77d7013bc54f55cac702c122ac1c9":[2,0,2,1,9,1], +"classspdlog_1_1sinks_1_1rotating__file__sink.html#a16489efcc8bd112bbc0151f54ba46f2e":[2,0,2,1,9,2], +"classspdlog_1_1sinks_1_1rotating__file__sink.html#a1dcebdde175de15bee24da6e9ec70990":[2,0,2,1,9,0], +"classspdlog_1_1sinks_1_1rotating__file__sink.html#a3cf93e445ad92380c7d352f971cd76a4":[2,0,2,1,9,4], +"classspdlog_1_1sinks_1_1rotating__file__sink.html#ae93e4792b76f73bb0be8e50b5c5e889b":[2,0,2,1,9,3], +"classspdlog_1_1sinks_1_1sink.html":[2,0,2,1,10], +"classspdlog_1_1sinks_1_1sink.html#a038a91409395dca18a7ccca81622fd83":[2,0,2,1,10,7], +"classspdlog_1_1sinks_1_1sink.html#a1c932f19f67057fbe7518999bdd5c422":[2,0,2,1,10,9], +"classspdlog_1_1sinks_1_1sink.html#a2637af0973ac863eedd76ee683279c0b":[2,0,2,1,10,2], +"classspdlog_1_1sinks_1_1sink.html#a435da07b59e1165b38d53635cdada30a":[2,0,2,1,10,11], +"classspdlog_1_1sinks_1_1sink.html#a51d8f34ad79064e0dc13c6013236e427":[2,0,2,1,10,5], +"classspdlog_1_1sinks_1_1sink.html#a7e5cfd4b683c8bfa8fbd602d7f409632":[2,0,2,1,10,8], +"classspdlog_1_1sinks_1_1sink.html#a8a0674ae3bca8f1617aef820e23a2ccd":[2,0,2,1,10,3], +"classspdlog_1_1sinks_1_1sink.html#aa0d19f09363a11b63b4a9b1d46f8a4b3":[2,0,2,1,10,10], +"classspdlog_1_1sinks_1_1sink.html#ac410f2229e583a75337a5fdf45d020be":[2,0,2,1,10,6], +"classspdlog_1_1sinks_1_1sink.html#ae32182a47ebea9c66c02e6a9822ffdcd":[2,0,2,1,10,0], +"classspdlog_1_1sinks_1_1sink.html#ae59ca2b418c5cdfed1c04e49a444be1c":[2,0,2,1,10,4], +"classspdlog_1_1sinks_1_1sink.html#aea8106cba54ae87840fc1cf33cdfd2c1":[2,0,2,1,10,1], +"classspdlog_1_1sinks_1_1stdout__sink.html":[2,0,2,1,11], +"classspdlog_1_1sinks_1_1stdout__sink.html#a0bee23de61cbea7c1dfb5e8712a98d74":[2,0,2,1,11,6], +"classspdlog_1_1sinks_1_1stdout__sink.html#a5b8759dab80ca44e9d185e21aa797d2a":[2,0,2,1,11,8], +"classspdlog_1_1sinks_1_1stdout__sink.html#a8546278774f901c3b5159876154e2eea":[2,0,2,1,11,0], +"classspdlog_1_1sinks_1_1stdout__sink.html#aadb52e8ba9e2992f847c46ec521b4407":[2,0,2,1,11,1], +"classspdlog_1_1sinks_1_1stdout__sink.html#ab7761f533c069ef52a256573de29077d":[2,0,2,1,11,3], +"classspdlog_1_1sinks_1_1stdout__sink.html#ada2b3ef5a7821873df46ebda72b77e6c":[2,0,2,1,11,7], +"classspdlog_1_1sinks_1_1stdout__sink.html#adda1fffa1daf4565f72b3e94734d984a":[2,0,2,1,11,5], +"classspdlog_1_1sinks_1_1stdout__sink.html#ae0e434d7d55f6ec9c05ff308bc8e673b":[2,0,2,1,11,2], +"classspdlog_1_1sinks_1_1stdout__sink.html#af3a13cc82215681bdd7ca5e33a7c28b5":[2,0,2,1,11,4], +"classspdlog_1_1sinks_1_1syslog__sink.html":[2,0,2,1,12], +"classspdlog_1_1sinks_1_1syslog__sink.html#a303bccf40cd03356510391c493078005":[2,0,2,1,12,5], +"classspdlog_1_1sinks_1_1syslog__sink.html#a3e2454370f91c3fe2befb3f24e25ede7":[2,0,2,1,12,4], +"classspdlog_1_1sinks_1_1syslog__sink.html#a505adae200592eab1e093ab258ad0291":[2,0,2,1,12,2], +"classspdlog_1_1sinks_1_1syslog__sink.html#a6afb5ba7ef5e5f2950e624ec650fb562":[2,0,2,1,12,3], +"classspdlog_1_1sinks_1_1syslog__sink.html#acc60de632a07b329aeba41ee48ced4f6":[2,0,2,1,12,0], +"classspdlog_1_1sinks_1_1syslog__sink.html#ae440dafe6eca68065ac0b6438761ac38":[2,0,2,1,12,1], +"classspdlog_1_1sinks_1_1wincolor__sink.html":[2,0,2,1,13], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a229d666b7880d587aefa8c5d999acfb4":[2,0,2,1,13,1], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a32682f38336031a282e1681622f1cff4":[2,0,2,1,13,13], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a3746a35fc36218e76dc3080e52fe6233":[2,0,2,1,13,3], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a39daa889c7395936e2caf95baf2c4181":[2,0,2,1,13,11], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a48cc1a252565bdbb66b12ba2a40e62f9":[2,0,2,1,13,7], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a4ed05c6780bc65806080c88202d80577":[2,0,2,1,13,0] }; diff --git a/docs/navtreeindex4.js b/docs/navtreeindex4.js index 7a2b76f..ed1872e 100644 --- a/docs/navtreeindex4.js +++ b/docs/navtreeindex4.js @@ -1,253 +1,253 @@ var NAVTREEINDEX4 = { -"classspdlog_1_1sinks_1_1wincolor__sink.html#a5032da6fc760507134a7d1eff1a20b0a":[1,0,2,1,13,8], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a54ca784b8f5e1ee9c2adcda3125c3515":[1,0,2,1,13,5], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a64d98363a05d1a7a4f295f6de1b5cec1":[1,0,2,1,13,4], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a6cbc30363fd20b20c1cd0f22211f0612":[1,0,2,1,13,10], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a77ef730edcfe9f6f000bed8c846aa6bf":[1,0,2,1,13,9], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a8635f904f1dad9e60aaefe307e076f1d":[1,0,2,1,13,12], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a89e2ddbd1297c8c722d63277b458b5c1":[1,0,2,1,13,2], -"classspdlog_1_1sinks_1_1wincolor__sink.html#a914a0d9aed02627be8cd287a2dee9916":[1,0,2,1,13,6], -"classspdlog_1_1sinks_1_1wincolor__sink.html#aa148f87d2c8b234c306009268ac7b812":[1,0,2,1,13,14], -"classspdlog_1_1spdlog__ex.html":[1,0,2,8], -"classspdlog_1_1spdlog__ex.html#a0758933dd1e6c4c8e76bb8e7134f7d9b":[1,0,2,8,1], -"classspdlog_1_1spdlog__ex.html#a95052672da1a71145ac56d143b751b3f":[1,0,2,8,0], -"classspdlog_1_1spdlog__ex.html#abb3438f30d2e0fffb037931e8867f523":[1,0,2,8,2], -"classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html":[1,0,3,0], -"classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html#a66bfe9a9db1167477806c1973002e941":[1,0,3,0,1], -"classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html#ab87acbb0e3b785468702511d2ba20c43":[1,0,3,0,0], -"color_8h.html":[2,0,0,0,1,1,0,1,0,1], -"color_8h.html#a1e2c6e0bff4b8e154af8cfdbf30f6e65":[2,0,0,0,1,1,0,1,0,1,12], -"color_8h.html#a3c18bfe3f941ca2b94688cb6d54f1cec":[2,0,0,0,1,1,0,1,0,1,8], -"color_8h.html#a3c18bfe3f941ca2b94688cb6d54f1ceca030c5b6d1e5715105943ac111d9671bf":[2,0,0,0,1,1,0,1,0,1,8,1], -"color_8h.html#a3c18bfe3f941ca2b94688cb6d54f1ceca69dcab4a73aeec2113f69b61e6263da8":[2,0,0,0,1,1,0,1,0,1,8,0], -"color_8h.html#a3c18bfe3f941ca2b94688cb6d54f1ceca6dc7b4483f8c2c701a48e42db552806d":[2,0,0,0,1,1,0,1,0,1,8,2], -"color_8h.html#a3c18bfe3f941ca2b94688cb6d54f1cecaae9a363b2dfa9181da7ffde8e37813b5":[2,0,0,0,1,1,0,1,0,1,8,3], -"color_8h.html#a3c469199b831e4d4d2b3728bb8e99b1f":[2,0,0,0,1,1,0,1,0,1,20], -"color_8h.html#a4df07cd85241561a9b8ce9a7351b1606":[2,0,0,0,1,1,0,1,0,1,22], -"color_8h.html#a56836a511849e5e52a5664b26ede9cdf":[2,0,0,0,1,1,0,1,0,1,14], -"color_8h.html#a7373458bc3acf69f580a4ead0ebc159f":[2,0,0,0,1,1,0,1,0,1,19], -"color_8h.html#a7e5a3d7f521a367387e1191c7893a240":[2,0,0,0,1,1,0,1,0,1,17], -"color_8h.html#a8ef34ce57c1deb6af9b8c62f27edb49c":[2,0,0,0,1,1,0,1,0,1,15], -"color_8h.html#ab1446fdc80a1153bd985da7d83bd79c7":[2,0,0,0,1,1,0,1,0,1,11], -"color_8h.html#ab1d87084097ae33226e005179e09befd":[2,0,0,0,1,1,0,1,0,1,18], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fba":[2,0,0,0,1,1,0,1,0,1,9], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa1ffd9e753c8054cc61456ac7fac1ac89":[2,0,0,0,1,1,0,1,0,1,9,0], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa37553b57ad1d7f61b0c51f5a535f72bf":[2,0,0,0,1,1,0,1,0,1,9,13], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa48d6215903dff56238e52e8891380c8f":[2,0,0,0,1,1,0,1,0,1,9,4], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa4c2a4a7078da0ac6733464eacfd00f86":[2,0,0,0,1,1,0,1,0,1,9,5], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa6411532ba4971f378391776a9db629d3":[2,0,0,0,1,1,0,1,0,1,9,6], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa74474ae20bf3ef3bce6fd679194ce383":[2,0,0,0,1,1,0,1,0,1,9,8], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa75dd76d162b9554ec8b63736bc22d93e":[2,0,0,0,1,1,0,1,0,1,9,11], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa8b84c6e788e91a3a45b9dabedb160590":[2,0,0,0,1,1,0,1,0,1,9,9], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa9f27410725ab8cc8854a2769c7a516b8":[2,0,0,0,1,1,0,1,0,1,9,2], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaabd5b4652dffd84bab66529361d0c4974":[2,0,0,0,1,1,0,1,0,1,9,10], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaabda9643ac6601722a28f238714274da4":[2,0,0,0,1,1,0,1,0,1,9,1], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaac5b47880b4b2ec37179078d63a85def3":[2,0,0,0,1,1,0,1,0,1,9,12], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaacc69f9955c2bf916bb9a83f38141432f":[2,0,0,0,1,1,0,1,0,1,9,14], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaad487dd0b55dfcacdd920ccbdaeafa351":[2,0,0,0,1,1,0,1,0,1,9,3], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaad508fe45cecaf653904a0e774084bb5c":[2,0,0,0,1,1,0,1,0,1,9,7], -"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaada7527acf78cb4e7b582e8163a1f642a":[2,0,0,0,1,1,0,1,0,1,9,15], -"color_8h.html#aba988382a2dc01b28f7b160c9dd64047":[2,0,0,0,1,1,0,1,0,1,13], -"color_8h.html#acba41814a0db9856bd9785841f7aa4a0":[2,0,0,0,1,1,0,1,0,1,21], -"color_8h.html#adf2b181704d47b13c292a0c201c157d3":[2,0,0,0,1,1,0,1,0,1,10], -"color_8h.html#ae4693bb9287d6264cdbded4233e707c0":[2,0,0,0,1,1,0,1,0,1,16], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0":[2,0,0,0,1,1,0,1,0,1,7], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a006f87892f47ef9aa60fa5ed01a440fb":[2,0,0,0,1,1,0,1,0,1,7,133], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a00885bc107cec87940dfe4beadbab382":[2,0,0,0,1,1,0,1,0,1,7,129], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a04a3da97880fcedeb087378f29c3a102":[2,0,0,0,1,1,0,1,0,1,7,80], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a0552f51c284790d9d0f4b43ebfa9f2a8":[2,0,0,0,1,1,0,1,0,1,7,92], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a068e93b58ca276fdd6337535386b0a78":[2,0,0,0,1,1,0,1,0,1,7,13], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a0b1ae0e5580eaa0e6968ec6c8143ecac":[2,0,0,0,1,1,0,1,0,1,7,117], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a0ee903fa27ac4513f20d12a86c19e7a2":[2,0,0,0,1,1,0,1,0,1,7,106], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a12284913bfe16bebd8bc809573f0387a":[2,0,0,0,1,1,0,1,0,1,7,58], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a153fa52654465ad67f045dc293f3b16e":[2,0,0,0,1,1,0,1,0,1,7,59], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a180fd182f9a0742f483619781ccc36c4":[2,0,0,0,1,1,0,1,0,1,7,118], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a1ffd9e753c8054cc61456ac7fac1ac89":[2,0,0,0,1,1,0,1,0,1,7,7], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a25d876582c42c77bd9fe6c152f88a752":[2,0,0,0,1,1,0,1,0,1,7,10], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a27e3a57f752eac25c69739545fccef73":[2,0,0,0,1,1,0,1,0,1,7,21], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a28a62909f84c7a965ea755d99db1ca2b":[2,0,0,0,1,1,0,1,0,1,7,91], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a2a51478b9caafc3a28fef46a916cd92d":[2,0,0,0,1,1,0,1,0,1,7,84], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a2b93fbdf27d43547bec8794054c28e00":[2,0,0,0,1,1,0,1,0,1,7,127], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a2ca891b27d02c8a2fea622359be7c4dd":[2,0,0,0,1,1,0,1,0,1,7,46], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a2e1e305a440fcfc9109858a7b2e20ca7":[2,0,0,0,1,1,0,1,0,1,7,120], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a2fe5734b0399752dfa2a0c93b6c75934":[2,0,0,0,1,1,0,1,0,1,7,98], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a306cb0ed46dda6adb63820cb57960bb0":[2,0,0,0,1,1,0,1,0,1,7,42], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a32e8419a7ecb8f918c70fdadf783e3d8":[2,0,0,0,1,1,0,1,0,1,7,108], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a350b14335681ec97282ca0452dd5e7dc":[2,0,0,0,1,1,0,1,0,1,7,38], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a37ecf1e4670c4944a0f98bcb39728578":[2,0,0,0,1,1,0,1,0,1,7,138], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a384d3f701794afb076dd9e92980bdd91":[2,0,0,0,1,1,0,1,0,1,7,39], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a396d120e4c6a21d1fad9cd2a57802a6c":[2,0,0,0,1,1,0,1,0,1,7,47], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a3971b68e2b89dbe29871b9061dff0af9":[2,0,0,0,1,1,0,1,0,1,7,81], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a39d8e1a1a14670b0a3be357c318867ac":[2,0,0,0,1,1,0,1,0,1,7,3], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a3c4184e82bb3be8fa32669800fb7373c":[2,0,0,0,1,1,0,1,0,1,7,131], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a3e042037287d6871eec3dbd48556b0b4":[2,0,0,0,1,1,0,1,0,1,7,110], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a3efea3cccdbed48be1f1db03de4fa20e":[2,0,0,0,1,1,0,1,0,1,7,14], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4108cee2c1205de0bba7a8f3f55ba48b":[2,0,0,0,1,1,0,1,0,1,7,116], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4109165af5329dd59f9bd749c5a55846":[2,0,0,0,1,1,0,1,0,1,7,61], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a486c9b835e518cd7b0c998ca7a37c893":[2,0,0,0,1,1,0,1,0,1,7,34], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a48d6215903dff56238e52e8891380c8f":[2,0,0,0,1,1,0,1,0,1,7,9], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a49dba686026a18435dd23b5e83eb5cfd":[2,0,0,0,1,1,0,1,0,1,7,24], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4a0b0dcedd48f780778d1cd1bb8f9877":[2,0,0,0,1,1,0,1,0,1,7,109], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4b1668d660111fbf3b86b4238b285677":[2,0,0,0,1,1,0,1,0,1,7,37], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4c2a4a7078da0ac6733464eacfd00f86":[2,0,0,0,1,1,0,1,0,1,7,79], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4db3022648c31d28b86ad95583d6c3c7":[2,0,0,0,1,1,0,1,0,1,7,88], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4eece7cf37c9db41ed9e016e471fcf2f":[2,0,0,0,1,1,0,1,0,1,7,65], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5157a28c83d98d39066c60c83a6983f8":[2,0,0,0,1,1,0,1,0,1,7,87], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a541cf8ef71e19f44c9fa646ad9196b3f":[2,0,0,0,1,1,0,1,0,1,7,32], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5478409977d30af9f13744df6850c5ac":[2,0,0,0,1,1,0,1,0,1,7,1], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5546cc776b6e0df7f4fe922f02cb6154":[2,0,0,0,1,1,0,1,0,1,7,33], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a573cc0c97e7f05440b7ca67a93e46349":[2,0,0,0,1,1,0,1,0,1,7,103], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5841e227ac7407c007c4dea330306f08":[2,0,0,0,1,1,0,1,0,1,7,102], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a58b516fe6ce07478e0fdfe29e18d62fe":[2,0,0,0,1,1,0,1,0,1,7,64], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5afa2a600463278912509f72d9d18ba3":[2,0,0,0,1,1,0,1,0,1,7,30], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5b2d4484498235e80d61a233a7c04991":[2,0,0,0,1,1,0,1,0,1,7,130], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5c090aa7c47fc1b6a05035e07ec9fbb9":[2,0,0,0,1,1,0,1,0,1,7,41], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5e84be20fb6dd068f5368e6d245460bd":[2,0,0,0,1,1,0,1,0,1,7,96], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5fa3ccc64c973db27e9fcade0810423e":[2,0,0,0,1,1,0,1,0,1,7,19], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a609a1b0e5d49d6de91c649fa962e545d":[2,0,0,0,1,1,0,1,0,1,7,25], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a617e570ec3920b38e651cf3258d88e47":[2,0,0,0,1,1,0,1,0,1,7,69], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a61a2783898a9df78bb27edc33f768e6e":[2,0,0,0,1,1,0,1,0,1,7,63], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a62c383c02f7de80e5edcbc4f21836c7c":[2,0,0,0,1,1,0,1,0,1,7,70], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a6411532ba4971f378391776a9db629d3":[2,0,0,0,1,1,0,1,0,1,7,20], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a65cb59645b852c2394ba3ff8b295e83c":[2,0,0,0,1,1,0,1,0,1,7,2], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a667b2e78d0dabb83c2ec684e3b4253b1":[2,0,0,0,1,1,0,1,0,1,7,94], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a67485a137fce2085007d93aa115cd093":[2,0,0,0,1,1,0,1,0,1,7,128], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a67c0ecaf5a1b782b11146e9fbe80f016":[2,0,0,0,1,1,0,1,0,1,7,76], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a67d12da6232b36c362a6437332da50bf":[2,0,0,0,1,1,0,1,0,1,7,72], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a68db9bf9d92a944f0138e197b7b02fc2":[2,0,0,0,1,1,0,1,0,1,7,77], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a6d65173999078f89f8d4e01036aea8a4":[2,0,0,0,1,1,0,1,0,1,7,0], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a6f6922bd3e51b8d19b4f78df8dec7a52":[2,0,0,0,1,1,0,1,0,1,7,115], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a6ff47afa5dc7daa42cc705a03fca8a9b":[2,0,0,0,1,1,0,1,0,1,7,11], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a707832f12c57d104ccba9158524e8e69":[2,0,0,0,1,1,0,1,0,1,7,104], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a7087c7ffb872fac6aba0c893b8bbee42":[2,0,0,0,1,1,0,1,0,1,7,113], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a73bdd29aeb8e3e3274bbb71c30d70eb7":[2,0,0,0,1,1,0,1,0,1,7,82], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a743b7827c281254e45c305696344535b":[2,0,0,0,1,1,0,1,0,1,7,75], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a75435e6bea50867263766b9e5f9bc08d":[2,0,0,0,1,1,0,1,0,1,7,40], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a76f258d530f43c55523384b472086771":[2,0,0,0,1,1,0,1,0,1,7,111], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a770e427f6a16eb64e2ece9585ba9d193":[2,0,0,0,1,1,0,1,0,1,7,67], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a7fbe63cdab154c0227420b368fcaea3d":[2,0,0,0,1,1,0,1,0,1,7,8], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a83d1d60e0de07e8b1bf164247a77e28b":[2,0,0,0,1,1,0,1,0,1,7,90], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a8a99d28c3c43cafed58cdbac5f4e9201":[2,0,0,0,1,1,0,1,0,1,7,56], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a8c86fbdd95cf7d3a3bf22d7bd34a3e99":[2,0,0,0,1,1,0,1,0,1,7,62], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a8e150fc012f9d2eb7b61e16abca9462a":[2,0,0,0,1,1,0,1,0,1,7,55], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a8f0b108fa3efae8069bfeecaef1f0330":[2,0,0,0,1,1,0,1,0,1,7,49], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a8f72f2a45cee9a5f2e0afe5d2bb9d4b1":[2,0,0,0,1,1,0,1,0,1,7,125], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9047140da3bd5d20676eb94102443e5a":[2,0,0,0,1,1,0,1,0,1,7,23], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a91c001e5547439063fefe550d83533b6":[2,0,0,0,1,1,0,1,0,1,7,122], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a93b1453c8ec5a548389c935052536ccb":[2,0,0,0,1,1,0,1,0,1,7,101], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a94ec2b8d73527db3da316ad28195219e":[2,0,0,0,1,1,0,1,0,1,7,132], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a95084a1747e0d0fbdd9cf4de527e93a6":[2,0,0,0,1,1,0,1,0,1,7,44], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a97f014516561ef487ec368d6158eb3f4":[2,0,0,0,1,1,0,1,0,1,7,123], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a98cf43657dbee14ae37662526484911d":[2,0,0,0,1,1,0,1,0,1,7,71], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a996483b6f227bb90a1a066a4d1d6ce10":[2,0,0,0,1,1,0,1,0,1,7,43], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a996976a37b7f6296cc3cbf388ac91cee":[2,0,0,0,1,1,0,1,0,1,7,86], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9a19a83d0097df35f7ba7af753f0537d":[2,0,0,0,1,1,0,1,0,1,7,119], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9c2398f188d23be4d9676cadf1c2909f":[2,0,0,0,1,1,0,1,0,1,7,31], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9c6e5569ecea4e7bfa902bac54f7bbe2":[2,0,0,0,1,1,0,1,0,1,7,54], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9f27410725ab8cc8854a2769c7a516b8":[2,0,0,0,1,1,0,1,0,1,7,51], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9f370737a8ad22210a0dd6b1c8f00896":[2,0,0,0,1,1,0,1,0,1,7,45], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aa1876a44fe9d3e277e5a90a14fd1d375":[2,0,0,0,1,1,0,1,0,1,7,27], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aa6ab62e9da89b20d720c70602624bfc2":[2,0,0,0,1,1,0,1,0,1,7,78], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aa889858bd19327fe8b643b9ff36a1782":[2,0,0,0,1,1,0,1,0,1,7,140], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aaac43a86b5d19ed2ff0aefa6b0758fe3":[2,0,0,0,1,1,0,1,0,1,7,29], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ab2fb12c1d8469e020be7d77d0d9cf2dd":[2,0,0,0,1,1,0,1,0,1,7,74], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ab5bd346b77f564748d4d2743156ed6e8":[2,0,0,0,1,1,0,1,0,1,7,105], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ab88072f7e28a64cfd1a36370be8450bb":[2,0,0,0,1,1,0,1,0,1,7,28], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0abb7aedfa61007447dd6efaf9f37641e3":[2,0,0,0,1,1,0,1,0,1,7,112], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0abc432826c5179d5332c28e32f2ff58a0":[2,0,0,0,1,1,0,1,0,1,7,17], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0abca51d13e304e17f34a3e7c598884ae8":[2,0,0,0,1,1,0,1,0,1,7,73], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0abda9643ac6601722a28f238714274da4":[2,0,0,0,1,1,0,1,0,1,7,114], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0abfa3108ee9c64dae693a704959e2c25e":[2,0,0,0,1,1,0,1,0,1,7,22], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ac10bddadd1786a8a12f96ae7db5bafb8":[2,0,0,0,1,1,0,1,0,1,7,68], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ac378985d629e99a4e86213db0cd5e70d":[2,0,0,0,1,1,0,1,0,1,7,15], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ac55c68625ca1da0e1d4a922fc8cb373e":[2,0,0,0,1,1,0,1,0,1,7,57], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ac5aaf97240e28904c5b96eab2cbf753b":[2,0,0,0,1,1,0,1,0,1,7,85], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ac7357031b08389007e6da9f56ea145e0":[2,0,0,0,1,1,0,1,0,1,7,6], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0acda7a650c5856cf2f6738072447d7825":[2,0,0,0,1,1,0,1,0,1,7,50], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0acf04a02e37b774fc311a48f605c3c597":[2,0,0,0,1,1,0,1,0,1,7,4], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad06424e64af2d470476a234e12a48a40":[2,0,0,0,1,1,0,1,0,1,7,124], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad1d813a48d99f0e102f7d0a1b9068001":[2,0,0,0,1,1,0,1,0,1,7,135], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad238c6c8a44f8e1933911fe10de064f7":[2,0,0,0,1,1,0,1,0,1,7,12], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad29db4ac8712f5bdb343991281b26db1":[2,0,0,0,1,1,0,1,0,1,7,136], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad2ebed4eaf58509dcc358e1782c38fea":[2,0,0,0,1,1,0,1,0,1,7,16], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad2eed3a4c8bdb8a3523e9fc0f6fdc040":[2,0,0,0,1,1,0,1,0,1,7,53], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad3472adca7f1b0edf7dc5d99bd79bb9e":[2,0,0,0,1,1,0,1,0,1,7,52], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad43a591d2b25a4afe584e778d2d8cdbd":[2,0,0,0,1,1,0,1,0,1,7,66], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad487dd0b55dfcacdd920ccbdaeafa351":[2,0,0,0,1,1,0,1,0,1,7,139], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad508fe45cecaf653904a0e774084bb5c":[2,0,0,0,1,1,0,1,0,1,7,137], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad557e5da14dcbe24b5b54c33bd8d15ee":[2,0,0,0,1,1,0,1,0,1,7,60], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0adc8a6c38cc98a2c29859c34b26974bc7":[2,0,0,0,1,1,0,1,0,1,7,93], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0adcbb31fdf774bcd3f09d54c4487377c0":[2,0,0,0,1,1,0,1,0,1,7,134], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0adfcfa24e3022fb4b704f051d98ec0557":[2,0,0,0,1,1,0,1,0,1,7,83], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae07e81c20cf5935f5225765f0af81755":[2,0,0,0,1,1,0,1,0,1,7,48], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae21cb3066a44318e0b096d0d9e010f09":[2,0,0,0,1,1,0,1,0,1,7,26], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae707e58e389e4f7cda44cd1254a6d1fc":[2,0,0,0,1,1,0,1,0,1,7,35], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae74648a463c3d18a05e153977cb39855":[2,0,0,0,1,1,0,1,0,1,7,107], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae8c7ad982a8c98a38c7e3381043b94d8":[2,0,0,0,1,1,0,1,0,1,7,89], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae962684214d1c84dbc6a691b6d9eb60c":[2,0,0,0,1,1,0,1,0,1,7,100], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aea26b11983535b3792d71954aa4d41d8":[2,0,0,0,1,1,0,1,0,1,7,18], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aefc5f4b470619b932aed03953e50ce60":[2,0,0,0,1,1,0,1,0,1,7,5], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aefe66dd5675ff42810bbc04512d44c4b":[2,0,0,0,1,1,0,1,0,1,7,121], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0af3311d3d14c8437553bf3e3f90920736":[2,0,0,0,1,1,0,1,0,1,7,95], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0af431b0eea3c08186ed101e588bfb3a2f":[2,0,0,0,1,1,0,1,0,1,7,97], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0af664bac577c1c520c4a98e63457d2f22":[2,0,0,0,1,1,0,1,0,1,7,126], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0af6b3c061d92535983e73d0e6c1b8338c":[2,0,0,0,1,1,0,1,0,1,7,36], -"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0afe01d67a002dfa0f3ac084298142eccd":[2,0,0,0,1,1,0,1,0,1,7,99], -"color_8h_source.html":[2,0,0,0,1,1,0,1,0,1], -"comm__port_8h.html":[2,0,0,0,0,0], -"comm__port_8h.html#a4db2ee1c995aba81900420b7e4312bc1":[2,0,0,0,0,0,3], -"comm__port_8h.html#aa902d8a50576dcdede27023c03f65747":[2,0,0,0,0,0,2], -"comm__port_8h_source.html":[2,0,0,0,0,0], -"common_8h.html":[2,0,0,0,1,1,0,5], -"common_8h.html#a15d2dc432e6bb83beb5130be9a4ca8d6":[2,0,0,0,1,1,0,5,15], -"common_8h.html#a173dd7064323e4807d720eabcc95fc73":[2,0,0,0,1,1,0,5,21], -"common_8h.html#a1ed786fe4b8a5babc3aeaa3eba9a9921":[2,0,0,0,1,1,0,5,31], -"common_8h.html#a1f0ef27d8fc022078352c93ef310cdb4":[2,0,0,0,1,1,0,5,6], -"common_8h.html#a2cf36a7836e979b59b20edea26135766":[2,0,0,0,1,1,0,5,5], -"common_8h.html#a2d61216ea1cb33ba27ddc6a78cc98ecd":[2,0,0,0,1,1,0,5,29], -"common_8h.html#a30f621e51aba2dfe9f905fd9e2dee918":[2,0,0,0,1,1,0,5,17], -"common_8h.html#a320d85598eda29f072e343e57ec27ab8":[2,0,0,0,1,1,0,5,30], -"common_8h.html#a33c73f3639c48dd378b33fabbfd27b7f":[2,0,0,0,1,1,0,5,10], -"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8b":[2,0,0,0,1,1,0,5,26], -"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8ba309b214a2b8629b6cf0048ce916e8a58":[2,0,0,0,1,1,0,5,26,5], -"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8ba4d723e295b98a75c1263d85fc165045f":[2,0,0,0,1,1,0,5,26,4], -"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8ba6c371ca09668dd308a1997eab47def05":[2,0,0,0,1,1,0,5,26,3], -"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8ba7f09db55ad64d87e4124f10582cb016f":[2,0,0,0,1,1,0,5,26,2], -"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8ba917591d8c0e89f6e6247c95c67809a1a":[2,0,0,0,1,1,0,5,26,6], -"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8badd5891a1416461ee9e7d7e19d41af51f":[2,0,0,0,1,1,0,5,26,0], -"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8baea632f71a316dac4dbaf2d98534c7ca5":[2,0,0,0,1,1,0,5,26,1], -"common_8h.html#a3966e2839945ed2b8adf9373b7bdd56e":[2,0,0,0,1,1,0,5,8], -"common_8h.html#a422c57d3088160b517e5a74e5f318253":[2,0,0,0,1,1,0,5,23], -"common_8h.html#a57ad66f77dc01b41a51f7e884dd460dd":[2,0,0,0,1,1,0,5,13], -"common_8h.html#a6ffd317d15c017cf593212e5441ad70a":[2,0,0,0,1,1,0,5,9], -"common_8h.html#a70535c68de0c12e9854e31928fb2d671":[2,0,0,0,1,1,0,5,33], -"common_8h.html#a8585bf495310a6ce695191739351709b":[2,0,0,0,1,1,0,5,20], -"common_8h.html#a8747e6feba8bf2d3f204cb76bfd4607a":[2,0,0,0,1,1,0,5,3], -"common_8h.html#a8f7ec3c49f83b525b8c15d459b1136d0":[2,0,0,0,1,1,0,5,12], -"common_8h.html#a9ad12194a0d42daffd44df91f9854f29":[2,0,0,0,1,1,0,5,4], -"common_8h.html#aa9b5c2298bf713fbe02b7e538d797ecd":[2,0,0,0,1,1,0,5,24], -"common_8h.html#ab2ea0d29ee3c1ccb1f9484a8198c59b0":[2,0,0,0,1,1,0,5,16], -"common_8h.html#ac7313aeac75b2d8521f04ba9508b9695":[2,0,0,0,1,1,0,5,7], -"common_8h.html#acf7ce125b3622e44f8f1702d699e0b06":[2,0,0,0,1,1,0,5,18], -"common_8h.html#acff159db380f787b46d9d51d7f9cc69c":[2,0,0,0,1,1,0,5,14], -"common_8h.html#ad3ed787a29f245c833ef66faf48036e2":[2,0,0,0,1,1,0,5,22], -"common_8h.html#ad598fbd8338772e66ae09e8723a07ced":[2,0,0,0,1,1,0,5,27], -"common_8h.html#ad598fbd8338772e66ae09e8723a07ceda52d33cb937bbdab234ab1729a0f8225b":[2,0,0,0,1,1,0,5,27,1], -"common_8h.html#ad598fbd8338772e66ae09e8723a07cedaf5ddaf0ca7929578b408c909429f68f2":[2,0,0,0,1,1,0,5,27,0], -"common_8h.html#add7f1cc7c1914c6f6a6773cfbd1bb997":[2,0,0,0,1,1,0,5,19], -"common_8h.html#ae4fda6f71f35120e2ff48157fca961b5":[2,0,0,0,1,1,0,5,2], -"common_8h.html#ae7c510cd37fa5221221eb91f03a98655":[2,0,0,0,1,1,0,5,32], -"common_8h.html#af1f71a172e3626a0271006a3a668e6ff":[2,0,0,0,1,1,0,5,28], -"common_8h.html#af48e310b2f366ac6544701e6a3b56247":[2,0,0,0,1,1,0,5,25], -"common_8h.html#afe938b48c2a5e8816892fbc1841f9694":[2,0,0,0,1,1,0,5,11], -"common_8h_source.html":[2,0,0,0,1,1,0,5], -"console__globals_8h.html":[2,0,0,0,1,1,0,0,2], -"console__globals_8h_source.html":[2,0,0,0,1,1,0,0,2], -"core_8h.html":[2,0,0,0,1,1,0,1,0,2], -"core_8h.html#a023c6c178e254d81d578b90921804b1c":[2,0,0,0,1,1,0,1,0,2,70], -"core_8h.html#a026d4ace419ac741560868f9cf829727":[2,0,0,0,1,1,0,1,0,2,132], -"core_8h.html#a03e7ee720f43adc7d83c652a6a5dd5f8":[2,0,0,0,1,1,0,1,0,2,47], -"core_8h.html#a056f29fbe3ea234ac0cc417fb866a189":[2,0,0,0,1,1,0,1,0,2,51], -"core_8h.html#a06c10c4c39e421b87bbc1e306b68a866":[2,0,0,0,1,1,0,1,0,2,87] +"classspdlog_1_1sinks_1_1wincolor__sink.html#a5032da6fc760507134a7d1eff1a20b0a":[2,0,2,1,13,8], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a54ca784b8f5e1ee9c2adcda3125c3515":[2,0,2,1,13,5], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a64d98363a05d1a7a4f295f6de1b5cec1":[2,0,2,1,13,4], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a6cbc30363fd20b20c1cd0f22211f0612":[2,0,2,1,13,10], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a77ef730edcfe9f6f000bed8c846aa6bf":[2,0,2,1,13,9], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a8635f904f1dad9e60aaefe307e076f1d":[2,0,2,1,13,12], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a89e2ddbd1297c8c722d63277b458b5c1":[2,0,2,1,13,2], +"classspdlog_1_1sinks_1_1wincolor__sink.html#a914a0d9aed02627be8cd287a2dee9916":[2,0,2,1,13,6], +"classspdlog_1_1sinks_1_1wincolor__sink.html#aa148f87d2c8b234c306009268ac7b812":[2,0,2,1,13,14], +"classspdlog_1_1spdlog__ex.html":[2,0,2,8], +"classspdlog_1_1spdlog__ex.html#a0758933dd1e6c4c8e76bb8e7134f7d9b":[2,0,2,8,1], +"classspdlog_1_1spdlog__ex.html#a95052672da1a71145ac56d143b751b3f":[2,0,2,8,0], +"classspdlog_1_1spdlog__ex.html#abb3438f30d2e0fffb037931e8867f523":[2,0,2,8,2], +"classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html":[2,0,3,0], +"classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html#a66bfe9a9db1167477806c1973002e941":[2,0,3,0,1], +"classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html#ab87acbb0e3b785468702511d2ba20c43":[2,0,3,0,0], +"color_8h.html":[3,0,0,0,1,1,0,1,0,1], +"color_8h.html#a1e2c6e0bff4b8e154af8cfdbf30f6e65":[3,0,0,0,1,1,0,1,0,1,12], +"color_8h.html#a3c18bfe3f941ca2b94688cb6d54f1cec":[3,0,0,0,1,1,0,1,0,1,8], +"color_8h.html#a3c18bfe3f941ca2b94688cb6d54f1ceca030c5b6d1e5715105943ac111d9671bf":[3,0,0,0,1,1,0,1,0,1,8,1], +"color_8h.html#a3c18bfe3f941ca2b94688cb6d54f1ceca69dcab4a73aeec2113f69b61e6263da8":[3,0,0,0,1,1,0,1,0,1,8,0], +"color_8h.html#a3c18bfe3f941ca2b94688cb6d54f1ceca6dc7b4483f8c2c701a48e42db552806d":[3,0,0,0,1,1,0,1,0,1,8,2], +"color_8h.html#a3c18bfe3f941ca2b94688cb6d54f1cecaae9a363b2dfa9181da7ffde8e37813b5":[3,0,0,0,1,1,0,1,0,1,8,3], +"color_8h.html#a3c469199b831e4d4d2b3728bb8e99b1f":[3,0,0,0,1,1,0,1,0,1,20], +"color_8h.html#a4df07cd85241561a9b8ce9a7351b1606":[3,0,0,0,1,1,0,1,0,1,22], +"color_8h.html#a56836a511849e5e52a5664b26ede9cdf":[3,0,0,0,1,1,0,1,0,1,14], +"color_8h.html#a7373458bc3acf69f580a4ead0ebc159f":[3,0,0,0,1,1,0,1,0,1,19], +"color_8h.html#a7e5a3d7f521a367387e1191c7893a240":[3,0,0,0,1,1,0,1,0,1,17], +"color_8h.html#a8ef34ce57c1deb6af9b8c62f27edb49c":[3,0,0,0,1,1,0,1,0,1,15], +"color_8h.html#ab1446fdc80a1153bd985da7d83bd79c7":[3,0,0,0,1,1,0,1,0,1,11], +"color_8h.html#ab1d87084097ae33226e005179e09befd":[3,0,0,0,1,1,0,1,0,1,18], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fba":[3,0,0,0,1,1,0,1,0,1,9], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa1ffd9e753c8054cc61456ac7fac1ac89":[3,0,0,0,1,1,0,1,0,1,9,0], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa37553b57ad1d7f61b0c51f5a535f72bf":[3,0,0,0,1,1,0,1,0,1,9,13], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa48d6215903dff56238e52e8891380c8f":[3,0,0,0,1,1,0,1,0,1,9,4], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa4c2a4a7078da0ac6733464eacfd00f86":[3,0,0,0,1,1,0,1,0,1,9,5], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa6411532ba4971f378391776a9db629d3":[3,0,0,0,1,1,0,1,0,1,9,6], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa74474ae20bf3ef3bce6fd679194ce383":[3,0,0,0,1,1,0,1,0,1,9,8], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa75dd76d162b9554ec8b63736bc22d93e":[3,0,0,0,1,1,0,1,0,1,9,11], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa8b84c6e788e91a3a45b9dabedb160590":[3,0,0,0,1,1,0,1,0,1,9,9], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaa9f27410725ab8cc8854a2769c7a516b8":[3,0,0,0,1,1,0,1,0,1,9,2], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaabd5b4652dffd84bab66529361d0c4974":[3,0,0,0,1,1,0,1,0,1,9,10], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaabda9643ac6601722a28f238714274da4":[3,0,0,0,1,1,0,1,0,1,9,1], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaac5b47880b4b2ec37179078d63a85def3":[3,0,0,0,1,1,0,1,0,1,9,12], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaacc69f9955c2bf916bb9a83f38141432f":[3,0,0,0,1,1,0,1,0,1,9,14], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaad487dd0b55dfcacdd920ccbdaeafa351":[3,0,0,0,1,1,0,1,0,1,9,3], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaad508fe45cecaf653904a0e774084bb5c":[3,0,0,0,1,1,0,1,0,1,9,7], +"color_8h.html#ab2f4feae8b2e17242b5f089a38e23fbaada7527acf78cb4e7b582e8163a1f642a":[3,0,0,0,1,1,0,1,0,1,9,15], +"color_8h.html#aba988382a2dc01b28f7b160c9dd64047":[3,0,0,0,1,1,0,1,0,1,13], +"color_8h.html#acba41814a0db9856bd9785841f7aa4a0":[3,0,0,0,1,1,0,1,0,1,21], +"color_8h.html#adf2b181704d47b13c292a0c201c157d3":[3,0,0,0,1,1,0,1,0,1,10], +"color_8h.html#ae4693bb9287d6264cdbded4233e707c0":[3,0,0,0,1,1,0,1,0,1,16], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0":[3,0,0,0,1,1,0,1,0,1,7], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a006f87892f47ef9aa60fa5ed01a440fb":[3,0,0,0,1,1,0,1,0,1,7,133], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a00885bc107cec87940dfe4beadbab382":[3,0,0,0,1,1,0,1,0,1,7,129], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a04a3da97880fcedeb087378f29c3a102":[3,0,0,0,1,1,0,1,0,1,7,80], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a0552f51c284790d9d0f4b43ebfa9f2a8":[3,0,0,0,1,1,0,1,0,1,7,92], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a068e93b58ca276fdd6337535386b0a78":[3,0,0,0,1,1,0,1,0,1,7,13], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a0b1ae0e5580eaa0e6968ec6c8143ecac":[3,0,0,0,1,1,0,1,0,1,7,117], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a0ee903fa27ac4513f20d12a86c19e7a2":[3,0,0,0,1,1,0,1,0,1,7,106], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a12284913bfe16bebd8bc809573f0387a":[3,0,0,0,1,1,0,1,0,1,7,58], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a153fa52654465ad67f045dc293f3b16e":[3,0,0,0,1,1,0,1,0,1,7,59], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a180fd182f9a0742f483619781ccc36c4":[3,0,0,0,1,1,0,1,0,1,7,118], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a1ffd9e753c8054cc61456ac7fac1ac89":[3,0,0,0,1,1,0,1,0,1,7,7], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a25d876582c42c77bd9fe6c152f88a752":[3,0,0,0,1,1,0,1,0,1,7,10], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a27e3a57f752eac25c69739545fccef73":[3,0,0,0,1,1,0,1,0,1,7,21], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a28a62909f84c7a965ea755d99db1ca2b":[3,0,0,0,1,1,0,1,0,1,7,91], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a2a51478b9caafc3a28fef46a916cd92d":[3,0,0,0,1,1,0,1,0,1,7,84], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a2b93fbdf27d43547bec8794054c28e00":[3,0,0,0,1,1,0,1,0,1,7,127], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a2ca891b27d02c8a2fea622359be7c4dd":[3,0,0,0,1,1,0,1,0,1,7,46], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a2e1e305a440fcfc9109858a7b2e20ca7":[3,0,0,0,1,1,0,1,0,1,7,120], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a2fe5734b0399752dfa2a0c93b6c75934":[3,0,0,0,1,1,0,1,0,1,7,98], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a306cb0ed46dda6adb63820cb57960bb0":[3,0,0,0,1,1,0,1,0,1,7,42], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a32e8419a7ecb8f918c70fdadf783e3d8":[3,0,0,0,1,1,0,1,0,1,7,108], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a350b14335681ec97282ca0452dd5e7dc":[3,0,0,0,1,1,0,1,0,1,7,38], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a37ecf1e4670c4944a0f98bcb39728578":[3,0,0,0,1,1,0,1,0,1,7,138], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a384d3f701794afb076dd9e92980bdd91":[3,0,0,0,1,1,0,1,0,1,7,39], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a396d120e4c6a21d1fad9cd2a57802a6c":[3,0,0,0,1,1,0,1,0,1,7,47], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a3971b68e2b89dbe29871b9061dff0af9":[3,0,0,0,1,1,0,1,0,1,7,81], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a39d8e1a1a14670b0a3be357c318867ac":[3,0,0,0,1,1,0,1,0,1,7,3], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a3c4184e82bb3be8fa32669800fb7373c":[3,0,0,0,1,1,0,1,0,1,7,131], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a3e042037287d6871eec3dbd48556b0b4":[3,0,0,0,1,1,0,1,0,1,7,110], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a3efea3cccdbed48be1f1db03de4fa20e":[3,0,0,0,1,1,0,1,0,1,7,14], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4108cee2c1205de0bba7a8f3f55ba48b":[3,0,0,0,1,1,0,1,0,1,7,116], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4109165af5329dd59f9bd749c5a55846":[3,0,0,0,1,1,0,1,0,1,7,61], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a486c9b835e518cd7b0c998ca7a37c893":[3,0,0,0,1,1,0,1,0,1,7,34], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a48d6215903dff56238e52e8891380c8f":[3,0,0,0,1,1,0,1,0,1,7,9], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a49dba686026a18435dd23b5e83eb5cfd":[3,0,0,0,1,1,0,1,0,1,7,24], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4a0b0dcedd48f780778d1cd1bb8f9877":[3,0,0,0,1,1,0,1,0,1,7,109], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4b1668d660111fbf3b86b4238b285677":[3,0,0,0,1,1,0,1,0,1,7,37], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4c2a4a7078da0ac6733464eacfd00f86":[3,0,0,0,1,1,0,1,0,1,7,79], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4db3022648c31d28b86ad95583d6c3c7":[3,0,0,0,1,1,0,1,0,1,7,88], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a4eece7cf37c9db41ed9e016e471fcf2f":[3,0,0,0,1,1,0,1,0,1,7,65], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5157a28c83d98d39066c60c83a6983f8":[3,0,0,0,1,1,0,1,0,1,7,87], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a541cf8ef71e19f44c9fa646ad9196b3f":[3,0,0,0,1,1,0,1,0,1,7,32], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5478409977d30af9f13744df6850c5ac":[3,0,0,0,1,1,0,1,0,1,7,1], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5546cc776b6e0df7f4fe922f02cb6154":[3,0,0,0,1,1,0,1,0,1,7,33], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a573cc0c97e7f05440b7ca67a93e46349":[3,0,0,0,1,1,0,1,0,1,7,103], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5841e227ac7407c007c4dea330306f08":[3,0,0,0,1,1,0,1,0,1,7,102], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a58b516fe6ce07478e0fdfe29e18d62fe":[3,0,0,0,1,1,0,1,0,1,7,64], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5afa2a600463278912509f72d9d18ba3":[3,0,0,0,1,1,0,1,0,1,7,30], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5b2d4484498235e80d61a233a7c04991":[3,0,0,0,1,1,0,1,0,1,7,130], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5c090aa7c47fc1b6a05035e07ec9fbb9":[3,0,0,0,1,1,0,1,0,1,7,41], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5e84be20fb6dd068f5368e6d245460bd":[3,0,0,0,1,1,0,1,0,1,7,96], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a5fa3ccc64c973db27e9fcade0810423e":[3,0,0,0,1,1,0,1,0,1,7,19], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a609a1b0e5d49d6de91c649fa962e545d":[3,0,0,0,1,1,0,1,0,1,7,25], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a617e570ec3920b38e651cf3258d88e47":[3,0,0,0,1,1,0,1,0,1,7,69], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a61a2783898a9df78bb27edc33f768e6e":[3,0,0,0,1,1,0,1,0,1,7,63], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a62c383c02f7de80e5edcbc4f21836c7c":[3,0,0,0,1,1,0,1,0,1,7,70], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a6411532ba4971f378391776a9db629d3":[3,0,0,0,1,1,0,1,0,1,7,20], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a65cb59645b852c2394ba3ff8b295e83c":[3,0,0,0,1,1,0,1,0,1,7,2], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a667b2e78d0dabb83c2ec684e3b4253b1":[3,0,0,0,1,1,0,1,0,1,7,94], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a67485a137fce2085007d93aa115cd093":[3,0,0,0,1,1,0,1,0,1,7,128], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a67c0ecaf5a1b782b11146e9fbe80f016":[3,0,0,0,1,1,0,1,0,1,7,76], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a67d12da6232b36c362a6437332da50bf":[3,0,0,0,1,1,0,1,0,1,7,72], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a68db9bf9d92a944f0138e197b7b02fc2":[3,0,0,0,1,1,0,1,0,1,7,77], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a6d65173999078f89f8d4e01036aea8a4":[3,0,0,0,1,1,0,1,0,1,7,0], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a6f6922bd3e51b8d19b4f78df8dec7a52":[3,0,0,0,1,1,0,1,0,1,7,115], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a6ff47afa5dc7daa42cc705a03fca8a9b":[3,0,0,0,1,1,0,1,0,1,7,11], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a707832f12c57d104ccba9158524e8e69":[3,0,0,0,1,1,0,1,0,1,7,104], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a7087c7ffb872fac6aba0c893b8bbee42":[3,0,0,0,1,1,0,1,0,1,7,113], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a73bdd29aeb8e3e3274bbb71c30d70eb7":[3,0,0,0,1,1,0,1,0,1,7,82], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a743b7827c281254e45c305696344535b":[3,0,0,0,1,1,0,1,0,1,7,75], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a75435e6bea50867263766b9e5f9bc08d":[3,0,0,0,1,1,0,1,0,1,7,40], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a76f258d530f43c55523384b472086771":[3,0,0,0,1,1,0,1,0,1,7,111], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a770e427f6a16eb64e2ece9585ba9d193":[3,0,0,0,1,1,0,1,0,1,7,67], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a7fbe63cdab154c0227420b368fcaea3d":[3,0,0,0,1,1,0,1,0,1,7,8], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a83d1d60e0de07e8b1bf164247a77e28b":[3,0,0,0,1,1,0,1,0,1,7,90], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a8a99d28c3c43cafed58cdbac5f4e9201":[3,0,0,0,1,1,0,1,0,1,7,56], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a8c86fbdd95cf7d3a3bf22d7bd34a3e99":[3,0,0,0,1,1,0,1,0,1,7,62], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a8e150fc012f9d2eb7b61e16abca9462a":[3,0,0,0,1,1,0,1,0,1,7,55], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a8f0b108fa3efae8069bfeecaef1f0330":[3,0,0,0,1,1,0,1,0,1,7,49], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a8f72f2a45cee9a5f2e0afe5d2bb9d4b1":[3,0,0,0,1,1,0,1,0,1,7,125], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9047140da3bd5d20676eb94102443e5a":[3,0,0,0,1,1,0,1,0,1,7,23], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a91c001e5547439063fefe550d83533b6":[3,0,0,0,1,1,0,1,0,1,7,122], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a93b1453c8ec5a548389c935052536ccb":[3,0,0,0,1,1,0,1,0,1,7,101], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a94ec2b8d73527db3da316ad28195219e":[3,0,0,0,1,1,0,1,0,1,7,132], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a95084a1747e0d0fbdd9cf4de527e93a6":[3,0,0,0,1,1,0,1,0,1,7,44], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a97f014516561ef487ec368d6158eb3f4":[3,0,0,0,1,1,0,1,0,1,7,123], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a98cf43657dbee14ae37662526484911d":[3,0,0,0,1,1,0,1,0,1,7,71], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a996483b6f227bb90a1a066a4d1d6ce10":[3,0,0,0,1,1,0,1,0,1,7,43], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a996976a37b7f6296cc3cbf388ac91cee":[3,0,0,0,1,1,0,1,0,1,7,86], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9a19a83d0097df35f7ba7af753f0537d":[3,0,0,0,1,1,0,1,0,1,7,119], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9c2398f188d23be4d9676cadf1c2909f":[3,0,0,0,1,1,0,1,0,1,7,31], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9c6e5569ecea4e7bfa902bac54f7bbe2":[3,0,0,0,1,1,0,1,0,1,7,54], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9f27410725ab8cc8854a2769c7a516b8":[3,0,0,0,1,1,0,1,0,1,7,51], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0a9f370737a8ad22210a0dd6b1c8f00896":[3,0,0,0,1,1,0,1,0,1,7,45], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aa1876a44fe9d3e277e5a90a14fd1d375":[3,0,0,0,1,1,0,1,0,1,7,27], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aa6ab62e9da89b20d720c70602624bfc2":[3,0,0,0,1,1,0,1,0,1,7,78], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aa889858bd19327fe8b643b9ff36a1782":[3,0,0,0,1,1,0,1,0,1,7,140], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aaac43a86b5d19ed2ff0aefa6b0758fe3":[3,0,0,0,1,1,0,1,0,1,7,29], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ab2fb12c1d8469e020be7d77d0d9cf2dd":[3,0,0,0,1,1,0,1,0,1,7,74], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ab5bd346b77f564748d4d2743156ed6e8":[3,0,0,0,1,1,0,1,0,1,7,105], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ab88072f7e28a64cfd1a36370be8450bb":[3,0,0,0,1,1,0,1,0,1,7,28], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0abb7aedfa61007447dd6efaf9f37641e3":[3,0,0,0,1,1,0,1,0,1,7,112], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0abc432826c5179d5332c28e32f2ff58a0":[3,0,0,0,1,1,0,1,0,1,7,17], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0abca51d13e304e17f34a3e7c598884ae8":[3,0,0,0,1,1,0,1,0,1,7,73], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0abda9643ac6601722a28f238714274da4":[3,0,0,0,1,1,0,1,0,1,7,114], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0abfa3108ee9c64dae693a704959e2c25e":[3,0,0,0,1,1,0,1,0,1,7,22], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ac10bddadd1786a8a12f96ae7db5bafb8":[3,0,0,0,1,1,0,1,0,1,7,68], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ac378985d629e99a4e86213db0cd5e70d":[3,0,0,0,1,1,0,1,0,1,7,15], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ac55c68625ca1da0e1d4a922fc8cb373e":[3,0,0,0,1,1,0,1,0,1,7,57], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ac5aaf97240e28904c5b96eab2cbf753b":[3,0,0,0,1,1,0,1,0,1,7,85], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ac7357031b08389007e6da9f56ea145e0":[3,0,0,0,1,1,0,1,0,1,7,6], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0acda7a650c5856cf2f6738072447d7825":[3,0,0,0,1,1,0,1,0,1,7,50], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0acf04a02e37b774fc311a48f605c3c597":[3,0,0,0,1,1,0,1,0,1,7,4], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad06424e64af2d470476a234e12a48a40":[3,0,0,0,1,1,0,1,0,1,7,124], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad1d813a48d99f0e102f7d0a1b9068001":[3,0,0,0,1,1,0,1,0,1,7,135], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad238c6c8a44f8e1933911fe10de064f7":[3,0,0,0,1,1,0,1,0,1,7,12], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad29db4ac8712f5bdb343991281b26db1":[3,0,0,0,1,1,0,1,0,1,7,136], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad2ebed4eaf58509dcc358e1782c38fea":[3,0,0,0,1,1,0,1,0,1,7,16], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad2eed3a4c8bdb8a3523e9fc0f6fdc040":[3,0,0,0,1,1,0,1,0,1,7,53], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad3472adca7f1b0edf7dc5d99bd79bb9e":[3,0,0,0,1,1,0,1,0,1,7,52], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad43a591d2b25a4afe584e778d2d8cdbd":[3,0,0,0,1,1,0,1,0,1,7,66], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad487dd0b55dfcacdd920ccbdaeafa351":[3,0,0,0,1,1,0,1,0,1,7,139], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad508fe45cecaf653904a0e774084bb5c":[3,0,0,0,1,1,0,1,0,1,7,137], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ad557e5da14dcbe24b5b54c33bd8d15ee":[3,0,0,0,1,1,0,1,0,1,7,60], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0adc8a6c38cc98a2c29859c34b26974bc7":[3,0,0,0,1,1,0,1,0,1,7,93], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0adcbb31fdf774bcd3f09d54c4487377c0":[3,0,0,0,1,1,0,1,0,1,7,134], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0adfcfa24e3022fb4b704f051d98ec0557":[3,0,0,0,1,1,0,1,0,1,7,83], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae07e81c20cf5935f5225765f0af81755":[3,0,0,0,1,1,0,1,0,1,7,48], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae21cb3066a44318e0b096d0d9e010f09":[3,0,0,0,1,1,0,1,0,1,7,26], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae707e58e389e4f7cda44cd1254a6d1fc":[3,0,0,0,1,1,0,1,0,1,7,35], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae74648a463c3d18a05e153977cb39855":[3,0,0,0,1,1,0,1,0,1,7,107], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae8c7ad982a8c98a38c7e3381043b94d8":[3,0,0,0,1,1,0,1,0,1,7,89], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0ae962684214d1c84dbc6a691b6d9eb60c":[3,0,0,0,1,1,0,1,0,1,7,100], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aea26b11983535b3792d71954aa4d41d8":[3,0,0,0,1,1,0,1,0,1,7,18], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aefc5f4b470619b932aed03953e50ce60":[3,0,0,0,1,1,0,1,0,1,7,5], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0aefe66dd5675ff42810bbc04512d44c4b":[3,0,0,0,1,1,0,1,0,1,7,121], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0af3311d3d14c8437553bf3e3f90920736":[3,0,0,0,1,1,0,1,0,1,7,95], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0af431b0eea3c08186ed101e588bfb3a2f":[3,0,0,0,1,1,0,1,0,1,7,97], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0af664bac577c1c520c4a98e63457d2f22":[3,0,0,0,1,1,0,1,0,1,7,126], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0af6b3c061d92535983e73d0e6c1b8338c":[3,0,0,0,1,1,0,1,0,1,7,36], +"color_8h.html#afcb360f8436b357c4d6f62a3fd73afc0afe01d67a002dfa0f3ac084298142eccd":[3,0,0,0,1,1,0,1,0,1,7,99], +"color_8h_source.html":[3,0,0,0,1,1,0,1,0,1], +"comm__port_8h.html":[3,0,0,0,0,0], +"comm__port_8h.html#a4db2ee1c995aba81900420b7e4312bc1":[3,0,0,0,0,0,3], +"comm__port_8h.html#aa902d8a50576dcdede27023c03f65747":[3,0,0,0,0,0,2], +"comm__port_8h_source.html":[3,0,0,0,0,0], +"common_8h.html":[3,0,0,0,1,1,0,5], +"common_8h.html#a15d2dc432e6bb83beb5130be9a4ca8d6":[3,0,0,0,1,1,0,5,15], +"common_8h.html#a173dd7064323e4807d720eabcc95fc73":[3,0,0,0,1,1,0,5,21], +"common_8h.html#a1ed786fe4b8a5babc3aeaa3eba9a9921":[3,0,0,0,1,1,0,5,31], +"common_8h.html#a1f0ef27d8fc022078352c93ef310cdb4":[3,0,0,0,1,1,0,5,6], +"common_8h.html#a2cf36a7836e979b59b20edea26135766":[3,0,0,0,1,1,0,5,5], +"common_8h.html#a2d61216ea1cb33ba27ddc6a78cc98ecd":[3,0,0,0,1,1,0,5,29], +"common_8h.html#a30f621e51aba2dfe9f905fd9e2dee918":[3,0,0,0,1,1,0,5,17], +"common_8h.html#a320d85598eda29f072e343e57ec27ab8":[3,0,0,0,1,1,0,5,30], +"common_8h.html#a33c73f3639c48dd378b33fabbfd27b7f":[3,0,0,0,1,1,0,5,10], +"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8b":[3,0,0,0,1,1,0,5,26], +"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8ba309b214a2b8629b6cf0048ce916e8a58":[3,0,0,0,1,1,0,5,26,5], +"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8ba4d723e295b98a75c1263d85fc165045f":[3,0,0,0,1,1,0,5,26,4], +"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8ba6c371ca09668dd308a1997eab47def05":[3,0,0,0,1,1,0,5,26,3], +"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8ba7f09db55ad64d87e4124f10582cb016f":[3,0,0,0,1,1,0,5,26,2], +"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8ba917591d8c0e89f6e6247c95c67809a1a":[3,0,0,0,1,1,0,5,26,6], +"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8badd5891a1416461ee9e7d7e19d41af51f":[3,0,0,0,1,1,0,5,26,0], +"common_8h.html#a35f5227e5daf228d28a207b7b2aefc8baea632f71a316dac4dbaf2d98534c7ca5":[3,0,0,0,1,1,0,5,26,1], +"common_8h.html#a3966e2839945ed2b8adf9373b7bdd56e":[3,0,0,0,1,1,0,5,8], +"common_8h.html#a422c57d3088160b517e5a74e5f318253":[3,0,0,0,1,1,0,5,23], +"common_8h.html#a57ad66f77dc01b41a51f7e884dd460dd":[3,0,0,0,1,1,0,5,13], +"common_8h.html#a6ffd317d15c017cf593212e5441ad70a":[3,0,0,0,1,1,0,5,9], +"common_8h.html#a70535c68de0c12e9854e31928fb2d671":[3,0,0,0,1,1,0,5,33], +"common_8h.html#a8585bf495310a6ce695191739351709b":[3,0,0,0,1,1,0,5,20], +"common_8h.html#a8747e6feba8bf2d3f204cb76bfd4607a":[3,0,0,0,1,1,0,5,3], +"common_8h.html#a8f7ec3c49f83b525b8c15d459b1136d0":[3,0,0,0,1,1,0,5,12], +"common_8h.html#a9ad12194a0d42daffd44df91f9854f29":[3,0,0,0,1,1,0,5,4], +"common_8h.html#aa9b5c2298bf713fbe02b7e538d797ecd":[3,0,0,0,1,1,0,5,24], +"common_8h.html#ab2ea0d29ee3c1ccb1f9484a8198c59b0":[3,0,0,0,1,1,0,5,16], +"common_8h.html#ac7313aeac75b2d8521f04ba9508b9695":[3,0,0,0,1,1,0,5,7], +"common_8h.html#acf7ce125b3622e44f8f1702d699e0b06":[3,0,0,0,1,1,0,5,18], +"common_8h.html#acff159db380f787b46d9d51d7f9cc69c":[3,0,0,0,1,1,0,5,14], +"common_8h.html#ad3ed787a29f245c833ef66faf48036e2":[3,0,0,0,1,1,0,5,22], +"common_8h.html#ad598fbd8338772e66ae09e8723a07ced":[3,0,0,0,1,1,0,5,27], +"common_8h.html#ad598fbd8338772e66ae09e8723a07ceda52d33cb937bbdab234ab1729a0f8225b":[3,0,0,0,1,1,0,5,27,1], +"common_8h.html#ad598fbd8338772e66ae09e8723a07cedaf5ddaf0ca7929578b408c909429f68f2":[3,0,0,0,1,1,0,5,27,0], +"common_8h.html#add7f1cc7c1914c6f6a6773cfbd1bb997":[3,0,0,0,1,1,0,5,19], +"common_8h.html#ae4fda6f71f35120e2ff48157fca961b5":[3,0,0,0,1,1,0,5,2], +"common_8h.html#ae7c510cd37fa5221221eb91f03a98655":[3,0,0,0,1,1,0,5,32], +"common_8h.html#af1f71a172e3626a0271006a3a668e6ff":[3,0,0,0,1,1,0,5,28], +"common_8h.html#af48e310b2f366ac6544701e6a3b56247":[3,0,0,0,1,1,0,5,25], +"common_8h.html#afe938b48c2a5e8816892fbc1841f9694":[3,0,0,0,1,1,0,5,11], +"common_8h_source.html":[3,0,0,0,1,1,0,5], +"console__globals_8h.html":[3,0,0,0,1,1,0,0,2], +"console__globals_8h_source.html":[3,0,0,0,1,1,0,0,2], +"core_8h.html":[3,0,0,0,1,1,0,1,0,2], +"core_8h.html#a023c6c178e254d81d578b90921804b1c":[3,0,0,0,1,1,0,1,0,2,70], +"core_8h.html#a026d4ace419ac741560868f9cf829727":[3,0,0,0,1,1,0,1,0,2,132], +"core_8h.html#a03e7ee720f43adc7d83c652a6a5dd5f8":[3,0,0,0,1,1,0,1,0,2,47], +"core_8h.html#a056f29fbe3ea234ac0cc417fb866a189":[3,0,0,0,1,1,0,1,0,2,51], +"core_8h.html#a06c10c4c39e421b87bbc1e306b68a866":[3,0,0,0,1,1,0,1,0,2,87] }; diff --git a/docs/navtreeindex5.js b/docs/navtreeindex5.js index 0786839..ed396b1 100644 --- a/docs/navtreeindex5.js +++ b/docs/navtreeindex5.js @@ -1,253 +1,253 @@ var NAVTREEINDEX5 = { -"core_8h.html#a0af13074db7b689a71bd9ae94f8745a1":[2,0,0,0,1,1,0,1,0,2,65], -"core_8h.html#a0b05bc8192a59d32f57c7644ef0d610b":[2,0,0,0,1,1,0,1,0,2,76], -"core_8h.html#a0ea486bdd96af45e228fa60a3ca90c6e":[2,0,0,0,1,1,0,1,0,2,101], -"core_8h.html#a114b82825ab2dee13e1914fddb26dd87":[2,0,0,0,1,1,0,1,0,2,111], -"core_8h.html#a12e2ca23ef7e44381012322943cd45e4":[2,0,0,0,1,1,0,1,0,2,108], -"core_8h.html#a1a322107307b020b6eac933958da94f6":[2,0,0,0,1,1,0,1,0,2,77], -"core_8h.html#a1a9971c629baa5e058f4a13dfa6e7f4b":[2,0,0,0,1,1,0,1,0,2,157], -"core_8h.html#a1bee81a83919db01b3cc9d95981d3311":[2,0,0,0,1,1,0,1,0,2,131], -"core_8h.html#a1e3ffe834c427bc295b6880efcd17976":[2,0,0,0,1,1,0,1,0,2,62], -"core_8h.html#a1e8f98191fb8cde7f6fa0b768dccdab2":[2,0,0,0,1,1,0,1,0,2,97], -"core_8h.html#a1fcfd29b295417c3eb7395c4df6ea1f9":[2,0,0,0,1,1,0,1,0,2,148], -"core_8h.html#a253206334a77520a94a72af63516dabd":[2,0,0,0,1,1,0,1,0,2,100], -"core_8h.html#a25b3bfdbfda4389ce170995445fbb3bd":[2,0,0,0,1,1,0,1,0,2,103], -"core_8h.html#a25c22ca313078429a88938f673059ae8":[2,0,0,0,1,1,0,1,0,2,74], -"core_8h.html#a29e4c9965f74e7f2bb6f75d7153468b6":[2,0,0,0,1,1,0,1,0,2,145], -"core_8h.html#a2ae33062c35ef4ccc25efa805d35fdae":[2,0,0,0,1,1,0,1,0,2,154], -"core_8h.html#a2f833eb53fcc22e4b5a7bd8cb99f0232":[2,0,0,0,1,1,0,1,0,2,139], -"core_8h.html#a2fa996843b6bac7a9a298172eede8d39":[2,0,0,0,1,1,0,1,0,2,160], -"core_8h.html#a30260f394fa5dca5ec3c6db9a0acb02e":[2,0,0,0,1,1,0,1,0,2,49], -"core_8h.html#a31503adb2a84c0005790ee748fb41579a7d2448b2825c27c48270a23cf67055d9":[2,0,0,0,1,1,0,1,0,2,91], -"core_8h.html#a31e1d7b172b530be8c4ab5d7bb7c921d":[2,0,0,0,1,1,0,1,0,2,79], -"core_8h.html#a3301ccbf6a0ab1b233242041a835a54a":[2,0,0,0,1,1,0,1,0,2,83], -"core_8h.html#a33c15cec4035f1a3dc6fe5d4ae05c746":[2,0,0,0,1,1,0,1,0,2,73], -"core_8h.html#a344b631dd2a44d6240a5bf881fa384e5":[2,0,0,0,1,1,0,1,0,2,117], -"core_8h.html#a363cb0623e6975ff2b357a52a03e4728":[2,0,0,0,1,1,0,1,0,2,67], -"core_8h.html#a3771b53380243f3c36d061438c0596b3":[2,0,0,0,1,1,0,1,0,2,130], -"core_8h.html#a37de00647fc1e0345f485313cdd522f7":[2,0,0,0,1,1,0,1,0,2,89], -"core_8h.html#a3a6e943d8c70bf3cc543abaaec5bfc46":[2,0,0,0,1,1,0,1,0,2,135], -"core_8h.html#a3ef982cd96cf71b5fa7c37269012dafd":[2,0,0,0,1,1,0,1,0,2,93], -"core_8h.html#a3f6a04fdf140370cbd2b83d8adae100f":[2,0,0,0,1,1,0,1,0,2,144], -"core_8h.html#a4558083081ed076bb18d5e216af90c86":[2,0,0,0,1,1,0,1,0,2,155], -"core_8h.html#a49a095fdcf7a195744579493e8b93e0b":[2,0,0,0,1,1,0,1,0,2,136], -"core_8h.html#a4b4263d060da175d7113962ebfd37819":[2,0,0,0,1,1,0,1,0,2,149], -"core_8h.html#a4f4a486379e85b8d88c73eff6197b768":[2,0,0,0,1,1,0,1,0,2,123], -"core_8h.html#a4f5db4f97e31a127b1236d1ff412bb0c":[2,0,0,0,1,1,0,1,0,2,58], -"core_8h.html#a515a4ead7f137e2c96a61e2aa87ae862":[2,0,0,0,1,1,0,1,0,2,54], -"core_8h.html#a55d7b78b0300ddda018f77208e80f3e9":[2,0,0,0,1,1,0,1,0,2,59], -"core_8h.html#a5b47584a9e90ebd6460675a6c1d6b238":[2,0,0,0,1,1,0,1,0,2,146], -"core_8h.html#a5d3b416a99857b69e3b7de8e88c71ff3":[2,0,0,0,1,1,0,1,0,2,56], -"core_8h.html#a6522e43666855e8166b0e1097d115d83":[2,0,0,0,1,1,0,1,0,2,122], -"core_8h.html#a65490b89e8bd22fd0b8ae4491643d60c":[2,0,0,0,1,1,0,1,0,2,75], -"core_8h.html#a668900c42744d50032df52df341be2f9":[2,0,0,0,1,1,0,1,0,2,86], -"core_8h.html#a66e6c630864ba13be3eae6aed4b9a2ba":[2,0,0,0,1,1,0,1,0,2,118], -"core_8h.html#a69201cb276383873487bf68b4ef8b4cd":[2,0,0,0,1,1,0,1,0,2,50], -"core_8h.html#a6c122dc0a60ed6357913edb855c51d41":[2,0,0,0,1,1,0,1,0,2,102], -"core_8h.html#a700149626e8a27dc80022c52e02fe484":[2,0,0,0,1,1,0,1,0,2,80], -"core_8h.html#a739a7ff96b6dfd65a4de8fe003f5b233":[2,0,0,0,1,1,0,1,0,2,72], -"core_8h.html#a749169f277bb21ccf12b1c665e68e88a":[2,0,0,0,1,1,0,1,0,2,61], -"core_8h.html#a750d1276ba35fb73b8f2998389a5f8c6":[2,0,0,0,1,1,0,1,0,2,64], -"core_8h.html#a7b75e2a1b428d2a4bdf085e65821c6ee":[2,0,0,0,1,1,0,1,0,2,112], -"core_8h.html#a7cc44a51931bcec486a5eaa08598082b":[2,0,0,0,1,1,0,1,0,2,71], -"core_8h.html#a7f29400879301aadb96b80568b8fecc7":[2,0,0,0,1,1,0,1,0,2,141], -"core_8h.html#a809ce36bdf78b55c536fbca340bfec9c":[2,0,0,0,1,1,0,1,0,2,53], -"core_8h.html#a80b4b91c27453ab70741b162fb1b9ee9":[2,0,0,0,1,1,0,1,0,2,107], -"core_8h.html#a812744db908d21fe09cf9ba844d8b1ce":[2,0,0,0,1,1,0,1,0,2,113], -"core_8h.html#a829ae121113d346b82fd668a780a671c":[2,0,0,0,1,1,0,1,0,2,95], -"core_8h.html#a842c0c5e03126468303bbd3b9a96a945":[2,0,0,0,1,1,0,1,0,2,133], -"core_8h.html#a8561b3876ffaedaf2b94f434da083c34":[2,0,0,0,1,1,0,1,0,2,151], -"core_8h.html#a887c191adf8cfaf06ed40b5c4d487343":[2,0,0,0,1,1,0,1,0,2,48], -"core_8h.html#a8a71644ac0a6fba4454f549c1f3f0b2f":[2,0,0,0,1,1,0,1,0,2,81], -"core_8h.html#a8accad256e8cb70d1398a568742a60f0":[2,0,0,0,1,1,0,1,0,2,99], -"core_8h.html#a8e7a33185c7fc32dd026773a8ece00b8":[2,0,0,0,1,1,0,1,0,2,60], -"core_8h.html#a8fcea7a9901c65a40f9ed5d76c3b53f9":[2,0,0,0,1,1,0,1,0,2,124], -"core_8h.html#a9310b701f90ea156eb6abd7aa4f199cb":[2,0,0,0,1,1,0,1,0,2,105], -"core_8h.html#a988bfc81f48221fec1910c217bc0dfcc":[2,0,0,0,1,1,0,1,0,2,94], -"core_8h.html#a99faaaf62db5189f2e36070a04fc6981":[2,0,0,0,1,1,0,1,0,2,109], -"core_8h.html#a9a4960b70582ed2620911a0b75dce0b5":[2,0,0,0,1,1,0,1,0,2,46], -"core_8h.html#a9cf9954148cb1b82eb6d8cf69fef9f0e":[2,0,0,0,1,1,0,1,0,2,120], -"core_8h.html#aa0d84dd629a961d4ba20bad142b6fa75":[2,0,0,0,1,1,0,1,0,2,137], -"core_8h.html#aa52ab0ebff57aaa2e4cd5ba43ac4d95d":[2,0,0,0,1,1,0,1,0,2,82], -"core_8h.html#aa673164d8ab4b4bedc66e0dfa6faf952":[2,0,0,0,1,1,0,1,0,2,127], -"core_8h.html#aab9ed525c003632b5b9c5314f22411af":[2,0,0,0,1,1,0,1,0,2,138], -"core_8h.html#aacbe9f39925b33b031be5cffc988c95e":[2,0,0,0,1,1,0,1,0,2,126], -"core_8h.html#aae8c11e3b42fe7cd379cf3d5e076ce8c":[2,0,0,0,1,1,0,1,0,2,129], -"core_8h.html#ab190353863f3a4660bed7bea829a6822":[2,0,0,0,1,1,0,1,0,2,121], -"core_8h.html#ab264eb8eb9841f0cee5af4284196a4cc":[2,0,0,0,1,1,0,1,0,2,147], -"core_8h.html#ab366b11763385ee5096ec32544a9ac63":[2,0,0,0,1,1,0,1,0,2,134], -"core_8h.html#ab49c070fd72bc190afe897235a6391b7":[2,0,0,0,1,1,0,1,0,2,116], -"core_8h.html#ab4a71234cf33d295c8776c1ecfd04d80":[2,0,0,0,1,1,0,1,0,2,114], -"core_8h.html#ab6661d948e3c2d86d501b5ab48236a68":[2,0,0,0,1,1,0,1,0,2,159], -"core_8h.html#abef3b695050c4132b4fc4d7f256b9580":[2,0,0,0,1,1,0,1,0,2,150], -"core_8h.html#ac0cedf42ad81436f35151f2173458d61":[2,0,0,0,1,1,0,1,0,2,153], -"core_8h.html#ac5e450936052d8a4292d6e609e73e2bd":[2,0,0,0,1,1,0,1,0,2,57], -"core_8h.html#ac6a1568f2fc1baa1c6b9e139c038a254":[2,0,0,0,1,1,0,1,0,2,119], -"core_8h.html#ac78801118381630acf4a9e778e67f6ee":[2,0,0,0,1,1,0,1,0,2,104], -"core_8h.html#acd0741048e2d4d76c3a549c5a6d9d857":[2,0,0,0,1,1,0,1,0,2,96], -"core_8h.html#acedd512a780532f842377b6f166a4bab":[2,0,0,0,1,1,0,1,0,2,156], -"core_8h.html#ad0cd7007be07fae4a096c1a646c50c30":[2,0,0,0,1,1,0,1,0,2,66], -"core_8h.html#ad2f9ebed8b13beff9cd9bd1a9af7d0c6":[2,0,0,0,1,1,0,1,0,2,88], -"core_8h.html#ad37aba96f0e4cb12a9decef95122e4bf":[2,0,0,0,1,1,0,1,0,2,85], -"core_8h.html#ad4b210aa357f1518a14acd748f576a27":[2,0,0,0,1,1,0,1,0,2,84], -"core_8h.html#ad553d3adb090e46cde2de286a928a8c9a9a0a8f1a6f42d5a0e96eadee1aaf4e3b":[2,0,0,0,1,1,0,1,0,2,90], -"core_8h.html#ad61aad8232950c65bdff8b83abe92929":[2,0,0,0,1,1,0,1,0,2,142], -"core_8h.html#ad61b07c8fe83db5520e226ab23edf892":[2,0,0,0,1,1,0,1,0,2,140], -"core_8h.html#ad7545fdef9670aa6f3a042af78b14554":[2,0,0,0,1,1,0,1,0,2,143], -"core_8h.html#ae0d2fbdf031547a949fc7e1c0b3c97f1":[2,0,0,0,1,1,0,1,0,2,55], -"core_8h.html#ae63557fe9ccf973c29dc6dd122fa4ae0":[2,0,0,0,1,1,0,1,0,2,78], -"core_8h.html#ae636a21b85a25f216949a2987bfd9d89":[2,0,0,0,1,1,0,1,0,2,110], -"core_8h.html#ae8ef7d855b651c42243a7c6b109cd94b":[2,0,0,0,1,1,0,1,0,2,98], -"core_8h.html#aeb8392ed1d3db2b0d61256627fd0ee45":[2,0,0,0,1,1,0,1,0,2,106], -"core_8h.html#aef128913e8400683b1cbd1a3a2e11df3":[2,0,0,0,1,1,0,1,0,2,68], -"core_8h.html#af1664d9b06d9e4b78a8db3ea1fa99d68":[2,0,0,0,1,1,0,1,0,2,128], -"core_8h.html#af4388801466a5994a363d6005616371a":[2,0,0,0,1,1,0,1,0,2,52], -"core_8h.html#af68c2d6c2ea535e9fe1dde8a97016019":[2,0,0,0,1,1,0,1,0,2,115], -"core_8h.html#af7f827e50dd7667484c279ac1d38f30b":[2,0,0,0,1,1,0,1,0,2,69], -"core_8h.html#af8b98afef956b03a99bc61d088705f13":[2,0,0,0,1,1,0,1,0,2,92], -"core_8h.html#af8b98afef956b03a99bc61d088705f13a1956769baf47b0a96768474f1cc5135c":[2,0,0,0,1,1,0,1,0,2,92,11], -"core_8h.html#af8b98afef956b03a99bc61d088705f13a23b2dd85fe035d41a5e93822e346d277":[2,0,0,0,1,1,0,1,0,2,92,5], -"core_8h.html#af8b98afef956b03a99bc61d088705f13a28edcc9fc66b5c65a8c9b89975164568":[2,0,0,0,1,1,0,1,0,2,92,13], -"core_8h.html#af8b98afef956b03a99bc61d088705f13a2bf13ea13c39343d5656a3804f53508a":[2,0,0,0,1,1,0,1,0,2,92,15], -"core_8h.html#af8b98afef956b03a99bc61d088705f13a355d7dd1bc164c3b845d96bb5ba1a5c0":[2,0,0,0,1,1,0,1,0,2,92,14], -"core_8h.html#af8b98afef956b03a99bc61d088705f13a3db2e8053c230033779933d7836846c2":[2,0,0,0,1,1,0,1,0,2,92,8], -"core_8h.html#af8b98afef956b03a99bc61d088705f13a4291d26029047911bc456839856ea64d":[2,0,0,0,1,1,0,1,0,2,92,7], -"core_8h.html#af8b98afef956b03a99bc61d088705f13a73df9a3576f5a9596c4651fddef7dfac":[2,0,0,0,1,1,0,1,0,2,92,12], -"core_8h.html#af8b98afef956b03a99bc61d088705f13a782542b1b5c4dd8c67d2d015aeb79ee9":[2,0,0,0,1,1,0,1,0,2,92,0], -"core_8h.html#af8b98afef956b03a99bc61d088705f13a9c4e587796c3f3ad1777bd960a717e39":[2,0,0,0,1,1,0,1,0,2,92,9], -"core_8h.html#af8b98afef956b03a99bc61d088705f13a9c9273f21d9f37b64f17801628d44633":[2,0,0,0,1,1,0,1,0,2,92,3], -"core_8h.html#af8b98afef956b03a99bc61d088705f13aa7a6f8b82db485f179833d300de9d139":[2,0,0,0,1,1,0,1,0,2,92,1], -"core_8h.html#af8b98afef956b03a99bc61d088705f13ae7a9e0deca92ad9278f3def34dafd2c8":[2,0,0,0,1,1,0,1,0,2,92,4], -"core_8h.html#af8b98afef956b03a99bc61d088705f13ae9e4c238a7992d284d52befd618886ef":[2,0,0,0,1,1,0,1,0,2,92,10], -"core_8h.html#af8b98afef956b03a99bc61d088705f13aecccd88040ba51af7e74784567384260":[2,0,0,0,1,1,0,1,0,2,92,6], -"core_8h.html#af8b98afef956b03a99bc61d088705f13aee2e9fd562a7d50e7e47e5f82188d4d5":[2,0,0,0,1,1,0,1,0,2,92,2], -"core_8h.html#afa144e698f8df527d6e51688eb9abbd1":[2,0,0,0,1,1,0,1,0,2,63], -"core_8h.html#afbb941ac362fc08798ab3f9b1303f88f":[2,0,0,0,1,1,0,1,0,2,152], -"core_8h.html#afd48e0f440edf24c821e4ff7554b9730":[2,0,0,0,1,1,0,1,0,2,125], -"core_8h.html#affa5d05127df37768b43a062b2859d0f":[2,0,0,0,1,1,0,1,0,2,158], -"core_8h_source.html":[2,0,0,0,1,1,0,1,0,2], -"daily__file__sink_8h.html":[2,0,0,0,1,1,0,2,4], -"daily__file__sink_8h.html#a1f1c8468d4251073ce96194a5db1fb9e":[2,0,0,0,1,1,0,2,4,3], -"daily__file__sink_8h.html#a61124c3792c83b90aad230770f627525":[2,0,0,0,1,1,0,2,4,2], -"daily__file__sink_8h.html#a887beb44c55ef32f4bc62fa16451c77e":[2,0,0,0,1,1,0,2,4,5], -"daily__file__sink_8h.html#aeab720351e32788bc6cdf8ada42b0f1f":[2,0,0,0,1,1,0,2,4,4], -"daily__file__sink_8h_source.html":[2,0,0,0,1,1,0,2,4], -"dir_0c3a0641627b76fd80f03d211e44dc98.html":[2,0,0,0,1,1,0,1], -"dir_0edbe3cf21aa1980d331aee71a413a85.html":[2,0,0,0,1,0], -"dir_148a221396087d65c55fa0ea541856de.html":[2,0,0,0,1,1,0,1,0], -"dir_239a77e39c0fcb2f1e08881bb007ba07.html":[2,0,0,0,0], -"dir_248a80cf6760c7a1ab13394a1c16f7b2.html":[2,0,0,0,1,1,0], -"dir_5f1136fe404e0a548faf586fae339a6a.html":[2,0,0], -"dir_7bb3e31efd6b819bbb0704cee4a66d41.html":[2,0,0,0,1], -"dir_7d093cd833acfccb787639923feedd9d.html":[2,0,0,0,1,1,0,0], -"dir_92a4bcc0ca1142b221c58a95a60bf3b6.html":[2,0,0,0,1,1,0,2], -"dir_cf58c3a45797022668a1e269b5315a33.html":[2,0,0,0,1,1], -"dir_fef6b6f1028f30fedf17225feaaa02fe.html":[2,0,0,0], -"dist__sink_8h.html":[2,0,0,0,1,1,0,2,5], -"dist__sink_8h.html#a08b36045f24c178daafc48778df0ce5a":[2,0,0,0,1,1,0,2,5,2], -"dist__sink_8h.html#a1ec468592fd56492075c61a4917acd12":[2,0,0,0,1,1,0,2,5,1], -"dist__sink_8h_source.html":[2,0,0,0,1,1,0,2,5], -"file__helper_8h.html":[2,0,0,0,1,1,0,0,3], -"file__helper_8h_source.html":[2,0,0,0,1,1,0,0,3], -"files.html":[2,0], -"fmt_8h.html":[2,0,0,0,1,1,0,1,2], -"fmt_8h.html#a27b3249db8d77bd236109bda307bc263":[2,0,0,0,1,1,0,1,2,0], -"fmt_8h.html#a66278651d81592645cef28ca33a6ab92":[2,0,0,0,1,1,0,1,2,1], -"fmt_8h_source.html":[2,0,0,0,1,1,0,1,2], -"fmt__helper_8h.html":[2,0,0,0,1,1,0,0,4], -"fmt__helper_8h.html#a0d2621043fa718e54ffcaa2e9812dfa4":[2,0,0,0,1,1,0,0,4,1], -"fmt__helper_8h.html#a1cd64e7ba833d726c77344aa9fb85e6a":[2,0,0,0,1,1,0,0,4,0], -"fmt__helper_8h.html#a27585b20ce58cd861f4e37be0057cc41":[2,0,0,0,1,1,0,0,4,9], -"fmt__helper_8h.html#a569553750f9f2fa7b16c94a56a398de3":[2,0,0,0,1,1,0,0,4,8], -"fmt__helper_8h.html#a603f4d0d8853a61610a0042d5d62fe94":[2,0,0,0,1,1,0,0,4,2], -"fmt__helper_8h.html#a976eeb3c4a42ccfb05437aa9a0d4d9f7":[2,0,0,0,1,1,0,0,4,3], -"fmt__helper_8h.html#aa2b4191cb8c40474fb61787ad67face5":[2,0,0,0,1,1,0,0,4,10], -"fmt__helper_8h.html#aad467c706932b56929dae091b39c23f3":[2,0,0,0,1,1,0,0,4,7], -"fmt__helper_8h.html#ae8d7b70c5b54338c0903cf494b06404a":[2,0,0,0,1,1,0,0,4,4], -"fmt__helper_8h.html#aefae60b1ebdae78bc8f11c26b36b2cd6":[2,0,0,0,1,1,0,0,4,6], -"fmt__helper_8h.html#af739ecce102d47ff08a0f344a96897d9":[2,0,0,0,1,1,0,0,4,5], -"fmt__helper_8h_source.html":[2,0,0,0,1,1,0,0,4], -"format-inl_8h.html":[2,0,0,0,1,1,0,1,0,3], -"format-inl_8h.html#a171b42c0035379bd3c3983f573ee09db":[2,0,0,0,1,1,0,1,0,3,15], -"format-inl_8h.html#a1a9971c629baa5e058f4a13dfa6e7f4b":[2,0,0,0,1,1,0,1,0,3,25], -"format-inl_8h.html#a1fa02ff736934db730c7545b4c840a4c":[2,0,0,0,1,1,0,1,0,3,17], -"format-inl_8h.html#a270efa9d1d49796e04a96f764a68c8b5":[2,0,0,0,1,1,0,1,0,3,13], -"format-inl_8h.html#a2fa996843b6bac7a9a298172eede8d39":[2,0,0,0,1,1,0,1,0,3,28], -"format-inl_8h.html#a35d4bc2bf717ac7731de7713c54175bb":[2,0,0,0,1,1,0,1,0,3,6], -"format-inl_8h.html#a37f320718a8fbb4cf326d075f6332e93":[2,0,0,0,1,1,0,1,0,3,21], -"format-inl_8h.html#a3bbfb7ce6b764966d8cf5d018589375e":[2,0,0,0,1,1,0,1,0,3,23], -"format-inl_8h.html#a4aa79926398ee27fe7d6db8b0dd54edf":[2,0,0,0,1,1,0,1,0,3,10], -"format-inl_8h.html#a5d09560672b4a60a1414fa7321b9ea66":[2,0,0,0,1,1,0,1,0,3,16], -"format-inl_8h.html#a63add7333da71960d33855aa1489c2ee":[2,0,0,0,1,1,0,1,0,3,19], -"format-inl_8h.html#a6a266d9a7b8249c93b139f1fa499a45d":[2,0,0,0,1,1,0,1,0,3,12], -"format-inl_8h.html#a7b59f9b149f610d3edd05ed99536253c":[2,0,0,0,1,1,0,1,0,3,9], -"format-inl_8h.html#a7f211f565c9879fafad806b788dde60d":[2,0,0,0,1,1,0,1,0,3,11], -"format-inl_8h.html#a80875403133fef6385e50480459b1136":[2,0,0,0,1,1,0,1,0,3,24], -"format-inl_8h.html#a80e439a6cba95b74e9324248a41b1005":[2,0,0,0,1,1,0,1,0,3,29], -"format-inl_8h.html#a8307cb500850a7c5033cf64702e15990":[2,0,0,0,1,1,0,1,0,3,22], -"format-inl_8h.html#a96be9ab86d7703a1aace4eda80007e69":[2,0,0,0,1,1,0,1,0,3,18], -"format-inl_8h.html#a9a9bb3caa94066b3adc175bb24cb1783":[2,0,0,0,1,1,0,1,0,3,8], -"format-inl_8h.html#aa8305888233bc94e346b9c162f6a8f18":[2,0,0,0,1,1,0,1,0,3,14], -"format-inl_8h.html#ab6661d948e3c2d86d501b5ab48236a68":[2,0,0,0,1,1,0,1,0,3,27], -"format-inl_8h.html#ab8efe0100a6d7cc74729f5bf7537799c":[2,0,0,0,1,1,0,1,0,3,5], -"format-inl_8h.html#aede03e1a36d834c65a48c9349a085fc8":[2,0,0,0,1,1,0,1,0,3,20], -"format-inl_8h.html#aeff75c93a29bc942ca36b31a4b634fe9":[2,0,0,0,1,1,0,1,0,3,7], -"format-inl_8h.html#affa5d05127df37768b43a062b2859d0f":[2,0,0,0,1,1,0,1,0,3,26], -"format-inl_8h_source.html":[2,0,0,0,1,1,0,1,0,3], -"format_8h.html":[2,0,0,0,1,1,0,1,0,4], -"format_8h.html#a01817fdc23bf5758e9466f02e29c0bc8":[2,0,0,0,1,1,0,1,0,4,154], -"format_8h.html#a02c8898388e0ae59aab58be14fcd4e05":[2,0,0,0,1,1,0,1,0,4,81], -"format_8h.html#a058e2c3eea88d232a1056a0bc6487e37":[2,0,0,0,1,1,0,1,0,4,79], -"format_8h.html#a061a90c1c2008acd7b0161cde41c1a11":[2,0,0,0,1,1,0,1,0,4,83], -"format_8h.html#a07522969fe4d2aefef29e120aee66257":[2,0,0,0,1,1,0,1,0,4,174], -"format_8h.html#a09119ad072f708d17b88704fa898aff0":[2,0,0,0,1,1,0,1,0,4,85], -"format_8h.html#a0a4fd70e18eba9d0da494fcb4f0fc32c":[2,0,0,0,1,1,0,1,0,4,118], -"format_8h.html#a0da085ecacb88b605244ce76332bd8d8":[2,0,0,0,1,1,0,1,0,4,105], -"format_8h.html#a0da085ecacb88b605244ce76332bd8d8a32f6d887598434ed14e7579a0b15e1be":[2,0,0,0,1,1,0,1,0,4,105,0], -"format_8h.html#a0da085ecacb88b605244ce76332bd8d8a6cf58d6a173204a962db3dae30a01d8c":[2,0,0,0,1,1,0,1,0,4,105,3], -"format_8h.html#a0da085ecacb88b605244ce76332bd8d8a824a96ce4113d35438ba2c14845de1c3":[2,0,0,0,1,1,0,1,0,4,105,1], -"format_8h.html#a0da085ecacb88b605244ce76332bd8d8aa3ce3cd4b41a0dfcb8376a8072a75cda":[2,0,0,0,1,1,0,1,0,4,105,4], -"format_8h.html#a0da085ecacb88b605244ce76332bd8d8ab47b991779038b4bc5f4558423a749b1":[2,0,0,0,1,1,0,1,0,4,105,2], -"format_8h.html#a0fb9344a00e79ad8826591da20548963":[2,0,0,0,1,1,0,1,0,4,153], -"format_8h.html#a0fd504293f21ab24279d713171185c27":[2,0,0,0,1,1,0,1,0,4,99], -"format_8h.html#a113eb41a02e482540b90183e4ad7ca27":[2,0,0,0,1,1,0,1,0,4,159], -"format_8h.html#a129e2aec5d517b72a1f6173ee17f52f3":[2,0,0,0,1,1,0,1,0,4,144], -"format_8h.html#a160d3314a3cdbd49e187b75d6ce2a652":[2,0,0,0,1,1,0,1,0,4,82], -"format_8h.html#a19f551b1c3abec2c3d40d85ab3ccee03":[2,0,0,0,1,1,0,1,0,4,163], -"format_8h.html#a1b8c0cdffe57c5fe9dc629babe471316":[2,0,0,0,1,1,0,1,0,4,121], -"format_8h.html#a1e8f98191fb8cde7f6fa0b768dccdab2":[2,0,0,0,1,1,0,1,0,4,113], -"format_8h.html#a1f190af8f5561392e03519562384d3b8":[2,0,0,0,1,1,0,1,0,4,123], -"format_8h.html#a22384733f113ad46c4b287aee4d19719":[2,0,0,0,1,1,0,1,0,4,169], -"format_8h.html#a249ca42d663b664f5b0a78850325d02c":[2,0,0,0,1,1,0,1,0,4,147], -"format_8h.html#a25c2cdf9765d15576333ed86298422c5":[2,0,0,0,1,1,0,1,0,4,89], -"format_8h.html#a270efa9d1d49796e04a96f764a68c8b5":[2,0,0,0,1,1,0,1,0,4,138], -"format_8h.html#a2afc98455558e211af15ed1ad8c12bfaa1d9e9ff365a9e37fdcec9b729b9ab046":[2,0,0,0,1,1,0,1,0,4,104], -"format_8h.html#a2afc98455558e211af15ed1ad8c12bfaa972e2caa64b4634539a0e441e76f8148":[2,0,0,0,1,1,0,1,0,4,102], -"format_8h.html#a2afc98455558e211af15ed1ad8c12bfaaaf7cf0b0f8341fafc6ab56b5c5c77f03":[2,0,0,0,1,1,0,1,0,4,103], -"format_8h.html#a2afc98455558e211af15ed1ad8c12bfaadd34df58da973a9740e39d7b83e7b890":[2,0,0,0,1,1,0,1,0,4,101], -"format_8h.html#a2c52eadabf215a00fdc216702dbf0df6":[2,0,0,0,1,1,0,1,0,4,156], -"format_8h.html#a32fc9971391c76e82f000d301ebe6a4c":[2,0,0,0,1,1,0,1,0,4,117], -"format_8h.html#a340304e36817771dec9551579579cb71":[2,0,0,0,1,1,0,1,0,4,141], -"format_8h.html#a37f320718a8fbb4cf326d075f6332e93":[2,0,0,0,1,1,0,1,0,4,168], -"format_8h.html#a3ae8cc1f3fba8eb2083d6a34aa73b5e1":[2,0,0,0,1,1,0,1,0,4,88], -"format_8h.html#a3e0d5b65fb0f03b9d75a8210ff3ffcd1":[2,0,0,0,1,1,0,1,0,4,170], -"format_8h.html#a47258eefd01b3b6278d8057e5c89616a":[2,0,0,0,1,1,0,1,0,4,84], -"format_8h.html#a4750c83c90c5d48c7af7389dff6c0ba8":[2,0,0,0,1,1,0,1,0,4,107], -"format_8h.html#a48d02275b9e72a672b92ea3e7acfd656":[2,0,0,0,1,1,0,1,0,4,139], -"format_8h.html#a4df1425f61a6677296a1d61cb29dd2cc":[2,0,0,0,1,1,0,1,0,4,158], -"format_8h.html#a53dd0b9003b32d9c4c07d008b8a1bebf":[2,0,0,0,1,1,0,1,0,4,152], -"format_8h.html#a58d822138c8882afb5559c4b1d7729cc":[2,0,0,0,1,1,0,1,0,4,146], -"format_8h.html#a5b9fc2504a981744ae35cf292930b4a6":[2,0,0,0,1,1,0,1,0,4,126], -"format_8h.html#a5f7253ee05af521286206b1ab24ad368":[2,0,0,0,1,1,0,1,0,4,166], -"format_8h.html#a66278651d81592645cef28ca33a6ab92":[2,0,0,0,1,1,0,1,0,4,92], -"format_8h.html#a6c2c4c3c6a5dc4e3559ed105c44c4d9e":[2,0,0,0,1,1,0,1,0,4,119], -"format_8h.html#a6d2eb5ad9f38abcc532e048b92070942":[2,0,0,0,1,1,0,1,0,4,124], -"format_8h.html#a701339e31b08c541a11ed944cc20b856":[2,0,0,0,1,1,0,1,0,4,78], -"format_8h.html#a7610f57d82d6ebfb0869d7583fe13264":[2,0,0,0,1,1,0,1,0,4,150], -"format_8h.html#a76566374391410329d8c41e612b24101":[2,0,0,0,1,1,0,1,0,4,149], -"format_8h.html#a7a7af692023580101e0f8028e1d0c653":[2,0,0,0,1,1,0,1,0,4,142], -"format_8h.html#a7ac857188cb657852d3dd2fcb223a331":[2,0,0,0,1,1,0,1,0,4,161], -"format_8h.html#a7b4b0ed85f1aff706d9c244031532b7d":[2,0,0,0,1,1,0,1,0,4,132], -"format_8h.html#a7b65c56bc50b45bf62b20546b5a9d306":[2,0,0,0,1,1,0,1,0,4,133] +"core_8h.html#a0af13074db7b689a71bd9ae94f8745a1":[3,0,0,0,1,1,0,1,0,2,65], +"core_8h.html#a0b05bc8192a59d32f57c7644ef0d610b":[3,0,0,0,1,1,0,1,0,2,76], +"core_8h.html#a0ea486bdd96af45e228fa60a3ca90c6e":[3,0,0,0,1,1,0,1,0,2,101], +"core_8h.html#a114b82825ab2dee13e1914fddb26dd87":[3,0,0,0,1,1,0,1,0,2,111], +"core_8h.html#a12e2ca23ef7e44381012322943cd45e4":[3,0,0,0,1,1,0,1,0,2,108], +"core_8h.html#a1a322107307b020b6eac933958da94f6":[3,0,0,0,1,1,0,1,0,2,77], +"core_8h.html#a1a9971c629baa5e058f4a13dfa6e7f4b":[3,0,0,0,1,1,0,1,0,2,157], +"core_8h.html#a1bee81a83919db01b3cc9d95981d3311":[3,0,0,0,1,1,0,1,0,2,131], +"core_8h.html#a1e3ffe834c427bc295b6880efcd17976":[3,0,0,0,1,1,0,1,0,2,62], +"core_8h.html#a1e8f98191fb8cde7f6fa0b768dccdab2":[3,0,0,0,1,1,0,1,0,2,97], +"core_8h.html#a1fcfd29b295417c3eb7395c4df6ea1f9":[3,0,0,0,1,1,0,1,0,2,148], +"core_8h.html#a253206334a77520a94a72af63516dabd":[3,0,0,0,1,1,0,1,0,2,100], +"core_8h.html#a25b3bfdbfda4389ce170995445fbb3bd":[3,0,0,0,1,1,0,1,0,2,103], +"core_8h.html#a25c22ca313078429a88938f673059ae8":[3,0,0,0,1,1,0,1,0,2,74], +"core_8h.html#a29e4c9965f74e7f2bb6f75d7153468b6":[3,0,0,0,1,1,0,1,0,2,145], +"core_8h.html#a2ae33062c35ef4ccc25efa805d35fdae":[3,0,0,0,1,1,0,1,0,2,154], +"core_8h.html#a2f833eb53fcc22e4b5a7bd8cb99f0232":[3,0,0,0,1,1,0,1,0,2,139], +"core_8h.html#a2fa996843b6bac7a9a298172eede8d39":[3,0,0,0,1,1,0,1,0,2,160], +"core_8h.html#a30260f394fa5dca5ec3c6db9a0acb02e":[3,0,0,0,1,1,0,1,0,2,49], +"core_8h.html#a31503adb2a84c0005790ee748fb41579a7d2448b2825c27c48270a23cf67055d9":[3,0,0,0,1,1,0,1,0,2,91], +"core_8h.html#a31e1d7b172b530be8c4ab5d7bb7c921d":[3,0,0,0,1,1,0,1,0,2,79], +"core_8h.html#a3301ccbf6a0ab1b233242041a835a54a":[3,0,0,0,1,1,0,1,0,2,83], +"core_8h.html#a33c15cec4035f1a3dc6fe5d4ae05c746":[3,0,0,0,1,1,0,1,0,2,73], +"core_8h.html#a344b631dd2a44d6240a5bf881fa384e5":[3,0,0,0,1,1,0,1,0,2,117], +"core_8h.html#a363cb0623e6975ff2b357a52a03e4728":[3,0,0,0,1,1,0,1,0,2,67], +"core_8h.html#a3771b53380243f3c36d061438c0596b3":[3,0,0,0,1,1,0,1,0,2,130], +"core_8h.html#a37de00647fc1e0345f485313cdd522f7":[3,0,0,0,1,1,0,1,0,2,89], +"core_8h.html#a3a6e943d8c70bf3cc543abaaec5bfc46":[3,0,0,0,1,1,0,1,0,2,135], +"core_8h.html#a3ef982cd96cf71b5fa7c37269012dafd":[3,0,0,0,1,1,0,1,0,2,93], +"core_8h.html#a3f6a04fdf140370cbd2b83d8adae100f":[3,0,0,0,1,1,0,1,0,2,144], +"core_8h.html#a4558083081ed076bb18d5e216af90c86":[3,0,0,0,1,1,0,1,0,2,155], +"core_8h.html#a49a095fdcf7a195744579493e8b93e0b":[3,0,0,0,1,1,0,1,0,2,136], +"core_8h.html#a4b4263d060da175d7113962ebfd37819":[3,0,0,0,1,1,0,1,0,2,149], +"core_8h.html#a4f4a486379e85b8d88c73eff6197b768":[3,0,0,0,1,1,0,1,0,2,123], +"core_8h.html#a4f5db4f97e31a127b1236d1ff412bb0c":[3,0,0,0,1,1,0,1,0,2,58], +"core_8h.html#a515a4ead7f137e2c96a61e2aa87ae862":[3,0,0,0,1,1,0,1,0,2,54], +"core_8h.html#a55d7b78b0300ddda018f77208e80f3e9":[3,0,0,0,1,1,0,1,0,2,59], +"core_8h.html#a5b47584a9e90ebd6460675a6c1d6b238":[3,0,0,0,1,1,0,1,0,2,146], +"core_8h.html#a5d3b416a99857b69e3b7de8e88c71ff3":[3,0,0,0,1,1,0,1,0,2,56], +"core_8h.html#a6522e43666855e8166b0e1097d115d83":[3,0,0,0,1,1,0,1,0,2,122], +"core_8h.html#a65490b89e8bd22fd0b8ae4491643d60c":[3,0,0,0,1,1,0,1,0,2,75], +"core_8h.html#a668900c42744d50032df52df341be2f9":[3,0,0,0,1,1,0,1,0,2,86], +"core_8h.html#a66e6c630864ba13be3eae6aed4b9a2ba":[3,0,0,0,1,1,0,1,0,2,118], +"core_8h.html#a69201cb276383873487bf68b4ef8b4cd":[3,0,0,0,1,1,0,1,0,2,50], +"core_8h.html#a6c122dc0a60ed6357913edb855c51d41":[3,0,0,0,1,1,0,1,0,2,102], +"core_8h.html#a700149626e8a27dc80022c52e02fe484":[3,0,0,0,1,1,0,1,0,2,80], +"core_8h.html#a739a7ff96b6dfd65a4de8fe003f5b233":[3,0,0,0,1,1,0,1,0,2,72], +"core_8h.html#a749169f277bb21ccf12b1c665e68e88a":[3,0,0,0,1,1,0,1,0,2,61], +"core_8h.html#a750d1276ba35fb73b8f2998389a5f8c6":[3,0,0,0,1,1,0,1,0,2,64], +"core_8h.html#a7b75e2a1b428d2a4bdf085e65821c6ee":[3,0,0,0,1,1,0,1,0,2,112], +"core_8h.html#a7cc44a51931bcec486a5eaa08598082b":[3,0,0,0,1,1,0,1,0,2,71], +"core_8h.html#a7f29400879301aadb96b80568b8fecc7":[3,0,0,0,1,1,0,1,0,2,141], +"core_8h.html#a809ce36bdf78b55c536fbca340bfec9c":[3,0,0,0,1,1,0,1,0,2,53], +"core_8h.html#a80b4b91c27453ab70741b162fb1b9ee9":[3,0,0,0,1,1,0,1,0,2,107], +"core_8h.html#a812744db908d21fe09cf9ba844d8b1ce":[3,0,0,0,1,1,0,1,0,2,113], +"core_8h.html#a829ae121113d346b82fd668a780a671c":[3,0,0,0,1,1,0,1,0,2,95], +"core_8h.html#a842c0c5e03126468303bbd3b9a96a945":[3,0,0,0,1,1,0,1,0,2,133], +"core_8h.html#a8561b3876ffaedaf2b94f434da083c34":[3,0,0,0,1,1,0,1,0,2,151], +"core_8h.html#a887c191adf8cfaf06ed40b5c4d487343":[3,0,0,0,1,1,0,1,0,2,48], +"core_8h.html#a8a71644ac0a6fba4454f549c1f3f0b2f":[3,0,0,0,1,1,0,1,0,2,81], +"core_8h.html#a8accad256e8cb70d1398a568742a60f0":[3,0,0,0,1,1,0,1,0,2,99], +"core_8h.html#a8e7a33185c7fc32dd026773a8ece00b8":[3,0,0,0,1,1,0,1,0,2,60], +"core_8h.html#a8fcea7a9901c65a40f9ed5d76c3b53f9":[3,0,0,0,1,1,0,1,0,2,124], +"core_8h.html#a9310b701f90ea156eb6abd7aa4f199cb":[3,0,0,0,1,1,0,1,0,2,105], +"core_8h.html#a988bfc81f48221fec1910c217bc0dfcc":[3,0,0,0,1,1,0,1,0,2,94], +"core_8h.html#a99faaaf62db5189f2e36070a04fc6981":[3,0,0,0,1,1,0,1,0,2,109], +"core_8h.html#a9a4960b70582ed2620911a0b75dce0b5":[3,0,0,0,1,1,0,1,0,2,46], +"core_8h.html#a9cf9954148cb1b82eb6d8cf69fef9f0e":[3,0,0,0,1,1,0,1,0,2,120], +"core_8h.html#aa0d84dd629a961d4ba20bad142b6fa75":[3,0,0,0,1,1,0,1,0,2,137], +"core_8h.html#aa52ab0ebff57aaa2e4cd5ba43ac4d95d":[3,0,0,0,1,1,0,1,0,2,82], +"core_8h.html#aa673164d8ab4b4bedc66e0dfa6faf952":[3,0,0,0,1,1,0,1,0,2,127], +"core_8h.html#aab9ed525c003632b5b9c5314f22411af":[3,0,0,0,1,1,0,1,0,2,138], +"core_8h.html#aacbe9f39925b33b031be5cffc988c95e":[3,0,0,0,1,1,0,1,0,2,126], +"core_8h.html#aae8c11e3b42fe7cd379cf3d5e076ce8c":[3,0,0,0,1,1,0,1,0,2,129], +"core_8h.html#ab190353863f3a4660bed7bea829a6822":[3,0,0,0,1,1,0,1,0,2,121], +"core_8h.html#ab264eb8eb9841f0cee5af4284196a4cc":[3,0,0,0,1,1,0,1,0,2,147], +"core_8h.html#ab366b11763385ee5096ec32544a9ac63":[3,0,0,0,1,1,0,1,0,2,134], +"core_8h.html#ab49c070fd72bc190afe897235a6391b7":[3,0,0,0,1,1,0,1,0,2,116], +"core_8h.html#ab4a71234cf33d295c8776c1ecfd04d80":[3,0,0,0,1,1,0,1,0,2,114], +"core_8h.html#ab6661d948e3c2d86d501b5ab48236a68":[3,0,0,0,1,1,0,1,0,2,159], +"core_8h.html#abef3b695050c4132b4fc4d7f256b9580":[3,0,0,0,1,1,0,1,0,2,150], +"core_8h.html#ac0cedf42ad81436f35151f2173458d61":[3,0,0,0,1,1,0,1,0,2,153], +"core_8h.html#ac5e450936052d8a4292d6e609e73e2bd":[3,0,0,0,1,1,0,1,0,2,57], +"core_8h.html#ac6a1568f2fc1baa1c6b9e139c038a254":[3,0,0,0,1,1,0,1,0,2,119], +"core_8h.html#ac78801118381630acf4a9e778e67f6ee":[3,0,0,0,1,1,0,1,0,2,104], +"core_8h.html#acd0741048e2d4d76c3a549c5a6d9d857":[3,0,0,0,1,1,0,1,0,2,96], +"core_8h.html#acedd512a780532f842377b6f166a4bab":[3,0,0,0,1,1,0,1,0,2,156], +"core_8h.html#ad0cd7007be07fae4a096c1a646c50c30":[3,0,0,0,1,1,0,1,0,2,66], +"core_8h.html#ad2f9ebed8b13beff9cd9bd1a9af7d0c6":[3,0,0,0,1,1,0,1,0,2,88], +"core_8h.html#ad37aba96f0e4cb12a9decef95122e4bf":[3,0,0,0,1,1,0,1,0,2,85], +"core_8h.html#ad4b210aa357f1518a14acd748f576a27":[3,0,0,0,1,1,0,1,0,2,84], +"core_8h.html#ad553d3adb090e46cde2de286a928a8c9a9a0a8f1a6f42d5a0e96eadee1aaf4e3b":[3,0,0,0,1,1,0,1,0,2,90], +"core_8h.html#ad61aad8232950c65bdff8b83abe92929":[3,0,0,0,1,1,0,1,0,2,142], +"core_8h.html#ad61b07c8fe83db5520e226ab23edf892":[3,0,0,0,1,1,0,1,0,2,140], +"core_8h.html#ad7545fdef9670aa6f3a042af78b14554":[3,0,0,0,1,1,0,1,0,2,143], +"core_8h.html#ae0d2fbdf031547a949fc7e1c0b3c97f1":[3,0,0,0,1,1,0,1,0,2,55], +"core_8h.html#ae63557fe9ccf973c29dc6dd122fa4ae0":[3,0,0,0,1,1,0,1,0,2,78], +"core_8h.html#ae636a21b85a25f216949a2987bfd9d89":[3,0,0,0,1,1,0,1,0,2,110], +"core_8h.html#ae8ef7d855b651c42243a7c6b109cd94b":[3,0,0,0,1,1,0,1,0,2,98], +"core_8h.html#aeb8392ed1d3db2b0d61256627fd0ee45":[3,0,0,0,1,1,0,1,0,2,106], +"core_8h.html#aef128913e8400683b1cbd1a3a2e11df3":[3,0,0,0,1,1,0,1,0,2,68], +"core_8h.html#af1664d9b06d9e4b78a8db3ea1fa99d68":[3,0,0,0,1,1,0,1,0,2,128], +"core_8h.html#af4388801466a5994a363d6005616371a":[3,0,0,0,1,1,0,1,0,2,52], +"core_8h.html#af68c2d6c2ea535e9fe1dde8a97016019":[3,0,0,0,1,1,0,1,0,2,115], +"core_8h.html#af7f827e50dd7667484c279ac1d38f30b":[3,0,0,0,1,1,0,1,0,2,69], +"core_8h.html#af8b98afef956b03a99bc61d088705f13":[3,0,0,0,1,1,0,1,0,2,92], +"core_8h.html#af8b98afef956b03a99bc61d088705f13a1956769baf47b0a96768474f1cc5135c":[3,0,0,0,1,1,0,1,0,2,92,11], +"core_8h.html#af8b98afef956b03a99bc61d088705f13a23b2dd85fe035d41a5e93822e346d277":[3,0,0,0,1,1,0,1,0,2,92,5], +"core_8h.html#af8b98afef956b03a99bc61d088705f13a28edcc9fc66b5c65a8c9b89975164568":[3,0,0,0,1,1,0,1,0,2,92,13], +"core_8h.html#af8b98afef956b03a99bc61d088705f13a2bf13ea13c39343d5656a3804f53508a":[3,0,0,0,1,1,0,1,0,2,92,15], +"core_8h.html#af8b98afef956b03a99bc61d088705f13a355d7dd1bc164c3b845d96bb5ba1a5c0":[3,0,0,0,1,1,0,1,0,2,92,14], +"core_8h.html#af8b98afef956b03a99bc61d088705f13a3db2e8053c230033779933d7836846c2":[3,0,0,0,1,1,0,1,0,2,92,8], +"core_8h.html#af8b98afef956b03a99bc61d088705f13a4291d26029047911bc456839856ea64d":[3,0,0,0,1,1,0,1,0,2,92,7], +"core_8h.html#af8b98afef956b03a99bc61d088705f13a73df9a3576f5a9596c4651fddef7dfac":[3,0,0,0,1,1,0,1,0,2,92,12], +"core_8h.html#af8b98afef956b03a99bc61d088705f13a782542b1b5c4dd8c67d2d015aeb79ee9":[3,0,0,0,1,1,0,1,0,2,92,0], +"core_8h.html#af8b98afef956b03a99bc61d088705f13a9c4e587796c3f3ad1777bd960a717e39":[3,0,0,0,1,1,0,1,0,2,92,9], +"core_8h.html#af8b98afef956b03a99bc61d088705f13a9c9273f21d9f37b64f17801628d44633":[3,0,0,0,1,1,0,1,0,2,92,3], +"core_8h.html#af8b98afef956b03a99bc61d088705f13aa7a6f8b82db485f179833d300de9d139":[3,0,0,0,1,1,0,1,0,2,92,1], +"core_8h.html#af8b98afef956b03a99bc61d088705f13ae7a9e0deca92ad9278f3def34dafd2c8":[3,0,0,0,1,1,0,1,0,2,92,4], +"core_8h.html#af8b98afef956b03a99bc61d088705f13ae9e4c238a7992d284d52befd618886ef":[3,0,0,0,1,1,0,1,0,2,92,10], +"core_8h.html#af8b98afef956b03a99bc61d088705f13aecccd88040ba51af7e74784567384260":[3,0,0,0,1,1,0,1,0,2,92,6], +"core_8h.html#af8b98afef956b03a99bc61d088705f13aee2e9fd562a7d50e7e47e5f82188d4d5":[3,0,0,0,1,1,0,1,0,2,92,2], +"core_8h.html#afa144e698f8df527d6e51688eb9abbd1":[3,0,0,0,1,1,0,1,0,2,63], +"core_8h.html#afbb941ac362fc08798ab3f9b1303f88f":[3,0,0,0,1,1,0,1,0,2,152], +"core_8h.html#afd48e0f440edf24c821e4ff7554b9730":[3,0,0,0,1,1,0,1,0,2,125], +"core_8h.html#affa5d05127df37768b43a062b2859d0f":[3,0,0,0,1,1,0,1,0,2,158], +"core_8h_source.html":[3,0,0,0,1,1,0,1,0,2], +"daily__file__sink_8h.html":[3,0,0,0,1,1,0,2,4], +"daily__file__sink_8h.html#a1f1c8468d4251073ce96194a5db1fb9e":[3,0,0,0,1,1,0,2,4,3], +"daily__file__sink_8h.html#a61124c3792c83b90aad230770f627525":[3,0,0,0,1,1,0,2,4,2], +"daily__file__sink_8h.html#a887beb44c55ef32f4bc62fa16451c77e":[3,0,0,0,1,1,0,2,4,5], +"daily__file__sink_8h.html#aeab720351e32788bc6cdf8ada42b0f1f":[3,0,0,0,1,1,0,2,4,4], +"daily__file__sink_8h_source.html":[3,0,0,0,1,1,0,2,4], +"dir_0c3a0641627b76fd80f03d211e44dc98.html":[3,0,0,0,1,1,0,1], +"dir_0edbe3cf21aa1980d331aee71a413a85.html":[3,0,0,0,1,0], +"dir_148a221396087d65c55fa0ea541856de.html":[3,0,0,0,1,1,0,1,0], +"dir_239a77e39c0fcb2f1e08881bb007ba07.html":[3,0,0,0,0], +"dir_248a80cf6760c7a1ab13394a1c16f7b2.html":[3,0,0,0,1,1,0], +"dir_5f1136fe404e0a548faf586fae339a6a.html":[3,0,0], +"dir_7bb3e31efd6b819bbb0704cee4a66d41.html":[3,0,0,0,1], +"dir_7d093cd833acfccb787639923feedd9d.html":[3,0,0,0,1,1,0,0], +"dir_92a4bcc0ca1142b221c58a95a60bf3b6.html":[3,0,0,0,1,1,0,2], +"dir_cf58c3a45797022668a1e269b5315a33.html":[3,0,0,0,1,1], +"dir_fef6b6f1028f30fedf17225feaaa02fe.html":[3,0,0,0], +"dist__sink_8h.html":[3,0,0,0,1,1,0,2,5], +"dist__sink_8h.html#a08b36045f24c178daafc48778df0ce5a":[3,0,0,0,1,1,0,2,5,2], +"dist__sink_8h.html#a1ec468592fd56492075c61a4917acd12":[3,0,0,0,1,1,0,2,5,1], +"dist__sink_8h_source.html":[3,0,0,0,1,1,0,2,5], +"file__helper_8h.html":[3,0,0,0,1,1,0,0,3], +"file__helper_8h_source.html":[3,0,0,0,1,1,0,0,3], +"files.html":[3,0], +"fmt_8h.html":[3,0,0,0,1,1,0,1,2], +"fmt_8h.html#a27b3249db8d77bd236109bda307bc263":[3,0,0,0,1,1,0,1,2,0], +"fmt_8h.html#a66278651d81592645cef28ca33a6ab92":[3,0,0,0,1,1,0,1,2,1], +"fmt_8h_source.html":[3,0,0,0,1,1,0,1,2], +"fmt__helper_8h.html":[3,0,0,0,1,1,0,0,4], +"fmt__helper_8h.html#a0d2621043fa718e54ffcaa2e9812dfa4":[3,0,0,0,1,1,0,0,4,1], +"fmt__helper_8h.html#a1cd64e7ba833d726c77344aa9fb85e6a":[3,0,0,0,1,1,0,0,4,0], +"fmt__helper_8h.html#a27585b20ce58cd861f4e37be0057cc41":[3,0,0,0,1,1,0,0,4,9], +"fmt__helper_8h.html#a569553750f9f2fa7b16c94a56a398de3":[3,0,0,0,1,1,0,0,4,8], +"fmt__helper_8h.html#a603f4d0d8853a61610a0042d5d62fe94":[3,0,0,0,1,1,0,0,4,2], +"fmt__helper_8h.html#a976eeb3c4a42ccfb05437aa9a0d4d9f7":[3,0,0,0,1,1,0,0,4,3], +"fmt__helper_8h.html#aa2b4191cb8c40474fb61787ad67face5":[3,0,0,0,1,1,0,0,4,10], +"fmt__helper_8h.html#aad467c706932b56929dae091b39c23f3":[3,0,0,0,1,1,0,0,4,7], +"fmt__helper_8h.html#ae8d7b70c5b54338c0903cf494b06404a":[3,0,0,0,1,1,0,0,4,4], +"fmt__helper_8h.html#aefae60b1ebdae78bc8f11c26b36b2cd6":[3,0,0,0,1,1,0,0,4,6], +"fmt__helper_8h.html#af739ecce102d47ff08a0f344a96897d9":[3,0,0,0,1,1,0,0,4,5], +"fmt__helper_8h_source.html":[3,0,0,0,1,1,0,0,4], +"format-inl_8h.html":[3,0,0,0,1,1,0,1,0,3], +"format-inl_8h.html#a171b42c0035379bd3c3983f573ee09db":[3,0,0,0,1,1,0,1,0,3,15], +"format-inl_8h.html#a1a9971c629baa5e058f4a13dfa6e7f4b":[3,0,0,0,1,1,0,1,0,3,25], +"format-inl_8h.html#a1fa02ff736934db730c7545b4c840a4c":[3,0,0,0,1,1,0,1,0,3,17], +"format-inl_8h.html#a270efa9d1d49796e04a96f764a68c8b5":[3,0,0,0,1,1,0,1,0,3,13], +"format-inl_8h.html#a2fa996843b6bac7a9a298172eede8d39":[3,0,0,0,1,1,0,1,0,3,28], +"format-inl_8h.html#a35d4bc2bf717ac7731de7713c54175bb":[3,0,0,0,1,1,0,1,0,3,6], +"format-inl_8h.html#a37f320718a8fbb4cf326d075f6332e93":[3,0,0,0,1,1,0,1,0,3,21], +"format-inl_8h.html#a3bbfb7ce6b764966d8cf5d018589375e":[3,0,0,0,1,1,0,1,0,3,23], +"format-inl_8h.html#a4aa79926398ee27fe7d6db8b0dd54edf":[3,0,0,0,1,1,0,1,0,3,10], +"format-inl_8h.html#a5d09560672b4a60a1414fa7321b9ea66":[3,0,0,0,1,1,0,1,0,3,16], +"format-inl_8h.html#a63add7333da71960d33855aa1489c2ee":[3,0,0,0,1,1,0,1,0,3,19], +"format-inl_8h.html#a6a266d9a7b8249c93b139f1fa499a45d":[3,0,0,0,1,1,0,1,0,3,12], +"format-inl_8h.html#a7b59f9b149f610d3edd05ed99536253c":[3,0,0,0,1,1,0,1,0,3,9], +"format-inl_8h.html#a7f211f565c9879fafad806b788dde60d":[3,0,0,0,1,1,0,1,0,3,11], +"format-inl_8h.html#a80875403133fef6385e50480459b1136":[3,0,0,0,1,1,0,1,0,3,24], +"format-inl_8h.html#a80e439a6cba95b74e9324248a41b1005":[3,0,0,0,1,1,0,1,0,3,29], +"format-inl_8h.html#a8307cb500850a7c5033cf64702e15990":[3,0,0,0,1,1,0,1,0,3,22], +"format-inl_8h.html#a96be9ab86d7703a1aace4eda80007e69":[3,0,0,0,1,1,0,1,0,3,18], +"format-inl_8h.html#a9a9bb3caa94066b3adc175bb24cb1783":[3,0,0,0,1,1,0,1,0,3,8], +"format-inl_8h.html#aa8305888233bc94e346b9c162f6a8f18":[3,0,0,0,1,1,0,1,0,3,14], +"format-inl_8h.html#ab6661d948e3c2d86d501b5ab48236a68":[3,0,0,0,1,1,0,1,0,3,27], +"format-inl_8h.html#ab8efe0100a6d7cc74729f5bf7537799c":[3,0,0,0,1,1,0,1,0,3,5], +"format-inl_8h.html#aede03e1a36d834c65a48c9349a085fc8":[3,0,0,0,1,1,0,1,0,3,20], +"format-inl_8h.html#aeff75c93a29bc942ca36b31a4b634fe9":[3,0,0,0,1,1,0,1,0,3,7], +"format-inl_8h.html#affa5d05127df37768b43a062b2859d0f":[3,0,0,0,1,1,0,1,0,3,26], +"format-inl_8h_source.html":[3,0,0,0,1,1,0,1,0,3], +"format_8h.html":[3,0,0,0,1,1,0,1,0,4], +"format_8h.html#a01817fdc23bf5758e9466f02e29c0bc8":[3,0,0,0,1,1,0,1,0,4,154], +"format_8h.html#a02c8898388e0ae59aab58be14fcd4e05":[3,0,0,0,1,1,0,1,0,4,81], +"format_8h.html#a058e2c3eea88d232a1056a0bc6487e37":[3,0,0,0,1,1,0,1,0,4,79], +"format_8h.html#a061a90c1c2008acd7b0161cde41c1a11":[3,0,0,0,1,1,0,1,0,4,83], +"format_8h.html#a07522969fe4d2aefef29e120aee66257":[3,0,0,0,1,1,0,1,0,4,174], +"format_8h.html#a09119ad072f708d17b88704fa898aff0":[3,0,0,0,1,1,0,1,0,4,85], +"format_8h.html#a0a4fd70e18eba9d0da494fcb4f0fc32c":[3,0,0,0,1,1,0,1,0,4,118], +"format_8h.html#a0da085ecacb88b605244ce76332bd8d8":[3,0,0,0,1,1,0,1,0,4,105], +"format_8h.html#a0da085ecacb88b605244ce76332bd8d8a32f6d887598434ed14e7579a0b15e1be":[3,0,0,0,1,1,0,1,0,4,105,0], +"format_8h.html#a0da085ecacb88b605244ce76332bd8d8a6cf58d6a173204a962db3dae30a01d8c":[3,0,0,0,1,1,0,1,0,4,105,3], +"format_8h.html#a0da085ecacb88b605244ce76332bd8d8a824a96ce4113d35438ba2c14845de1c3":[3,0,0,0,1,1,0,1,0,4,105,1], +"format_8h.html#a0da085ecacb88b605244ce76332bd8d8aa3ce3cd4b41a0dfcb8376a8072a75cda":[3,0,0,0,1,1,0,1,0,4,105,4], +"format_8h.html#a0da085ecacb88b605244ce76332bd8d8ab47b991779038b4bc5f4558423a749b1":[3,0,0,0,1,1,0,1,0,4,105,2], +"format_8h.html#a0fb9344a00e79ad8826591da20548963":[3,0,0,0,1,1,0,1,0,4,153], +"format_8h.html#a0fd504293f21ab24279d713171185c27":[3,0,0,0,1,1,0,1,0,4,99], +"format_8h.html#a113eb41a02e482540b90183e4ad7ca27":[3,0,0,0,1,1,0,1,0,4,159], +"format_8h.html#a129e2aec5d517b72a1f6173ee17f52f3":[3,0,0,0,1,1,0,1,0,4,144], +"format_8h.html#a160d3314a3cdbd49e187b75d6ce2a652":[3,0,0,0,1,1,0,1,0,4,82], +"format_8h.html#a19f551b1c3abec2c3d40d85ab3ccee03":[3,0,0,0,1,1,0,1,0,4,163], +"format_8h.html#a1b8c0cdffe57c5fe9dc629babe471316":[3,0,0,0,1,1,0,1,0,4,121], +"format_8h.html#a1e8f98191fb8cde7f6fa0b768dccdab2":[3,0,0,0,1,1,0,1,0,4,113], +"format_8h.html#a1f190af8f5561392e03519562384d3b8":[3,0,0,0,1,1,0,1,0,4,123], +"format_8h.html#a22384733f113ad46c4b287aee4d19719":[3,0,0,0,1,1,0,1,0,4,169], +"format_8h.html#a249ca42d663b664f5b0a78850325d02c":[3,0,0,0,1,1,0,1,0,4,147], +"format_8h.html#a25c2cdf9765d15576333ed86298422c5":[3,0,0,0,1,1,0,1,0,4,89], +"format_8h.html#a270efa9d1d49796e04a96f764a68c8b5":[3,0,0,0,1,1,0,1,0,4,138], +"format_8h.html#a2afc98455558e211af15ed1ad8c12bfaa1d9e9ff365a9e37fdcec9b729b9ab046":[3,0,0,0,1,1,0,1,0,4,104], +"format_8h.html#a2afc98455558e211af15ed1ad8c12bfaa972e2caa64b4634539a0e441e76f8148":[3,0,0,0,1,1,0,1,0,4,102], +"format_8h.html#a2afc98455558e211af15ed1ad8c12bfaaaf7cf0b0f8341fafc6ab56b5c5c77f03":[3,0,0,0,1,1,0,1,0,4,103], +"format_8h.html#a2afc98455558e211af15ed1ad8c12bfaadd34df58da973a9740e39d7b83e7b890":[3,0,0,0,1,1,0,1,0,4,101], +"format_8h.html#a2c52eadabf215a00fdc216702dbf0df6":[3,0,0,0,1,1,0,1,0,4,156], +"format_8h.html#a32fc9971391c76e82f000d301ebe6a4c":[3,0,0,0,1,1,0,1,0,4,117], +"format_8h.html#a340304e36817771dec9551579579cb71":[3,0,0,0,1,1,0,1,0,4,141], +"format_8h.html#a37f320718a8fbb4cf326d075f6332e93":[3,0,0,0,1,1,0,1,0,4,168], +"format_8h.html#a3ae8cc1f3fba8eb2083d6a34aa73b5e1":[3,0,0,0,1,1,0,1,0,4,88], +"format_8h.html#a3e0d5b65fb0f03b9d75a8210ff3ffcd1":[3,0,0,0,1,1,0,1,0,4,170], +"format_8h.html#a47258eefd01b3b6278d8057e5c89616a":[3,0,0,0,1,1,0,1,0,4,84], +"format_8h.html#a4750c83c90c5d48c7af7389dff6c0ba8":[3,0,0,0,1,1,0,1,0,4,107], +"format_8h.html#a48d02275b9e72a672b92ea3e7acfd656":[3,0,0,0,1,1,0,1,0,4,139], +"format_8h.html#a4df1425f61a6677296a1d61cb29dd2cc":[3,0,0,0,1,1,0,1,0,4,158], +"format_8h.html#a53dd0b9003b32d9c4c07d008b8a1bebf":[3,0,0,0,1,1,0,1,0,4,152], +"format_8h.html#a58d822138c8882afb5559c4b1d7729cc":[3,0,0,0,1,1,0,1,0,4,146], +"format_8h.html#a5b9fc2504a981744ae35cf292930b4a6":[3,0,0,0,1,1,0,1,0,4,126], +"format_8h.html#a5f7253ee05af521286206b1ab24ad368":[3,0,0,0,1,1,0,1,0,4,166], +"format_8h.html#a66278651d81592645cef28ca33a6ab92":[3,0,0,0,1,1,0,1,0,4,92], +"format_8h.html#a6c2c4c3c6a5dc4e3559ed105c44c4d9e":[3,0,0,0,1,1,0,1,0,4,119], +"format_8h.html#a6d2eb5ad9f38abcc532e048b92070942":[3,0,0,0,1,1,0,1,0,4,124], +"format_8h.html#a701339e31b08c541a11ed944cc20b856":[3,0,0,0,1,1,0,1,0,4,78], +"format_8h.html#a7610f57d82d6ebfb0869d7583fe13264":[3,0,0,0,1,1,0,1,0,4,150], +"format_8h.html#a76566374391410329d8c41e612b24101":[3,0,0,0,1,1,0,1,0,4,149], +"format_8h.html#a7a7af692023580101e0f8028e1d0c653":[3,0,0,0,1,1,0,1,0,4,142], +"format_8h.html#a7ac857188cb657852d3dd2fcb223a331":[3,0,0,0,1,1,0,1,0,4,161], +"format_8h.html#a7b4b0ed85f1aff706d9c244031532b7d":[3,0,0,0,1,1,0,1,0,4,132], +"format_8h.html#a7b65c56bc50b45bf62b20546b5a9d306":[3,0,0,0,1,1,0,1,0,4,133] }; diff --git a/docs/navtreeindex6.js b/docs/navtreeindex6.js index e5b6828..c46f4ad 100644 --- a/docs/navtreeindex6.js +++ b/docs/navtreeindex6.js @@ -1,253 +1,253 @@ var NAVTREEINDEX6 = { -"format_8h.html#a7c29e7b4a54045f13bd664979804998d":[2,0,0,0,1,1,0,1,0,4,91], -"format_8h.html#a7c6be57189424e80f260e571b9804d68":[2,0,0,0,1,1,0,1,0,4,136], -"format_8h.html#a7f211f565c9879fafad806b788dde60d":[2,0,0,0,1,1,0,1,0,4,131], -"format_8h.html#a80875403133fef6385e50480459b1136":[2,0,0,0,1,1,0,1,0,4,171], -"format_8h.html#a83526f0a8d3c8e9cc85b24a7a00e8496":[2,0,0,0,1,1,0,1,0,4,115], -"format_8h.html#a853cf2a7d9e1efa6fc8a5622b62c1da9":[2,0,0,0,1,1,0,1,0,4,94], -"format_8h.html#a8634a26fe8408d673308c0fcdea0c6b2":[2,0,0,0,1,1,0,1,0,4,176], -"format_8h.html#a87104ff0bbd588f55bbbadf592227d75":[2,0,0,0,1,1,0,1,0,4,96], -"format_8h.html#a8766cc653a2cb47cefc94592e5125239":[2,0,0,0,1,1,0,1,0,4,108], -"format_8h.html#a876de4b97bc3e1f22ff5879b47db9093":[2,0,0,0,1,1,0,1,0,4,95], -"format_8h.html#a8d6d08e76d5ee6a3289c5e010e6db950":[2,0,0,0,1,1,0,1,0,4,116], -"format_8h.html#a8df5e9fe475de8e789a43b8a40d60541":[2,0,0,0,1,1,0,1,0,4,179], -"format_8h.html#a8f8fa329c4f6a82b5f4b07e2624b92f6":[2,0,0,0,1,1,0,1,0,4,148], -"format_8h.html#a8fac45c66b31da44ca3fc83ed6f7e4ab":[2,0,0,0,1,1,0,1,0,4,90], -"format_8h.html#a91182ac859ac969e4f719d61cad002e1":[2,0,0,0,1,1,0,1,0,4,162], -"format_8h.html#a98b8a6fbc7cd86c22d8e2cb0c700665e":[2,0,0,0,1,1,0,1,0,4,177], -"format_8h.html#a9eee3495bac20bffa3ab73cedf950d75":[2,0,0,0,1,1,0,1,0,4,165], -"format_8h.html#aa163dc10b3f54b87b9f71c768b08250f":[2,0,0,0,1,1,0,1,0,4,160], -"format_8h.html#aa1fa61dacd2056cf7bbc9010b6c3e9ff":[2,0,0,0,1,1,0,1,0,4,109], -"format_8h.html#aa579a1942a92c8b98d2759981faad596":[2,0,0,0,1,1,0,1,0,4,111], -"format_8h.html#aa59e73ee062ec382675c0e65d9123b5c":[2,0,0,0,1,1,0,1,0,4,167], -"format_8h.html#aa601e9520a59e9c38b71eba828ebd063":[2,0,0,0,1,1,0,1,0,4,145], -"format_8h.html#aa896aba6bd0796c1d93bd6f71556a9f5":[2,0,0,0,1,1,0,1,0,4,98], -"format_8h.html#aa9df55c2a1be07baac1ee84d206683f5":[2,0,0,0,1,1,0,1,0,4,106], -"format_8h.html#aaa8ec781ec26a204da9f38e66a8ede8f":[2,0,0,0,1,1,0,1,0,4,125], -"format_8h.html#aab6607dc16d02c9f81d025f93a15caa4":[2,0,0,0,1,1,0,1,0,4,175], -"format_8h.html#aaee1761c014bc6a5ca7be7fcb48f6a1e":[2,0,0,0,1,1,0,1,0,4,155], -"format_8h.html#ab9c093637a8328c1d798547a91ca1a5b":[2,0,0,0,1,1,0,1,0,4,114], -"format_8h.html#abb96e7271b2790a480399319747dd5b1":[2,0,0,0,1,1,0,1,0,4,137], -"format_8h.html#abc818826093af36c21cd5f464462ed35":[2,0,0,0,1,1,0,1,0,4,87], -"format_8h.html#ac584bbf50f1e0e44628a7a53c4ec9149":[2,0,0,0,1,1,0,1,0,4,157], -"format_8h.html#ac62a332ee64650f2ebe0e8095fa8e7c0":[2,0,0,0,1,1,0,1,0,4,93], -"format_8h.html#ac849a4087b1f888c968321696bf114ca":[2,0,0,0,1,1,0,1,0,4,178], -"format_8h.html#aca60c11758ae1d5b422178e883252bba":[2,0,0,0,1,1,0,1,0,4,120], -"format_8h.html#ad26cf75c1e4ab48a7d4d2254a44001f0":[2,0,0,0,1,1,0,1,0,4,140], -"format_8h.html#ad284b384d0648be5afed9658e6d17da0":[2,0,0,0,1,1,0,1,0,4,129], -"format_8h.html#ad376a5124e6d05579d3360db349aec39":[2,0,0,0,1,1,0,1,0,4,151], -"format_8h.html#ad9e2ed6d3b432a04c9622c34a2495304":[2,0,0,0,1,1,0,1,0,4,86], -"format_8h.html#adae39d916b44943f034ed1d8f832c7e1":[2,0,0,0,1,1,0,1,0,4,128], -"format_8h.html#adbcd0335b87494a6785e0416aced9b09":[2,0,0,0,1,1,0,1,0,4,122], -"format_8h.html#adc534aad72fd5f9db229cc9edf622771":[2,0,0,0,1,1,0,1,0,4,172], -"format_8h.html#ae3eb46c4e73a862893cc2f99a58938a4":[2,0,0,0,1,1,0,1,0,4,110], -"format_8h.html#ae7eb8fc665a67b192dc6437bc62ca354a0af8f7e3ddd1a426ef65b42502b4d3a0":[2,0,0,0,1,1,0,1,0,4,100], -"format_8h.html#aebdab4a99bb740c29b106ac79bf9f158":[2,0,0,0,1,1,0,1,0,4,130], -"format_8h.html#aecb6cdf1f4e13bd0173f16ecc5946df5":[2,0,0,0,1,1,0,1,0,4,134], -"format_8h.html#aed78230de71427c867d6d49cdf397681":[2,0,0,0,1,1,0,1,0,4,143], -"format_8h.html#aede03e1a36d834c65a48c9349a085fc8":[2,0,0,0,1,1,0,1,0,4,164], -"format_8h.html#aee0ff53560cd7c3f16500a4cdbf3655e":[2,0,0,0,1,1,0,1,0,4,112], -"format_8h.html#aee7e37f3db0fc1ce34674f6b82c1f407":[2,0,0,0,1,1,0,1,0,4,97], -"format_8h.html#af5eb4df647fec81a1398d10f2e27da49":[2,0,0,0,1,1,0,1,0,4,135], -"format_8h.html#af72d17ab37b4a11119c73b71200a7669":[2,0,0,0,1,1,0,1,0,4,127], -"format_8h.html#af7906102d07e0d93b609aef6c05fc27a":[2,0,0,0,1,1,0,1,0,4,173], -"format_8h.html#af87bd0133efd40a100a5d27980c75f99":[2,0,0,0,1,1,0,1,0,4,80], -"format_8h_source.html":[2,0,0,0,1,1,0,1,0,4], -"formatter_8h.html":[2,0,0,0,1,1,0,6], -"formatter_8h_source.html":[2,0,0,0,1,1,0,6], -"functions.html":[1,3,0], -"functions.html":[1,3,0,0], -"functions_a.html":[1,3,0,1], -"functions_b.html":[1,3,0,2], -"functions_c.html":[1,3,0,3], -"functions_d.html":[1,3,0,4], -"functions_e.html":[1,3,0,5], -"functions_enum.html":[1,3,4], -"functions_eval.html":[1,3,5], -"functions_f.html":[1,3,0,6], -"functions_func.html":[1,3,1], -"functions_func.html":[1,3,1,0], -"functions_func_b.html":[1,3,1,1], -"functions_func_c.html":[1,3,1,2], -"functions_func_d.html":[1,3,1,3], -"functions_func_e.html":[1,3,1,4], -"functions_func_f.html":[1,3,1,5], -"functions_func_g.html":[1,3,1,6], -"functions_func_h.html":[1,3,1,7], -"functions_func_i.html":[1,3,1,8], -"functions_func_l.html":[1,3,1,9], -"functions_func_m.html":[1,3,1,10], -"functions_func_n.html":[1,3,1,11], -"functions_func_o.html":[1,3,1,12], -"functions_func_p.html":[1,3,1,13], -"functions_func_r.html":[1,3,1,14], -"functions_func_s.html":[1,3,1,15], -"functions_func_t.html":[1,3,1,16], -"functions_func_u.html":[1,3,1,17], -"functions_func_v.html":[1,3,1,18], -"functions_func_w.html":[1,3,1,19], -"functions_func_x.html":[1,3,1,20], -"functions_func_y.html":[1,3,1,21], -"functions_func_z.html":[1,3,1,22], -"functions_func_~.html":[1,3,1,23], -"functions_g.html":[1,3,0,7], -"functions_h.html":[1,3,0,8], -"functions_i.html":[1,3,0,9], -"functions_k.html":[1,3,0,10], -"functions_l.html":[1,3,0,11], -"functions_m.html":[1,3,0,12], -"functions_n.html":[1,3,0,13], -"functions_o.html":[1,3,0,14], -"functions_p.html":[1,3,0,15], -"functions_q.html":[1,3,0,16], -"functions_r.html":[1,3,0,17], -"functions_rela.html":[1,3,6], -"functions_s.html":[1,3,0,18], -"functions_t.html":[1,3,0,19], -"functions_type.html":[1,3,3], -"functions_u.html":[1,3,0,20], -"functions_v.html":[1,3,0,21], -"functions_vars.html":[1,3,2,0], -"functions_vars.html":[1,3,2], -"functions_vars_b.html":[1,3,2,1], -"functions_vars_c.html":[1,3,2,2], -"functions_vars_d.html":[1,3,2,3], -"functions_vars_e.html":[1,3,2,4], -"functions_vars_f.html":[1,3,2,5], -"functions_vars_g.html":[1,3,2,6], -"functions_vars_h.html":[1,3,2,7], -"functions_vars_i.html":[1,3,2,8], -"functions_vars_k.html":[1,3,2,9], -"functions_vars_l.html":[1,3,2,10], -"functions_vars_m.html":[1,3,2,11], -"functions_vars_n.html":[1,3,2,12], -"functions_vars_o.html":[1,3,2,13], -"functions_vars_p.html":[1,3,2,14], -"functions_vars_r.html":[1,3,2,15], -"functions_vars_s.html":[1,3,2,16], -"functions_vars_t.html":[1,3,2,17], -"functions_vars_u.html":[1,3,2,18], -"functions_vars_v.html":[1,3,2,19], -"functions_vars_w.html":[1,3,2,20], -"functions_vars_x.html":[1,3,2,21], -"functions_vars_y.html":[1,3,2,22], -"functions_vars_z.html":[1,3,2,23], -"functions_w.html":[1,3,0,22], -"functions_x.html":[1,3,0,23], -"functions_y.html":[1,3,0,24], -"functions_z.html":[1,3,0,25], -"functions_~.html":[1,3,0,26], -"globals.html":[2,1,0], -"globals_defs.html":[2,1,5], -"globals_enum.html":[2,1,3], -"globals_eval.html":[2,1,4], -"globals_func.html":[2,1,1], -"globals_type.html":[2,1,2], -"hierarchy.html":[1,2], +"format_8h.html#a7c29e7b4a54045f13bd664979804998d":[3,0,0,0,1,1,0,1,0,4,91], +"format_8h.html#a7c6be57189424e80f260e571b9804d68":[3,0,0,0,1,1,0,1,0,4,136], +"format_8h.html#a7f211f565c9879fafad806b788dde60d":[3,0,0,0,1,1,0,1,0,4,131], +"format_8h.html#a80875403133fef6385e50480459b1136":[3,0,0,0,1,1,0,1,0,4,171], +"format_8h.html#a83526f0a8d3c8e9cc85b24a7a00e8496":[3,0,0,0,1,1,0,1,0,4,115], +"format_8h.html#a853cf2a7d9e1efa6fc8a5622b62c1da9":[3,0,0,0,1,1,0,1,0,4,94], +"format_8h.html#a8634a26fe8408d673308c0fcdea0c6b2":[3,0,0,0,1,1,0,1,0,4,176], +"format_8h.html#a87104ff0bbd588f55bbbadf592227d75":[3,0,0,0,1,1,0,1,0,4,96], +"format_8h.html#a8766cc653a2cb47cefc94592e5125239":[3,0,0,0,1,1,0,1,0,4,108], +"format_8h.html#a876de4b97bc3e1f22ff5879b47db9093":[3,0,0,0,1,1,0,1,0,4,95], +"format_8h.html#a8d6d08e76d5ee6a3289c5e010e6db950":[3,0,0,0,1,1,0,1,0,4,116], +"format_8h.html#a8df5e9fe475de8e789a43b8a40d60541":[3,0,0,0,1,1,0,1,0,4,179], +"format_8h.html#a8f8fa329c4f6a82b5f4b07e2624b92f6":[3,0,0,0,1,1,0,1,0,4,148], +"format_8h.html#a8fac45c66b31da44ca3fc83ed6f7e4ab":[3,0,0,0,1,1,0,1,0,4,90], +"format_8h.html#a91182ac859ac969e4f719d61cad002e1":[3,0,0,0,1,1,0,1,0,4,162], +"format_8h.html#a98b8a6fbc7cd86c22d8e2cb0c700665e":[3,0,0,0,1,1,0,1,0,4,177], +"format_8h.html#a9eee3495bac20bffa3ab73cedf950d75":[3,0,0,0,1,1,0,1,0,4,165], +"format_8h.html#aa163dc10b3f54b87b9f71c768b08250f":[3,0,0,0,1,1,0,1,0,4,160], +"format_8h.html#aa1fa61dacd2056cf7bbc9010b6c3e9ff":[3,0,0,0,1,1,0,1,0,4,109], +"format_8h.html#aa579a1942a92c8b98d2759981faad596":[3,0,0,0,1,1,0,1,0,4,111], +"format_8h.html#aa59e73ee062ec382675c0e65d9123b5c":[3,0,0,0,1,1,0,1,0,4,167], +"format_8h.html#aa601e9520a59e9c38b71eba828ebd063":[3,0,0,0,1,1,0,1,0,4,145], +"format_8h.html#aa896aba6bd0796c1d93bd6f71556a9f5":[3,0,0,0,1,1,0,1,0,4,98], +"format_8h.html#aa9df55c2a1be07baac1ee84d206683f5":[3,0,0,0,1,1,0,1,0,4,106], +"format_8h.html#aaa8ec781ec26a204da9f38e66a8ede8f":[3,0,0,0,1,1,0,1,0,4,125], +"format_8h.html#aab6607dc16d02c9f81d025f93a15caa4":[3,0,0,0,1,1,0,1,0,4,175], +"format_8h.html#aaee1761c014bc6a5ca7be7fcb48f6a1e":[3,0,0,0,1,1,0,1,0,4,155], +"format_8h.html#ab9c093637a8328c1d798547a91ca1a5b":[3,0,0,0,1,1,0,1,0,4,114], +"format_8h.html#abb96e7271b2790a480399319747dd5b1":[3,0,0,0,1,1,0,1,0,4,137], +"format_8h.html#abc818826093af36c21cd5f464462ed35":[3,0,0,0,1,1,0,1,0,4,87], +"format_8h.html#ac584bbf50f1e0e44628a7a53c4ec9149":[3,0,0,0,1,1,0,1,0,4,157], +"format_8h.html#ac62a332ee64650f2ebe0e8095fa8e7c0":[3,0,0,0,1,1,0,1,0,4,93], +"format_8h.html#ac849a4087b1f888c968321696bf114ca":[3,0,0,0,1,1,0,1,0,4,178], +"format_8h.html#aca60c11758ae1d5b422178e883252bba":[3,0,0,0,1,1,0,1,0,4,120], +"format_8h.html#ad26cf75c1e4ab48a7d4d2254a44001f0":[3,0,0,0,1,1,0,1,0,4,140], +"format_8h.html#ad284b384d0648be5afed9658e6d17da0":[3,0,0,0,1,1,0,1,0,4,129], +"format_8h.html#ad376a5124e6d05579d3360db349aec39":[3,0,0,0,1,1,0,1,0,4,151], +"format_8h.html#ad9e2ed6d3b432a04c9622c34a2495304":[3,0,0,0,1,1,0,1,0,4,86], +"format_8h.html#adae39d916b44943f034ed1d8f832c7e1":[3,0,0,0,1,1,0,1,0,4,128], +"format_8h.html#adbcd0335b87494a6785e0416aced9b09":[3,0,0,0,1,1,0,1,0,4,122], +"format_8h.html#adc534aad72fd5f9db229cc9edf622771":[3,0,0,0,1,1,0,1,0,4,172], +"format_8h.html#ae3eb46c4e73a862893cc2f99a58938a4":[3,0,0,0,1,1,0,1,0,4,110], +"format_8h.html#ae7eb8fc665a67b192dc6437bc62ca354a0af8f7e3ddd1a426ef65b42502b4d3a0":[3,0,0,0,1,1,0,1,0,4,100], +"format_8h.html#aebdab4a99bb740c29b106ac79bf9f158":[3,0,0,0,1,1,0,1,0,4,130], +"format_8h.html#aecb6cdf1f4e13bd0173f16ecc5946df5":[3,0,0,0,1,1,0,1,0,4,134], +"format_8h.html#aed78230de71427c867d6d49cdf397681":[3,0,0,0,1,1,0,1,0,4,143], +"format_8h.html#aede03e1a36d834c65a48c9349a085fc8":[3,0,0,0,1,1,0,1,0,4,164], +"format_8h.html#aee0ff53560cd7c3f16500a4cdbf3655e":[3,0,0,0,1,1,0,1,0,4,112], +"format_8h.html#aee7e37f3db0fc1ce34674f6b82c1f407":[3,0,0,0,1,1,0,1,0,4,97], +"format_8h.html#af5eb4df647fec81a1398d10f2e27da49":[3,0,0,0,1,1,0,1,0,4,135], +"format_8h.html#af72d17ab37b4a11119c73b71200a7669":[3,0,0,0,1,1,0,1,0,4,127], +"format_8h.html#af7906102d07e0d93b609aef6c05fc27a":[3,0,0,0,1,1,0,1,0,4,173], +"format_8h.html#af87bd0133efd40a100a5d27980c75f99":[3,0,0,0,1,1,0,1,0,4,80], +"format_8h_source.html":[3,0,0,0,1,1,0,1,0,4], +"formatter_8h.html":[3,0,0,0,1,1,0,6], +"formatter_8h_source.html":[3,0,0,0,1,1,0,6], +"functions.html":[2,3,0], +"functions.html":[2,3,0,0], +"functions_a.html":[2,3,0,1], +"functions_b.html":[2,3,0,2], +"functions_c.html":[2,3,0,3], +"functions_d.html":[2,3,0,4], +"functions_e.html":[2,3,0,5], +"functions_enum.html":[2,3,4], +"functions_eval.html":[2,3,5], +"functions_f.html":[2,3,0,6], +"functions_func.html":[2,3,1], +"functions_func.html":[2,3,1,0], +"functions_func_b.html":[2,3,1,1], +"functions_func_c.html":[2,3,1,2], +"functions_func_d.html":[2,3,1,3], +"functions_func_e.html":[2,3,1,4], +"functions_func_f.html":[2,3,1,5], +"functions_func_g.html":[2,3,1,6], +"functions_func_h.html":[2,3,1,7], +"functions_func_i.html":[2,3,1,8], +"functions_func_l.html":[2,3,1,9], +"functions_func_m.html":[2,3,1,10], +"functions_func_n.html":[2,3,1,11], +"functions_func_o.html":[2,3,1,12], +"functions_func_p.html":[2,3,1,13], +"functions_func_r.html":[2,3,1,14], +"functions_func_s.html":[2,3,1,15], +"functions_func_t.html":[2,3,1,16], +"functions_func_u.html":[2,3,1,17], +"functions_func_v.html":[2,3,1,18], +"functions_func_w.html":[2,3,1,19], +"functions_func_x.html":[2,3,1,20], +"functions_func_y.html":[2,3,1,21], +"functions_func_z.html":[2,3,1,22], +"functions_func_~.html":[2,3,1,23], +"functions_g.html":[2,3,0,7], +"functions_h.html":[2,3,0,8], +"functions_i.html":[2,3,0,9], +"functions_k.html":[2,3,0,10], +"functions_l.html":[2,3,0,11], +"functions_m.html":[2,3,0,12], +"functions_n.html":[2,3,0,13], +"functions_o.html":[2,3,0,14], +"functions_p.html":[2,3,0,15], +"functions_q.html":[2,3,0,16], +"functions_r.html":[2,3,0,17], +"functions_rela.html":[2,3,6], +"functions_s.html":[2,3,0,18], +"functions_t.html":[2,3,0,19], +"functions_type.html":[2,3,3], +"functions_u.html":[2,3,0,20], +"functions_v.html":[2,3,0,21], +"functions_vars.html":[2,3,2], +"functions_vars.html":[2,3,2,0], +"functions_vars_b.html":[2,3,2,1], +"functions_vars_c.html":[2,3,2,2], +"functions_vars_d.html":[2,3,2,3], +"functions_vars_e.html":[2,3,2,4], +"functions_vars_f.html":[2,3,2,5], +"functions_vars_g.html":[2,3,2,6], +"functions_vars_h.html":[2,3,2,7], +"functions_vars_i.html":[2,3,2,8], +"functions_vars_k.html":[2,3,2,9], +"functions_vars_l.html":[2,3,2,10], +"functions_vars_m.html":[2,3,2,11], +"functions_vars_n.html":[2,3,2,12], +"functions_vars_o.html":[2,3,2,13], +"functions_vars_p.html":[2,3,2,14], +"functions_vars_r.html":[2,3,2,15], +"functions_vars_s.html":[2,3,2,16], +"functions_vars_t.html":[2,3,2,17], +"functions_vars_u.html":[2,3,2,18], +"functions_vars_v.html":[2,3,2,19], +"functions_vars_w.html":[2,3,2,20], +"functions_vars_x.html":[2,3,2,21], +"functions_vars_y.html":[2,3,2,22], +"functions_vars_z.html":[2,3,2,23], +"functions_w.html":[2,3,0,22], +"functions_x.html":[2,3,0,23], +"functions_y.html":[2,3,0,24], +"functions_z.html":[2,3,0,25], +"functions_~.html":[2,3,0,26], +"globals.html":[3,1,0], +"globals_defs.html":[3,1,5], +"globals_enum.html":[3,1,3], +"globals_eval.html":[3,1,4], +"globals_func.html":[3,1,1], +"globals_type.html":[3,1,2], +"hierarchy.html":[2,2], "index.html":[], -"livox__def_8h.html":[2,0,0,0,2], -"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6":[2,0,0,0,2,44], -"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a3fe37e905ea4dd050257ca289ee18428":[2,0,0,0,2,44,0], -"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a7aeebb6d0579967928c56f6a8518e762":[2,0,0,0,2,44,2], -"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a83129665de707a6a0c0bf91eb530f7ac":[2,0,0,0,2,44,3], -"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6ae1e45f70424eb522bbf56e93521c6d9f":[2,0,0,0,2,44,1], -"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6ae5eb7e1939530970c3b4ac7cdd356ac7":[2,0,0,0,2,44,5], -"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6aecf83ff5fe86360ac27d110e8a0f8f9b":[2,0,0,0,2,44,4], -"livox__def_8h.html#a434b5d6c9f2fade81081831aa224038e":[2,0,0,0,2,38], -"livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8":[2,0,0,0,2,41], -"livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8a4761167dcadd1bb7be630108aaab16fd":[2,0,0,0,2,41,0], -"livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8a8438a46b37b107e81e1a352dc019b310":[2,0,0,0,2,41,1], -"livox__def_8h.html#a52a002900b5c97625b3689e34474f1af":[2,0,0,0,2,39], -"livox__def_8h.html#a52a002900b5c97625b3689e34474f1afa97b4d4b175f48ab334cf7b978daf3592":[2,0,0,0,2,39,0], -"livox__def_8h.html#a52a002900b5c97625b3689e34474f1afaabfb2db81b1abc1ee7e6e7b17eea2462":[2,0,0,0,2,39,2], -"livox__def_8h.html#a52a002900b5c97625b3689e34474f1afab9cdd9da2a23827a576f2a10cc58321c":[2,0,0,0,2,39,1], -"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0":[2,0,0,0,2,45], -"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a1ca5711dfb54ac4bc92ed9ec6e44e8ba":[2,0,0,0,2,45,2], -"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a2ccaf2fd680a5793f229a6d563e3521a":[2,0,0,0,2,45,3], -"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a38b56c1ca1cf164a128c8030921f4bf4":[2,0,0,0,2,45,5], -"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a53c343ed838f8ba6e7002fea16f54d9a":[2,0,0,0,2,45,4], -"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0aa6fa4326b2093b659e78dccf7a878dfe":[2,0,0,0,2,45,1], -"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0ab47d964982b63d19b9d170bc1c7b4cd2":[2,0,0,0,2,45,0], -"livox__def_8h.html#a8a4322cc238616252f82dac9b694b6fa":[2,0,0,0,2,37], -"livox__def_8h.html#aa9da728e6344627dcc138d13623d6866":[2,0,0,0,2,35], -"livox__def_8h.html#abd00f87dca580f94be328c5b51200857":[2,0,0,0,2,36], -"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049e":[2,0,0,0,2,43], -"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea174d099cbeaa59a1ef150697abadabf6":[2,0,0,0,2,43,1], -"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea30c45106b02a2fa12103f190fa63cdb1":[2,0,0,0,2,43,2], -"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea4b0e725d05bcebe782dc12fccc822e4f":[2,0,0,0,2,43,4], -"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea7ec237abe09cd5a1001860a87503badb":[2,0,0,0,2,43,0], -"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea9d31303d3daa158091fef2e03662cfa5":[2,0,0,0,2,43,5], -"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049eabf7c7959a9171c1f745281b038f989be":[2,0,0,0,2,43,3], -"livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9":[2,0,0,0,2,40], -"livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a106cbd246757e6e662cd7f6a9674cc8c":[2,0,0,0,2,40,0], -"livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a357d13b3ac8641a1347832e70ce539ea":[2,0,0,0,2,40,3], -"livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a5659e6d47fc3ee0a045210d3e9c4e3f9":[2,0,0,0,2,40,1], -"livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9ac7ac7fdbfd52ad17b275cef4c74453f3":[2,0,0,0,2,40,2], -"livox__def_8h.html#ae33a3fcc6acc4bc60ed45b34e5536922":[2,0,0,0,2,34], -"livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84":[2,0,0,0,2,42], -"livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a0feb50e1a30f36722f358ec5a1558729":[2,0,0,0,2,42,1], -"livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a4ae22c21c0c2729278af985d7b681595":[2,0,0,0,2,42,0], -"livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a652a398f78f41ee73bb6e5748b530fdd":[2,0,0,0,2,42,2], -"livox__def_8h_source.html":[2,0,0,0,2], -"livox__sdk_8h.html":[2,0,0,0,3], -"livox__sdk_8h.html#a0206c01eed30bd0c65984ba89e7f0d46":[2,0,0,0,3,24], -"livox__sdk_8h.html#a07da2c37e72a9f9c6537cc49e2b1d0c8":[2,0,0,0,3,38], -"livox__sdk_8h.html#a0efffae336c51f16133160a97f321d50":[2,0,0,0,3,16], -"livox__sdk_8h.html#a0f90dffeb284c53a464af021eb0eeb3c":[2,0,0,0,3,12], -"livox__sdk_8h.html#a119193489eaba2bf1153abac8e3cec92":[2,0,0,0,3,6], -"livox__sdk_8h.html#a1b86409f99a438f62f946d1b83b51dd3":[2,0,0,0,3,26], -"livox__sdk_8h.html#a1f3b08665a78e2e662ecd530a292d768":[2,0,0,0,3,34], -"livox__sdk_8h.html#a32a53686c361c645ce4dd83f411e80ff":[2,0,0,0,3,33], -"livox__sdk_8h.html#a3b9b87f4ad923df773c0a9c61686cfd0":[2,0,0,0,3,17], -"livox__sdk_8h.html#a3e68d21590fe0c7c3e20d720f9a7bf53":[2,0,0,0,3,45], -"livox__sdk_8h.html#a45ffd835efcfce16a23fc19488f0b433":[2,0,0,0,3,3], -"livox__sdk_8h.html#a51d3dfd8bc4e285a6551fbfe59c8207e":[2,0,0,0,3,41], -"livox__sdk_8h.html#a52822167d10dcc25a680a3883601d3c5":[2,0,0,0,3,2], -"livox__sdk_8h.html#a5686b8850f0626c808a8e2e611ab33f3":[2,0,0,0,3,18], -"livox__sdk_8h.html#a56e4e46cb5abee1fc822f518546a5c8c":[2,0,0,0,3,5], -"livox__sdk_8h.html#a59c8f942b65a1fce8e54a4a75b0dedbd":[2,0,0,0,3,27], -"livox__sdk_8h.html#a607c2ba4c70935ac52a5e52034a91ce3":[2,0,0,0,3,39], -"livox__sdk_8h.html#a649040b7f9fc62d721c4deb8951b8b08":[2,0,0,0,3,36], -"livox__sdk_8h.html#a7027869c70fc6d550dced67ba4285138":[2,0,0,0,3,29], -"livox__sdk_8h.html#a735d2136bc146ccc84b1c2d77ef85399":[2,0,0,0,3,37], -"livox__sdk_8h.html#a736b3b08f9015fda09ae1ac602d2746c":[2,0,0,0,3,40], -"livox__sdk_8h.html#a7597933a60d4ae38125ea2fa346524a9":[2,0,0,0,3,32], -"livox__sdk_8h.html#a776cec3bcfe1f718a24849c752426257":[2,0,0,0,3,11], -"livox__sdk_8h.html#a7b6ad0f6c2c1e198bb8df861368cf5e0":[2,0,0,0,3,1], -"livox__sdk_8h.html#a808d71b5f0ae0b39f0cc01a3f3aac4e4":[2,0,0,0,3,23], -"livox__sdk_8h.html#a8e5ebd472a6560803c216f629b5334b9":[2,0,0,0,3,19], -"livox__sdk_8h.html#a91d00e99928a2b04f48d07925cf74020":[2,0,0,0,3,20], -"livox__sdk_8h.html#a92a17d7becdf1affb290aef2cf57617a":[2,0,0,0,3,42], -"livox__sdk_8h.html#a993eddc8d0714c7d7b7a9f08c524639c":[2,0,0,0,3,15], -"livox__sdk_8h.html#aa70efaa4751ac6d5d54dce88fe725e0a":[2,0,0,0,3,46], -"livox__sdk_8h.html#aa86d8ae1586fc96b9cfd11ce8cf528d2":[2,0,0,0,3,0], -"livox__sdk_8h.html#aac000c456531f39d44d38277d7593071":[2,0,0,0,3,43], -"livox__sdk_8h.html#abe59cde8a0734811f5671bebba2f2163":[2,0,0,0,3,8], -"livox__sdk_8h.html#ac055ce23f0dd1178665ae7f584ce9f50":[2,0,0,0,3,14], -"livox__sdk_8h.html#ac18ec0e686d0646c84d5c8184c9a0e22":[2,0,0,0,3,21], -"livox__sdk_8h.html#ac5918d37dfd7a46dfdebdcdac030576c":[2,0,0,0,3,7], -"livox__sdk_8h.html#ac8777f4edc72526c398da704c4beb6e9":[2,0,0,0,3,28], -"livox__sdk_8h.html#ac9d7cce68b0d6148df59f500b0f4ce7c":[2,0,0,0,3,10], -"livox__sdk_8h.html#acc6b67a0b4b1c702342036cf460ba50e":[2,0,0,0,3,25], -"livox__sdk_8h.html#acdd757ddd274570aae88c25fd65fa5bf":[2,0,0,0,3,44], -"livox__sdk_8h.html#acf2240c3e409ab40a86eb0e0c7285bab":[2,0,0,0,3,9], -"livox__sdk_8h.html#ad19abaacb073bdef7940926f64b2aace":[2,0,0,0,3,30], -"livox__sdk_8h.html#ad86bba656ccf786f0e71a7080c7869b2":[2,0,0,0,3,13], -"livox__sdk_8h.html#ae044161cdd56cb307464944705ed97eb":[2,0,0,0,3,31], -"livox__sdk_8h.html#af18581acf8cc2163b1118f92fcb0fe17":[2,0,0,0,3,22], -"livox__sdk_8h.html#af20793bf9227b07f07c27e83c4fb5fb5":[2,0,0,0,3,4], -"livox__sdk_8h.html#afd39ba9dd082188cea2b7d5003a81cd7":[2,0,0,0,3,35], -"livox__sdk_8h.html#affc0f591b5f188f1b5cb4f20042e4766":[2,0,0,0,3,47], -"livox__sdk_8h_source.html":[2,0,0,0,3], -"locale_8h.html":[2,0,0,0,1,1,0,1,0,5], -"locale_8h.html#a105edfebadbb4e2e472d2b334e1134a2":[2,0,0,0,1,1,0,1,0,5,0], -"locale_8h.html#a1a193d7a8ac3220c517184dbbbff13c4":[2,0,0,0,1,1,0,1,0,5,1], -"locale_8h.html#a1f5ac8e91b7e7ded10e2dadab4fc6330":[2,0,0,0,1,1,0,1,0,5,3], -"locale_8h.html#a8baee03ce41dc9ba8e176f5995c768fc":[2,0,0,0,1,1,0,1,0,5,2], -"locale_8h.html#a8ccdf1f18a293a1db7c718039d9d91a4":[2,0,0,0,1,1,0,1,0,5,5], -"locale_8h.html#a96656f2873d811372570d14b911799c9":[2,0,0,0,1,1,0,1,0,5,4], -"locale_8h_source.html":[2,0,0,0,1,1,0,1,0,5], -"log__msg_8h.html":[2,0,0,0,1,1,0,0,5], -"log__msg_8h_source.html":[2,0,0,0,1,1,0,0,5] +"index.html":[0], +"livox__def_8h.html":[3,0,0,0,2], +"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6":[3,0,0,0,2,44], +"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a3fe37e905ea4dd050257ca289ee18428":[3,0,0,0,2,44,0], +"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a7aeebb6d0579967928c56f6a8518e762":[3,0,0,0,2,44,2], +"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a83129665de707a6a0c0bf91eb530f7ac":[3,0,0,0,2,44,3], +"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6ae1e45f70424eb522bbf56e93521c6d9f":[3,0,0,0,2,44,1], +"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6ae5eb7e1939530970c3b4ac7cdd356ac7":[3,0,0,0,2,44,5], +"livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6aecf83ff5fe86360ac27d110e8a0f8f9b":[3,0,0,0,2,44,4], +"livox__def_8h.html#a434b5d6c9f2fade81081831aa224038e":[3,0,0,0,2,38], +"livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8":[3,0,0,0,2,41], +"livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8a4761167dcadd1bb7be630108aaab16fd":[3,0,0,0,2,41,0], +"livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8a8438a46b37b107e81e1a352dc019b310":[3,0,0,0,2,41,1], +"livox__def_8h.html#a52a002900b5c97625b3689e34474f1af":[3,0,0,0,2,39], +"livox__def_8h.html#a52a002900b5c97625b3689e34474f1afa97b4d4b175f48ab334cf7b978daf3592":[3,0,0,0,2,39,0], +"livox__def_8h.html#a52a002900b5c97625b3689e34474f1afaabfb2db81b1abc1ee7e6e7b17eea2462":[3,0,0,0,2,39,2], +"livox__def_8h.html#a52a002900b5c97625b3689e34474f1afab9cdd9da2a23827a576f2a10cc58321c":[3,0,0,0,2,39,1], +"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0":[3,0,0,0,2,45], +"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a1ca5711dfb54ac4bc92ed9ec6e44e8ba":[3,0,0,0,2,45,2], +"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a2ccaf2fd680a5793f229a6d563e3521a":[3,0,0,0,2,45,3], +"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a38b56c1ca1cf164a128c8030921f4bf4":[3,0,0,0,2,45,5], +"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a53c343ed838f8ba6e7002fea16f54d9a":[3,0,0,0,2,45,4], +"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0aa6fa4326b2093b659e78dccf7a878dfe":[3,0,0,0,2,45,1], +"livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0ab47d964982b63d19b9d170bc1c7b4cd2":[3,0,0,0,2,45,0], +"livox__def_8h.html#a8a4322cc238616252f82dac9b694b6fa":[3,0,0,0,2,37], +"livox__def_8h.html#aa9da728e6344627dcc138d13623d6866":[3,0,0,0,2,35], +"livox__def_8h.html#abd00f87dca580f94be328c5b51200857":[3,0,0,0,2,36], +"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049e":[3,0,0,0,2,43], +"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea174d099cbeaa59a1ef150697abadabf6":[3,0,0,0,2,43,1], +"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea30c45106b02a2fa12103f190fa63cdb1":[3,0,0,0,2,43,2], +"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea4b0e725d05bcebe782dc12fccc822e4f":[3,0,0,0,2,43,4], +"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea7ec237abe09cd5a1001860a87503badb":[3,0,0,0,2,43,0], +"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea9d31303d3daa158091fef2e03662cfa5":[3,0,0,0,2,43,5], +"livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049eabf7c7959a9171c1f745281b038f989be":[3,0,0,0,2,43,3], +"livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9":[3,0,0,0,2,40], +"livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a106cbd246757e6e662cd7f6a9674cc8c":[3,0,0,0,2,40,0], +"livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a357d13b3ac8641a1347832e70ce539ea":[3,0,0,0,2,40,3], +"livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a5659e6d47fc3ee0a045210d3e9c4e3f9":[3,0,0,0,2,40,1], +"livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9ac7ac7fdbfd52ad17b275cef4c74453f3":[3,0,0,0,2,40,2], +"livox__def_8h.html#ae33a3fcc6acc4bc60ed45b34e5536922":[3,0,0,0,2,34], +"livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84":[3,0,0,0,2,42], +"livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a0feb50e1a30f36722f358ec5a1558729":[3,0,0,0,2,42,1], +"livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a4ae22c21c0c2729278af985d7b681595":[3,0,0,0,2,42,0], +"livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a652a398f78f41ee73bb6e5748b530fdd":[3,0,0,0,2,42,2], +"livox__def_8h_source.html":[3,0,0,0,2], +"livox__sdk_8h.html":[3,0,0,0,3], +"livox__sdk_8h.html#a0206c01eed30bd0c65984ba89e7f0d46":[3,0,0,0,3,24], +"livox__sdk_8h.html#a07da2c37e72a9f9c6537cc49e2b1d0c8":[3,0,0,0,3,38], +"livox__sdk_8h.html#a0efffae336c51f16133160a97f321d50":[3,0,0,0,3,16], +"livox__sdk_8h.html#a0f90dffeb284c53a464af021eb0eeb3c":[3,0,0,0,3,12], +"livox__sdk_8h.html#a119193489eaba2bf1153abac8e3cec92":[3,0,0,0,3,6], +"livox__sdk_8h.html#a1b86409f99a438f62f946d1b83b51dd3":[3,0,0,0,3,26], +"livox__sdk_8h.html#a1f3b08665a78e2e662ecd530a292d768":[3,0,0,0,3,34], +"livox__sdk_8h.html#a32a53686c361c645ce4dd83f411e80ff":[3,0,0,0,3,33], +"livox__sdk_8h.html#a3b9b87f4ad923df773c0a9c61686cfd0":[3,0,0,0,3,17], +"livox__sdk_8h.html#a3e68d21590fe0c7c3e20d720f9a7bf53":[3,0,0,0,3,45], +"livox__sdk_8h.html#a45ffd835efcfce16a23fc19488f0b433":[3,0,0,0,3,3], +"livox__sdk_8h.html#a51d3dfd8bc4e285a6551fbfe59c8207e":[3,0,0,0,3,41], +"livox__sdk_8h.html#a52822167d10dcc25a680a3883601d3c5":[3,0,0,0,3,2], +"livox__sdk_8h.html#a5686b8850f0626c808a8e2e611ab33f3":[3,0,0,0,3,18], +"livox__sdk_8h.html#a56e4e46cb5abee1fc822f518546a5c8c":[3,0,0,0,3,5], +"livox__sdk_8h.html#a59c8f942b65a1fce8e54a4a75b0dedbd":[3,0,0,0,3,27], +"livox__sdk_8h.html#a607c2ba4c70935ac52a5e52034a91ce3":[3,0,0,0,3,39], +"livox__sdk_8h.html#a649040b7f9fc62d721c4deb8951b8b08":[3,0,0,0,3,36], +"livox__sdk_8h.html#a7027869c70fc6d550dced67ba4285138":[3,0,0,0,3,29], +"livox__sdk_8h.html#a735d2136bc146ccc84b1c2d77ef85399":[3,0,0,0,3,37], +"livox__sdk_8h.html#a736b3b08f9015fda09ae1ac602d2746c":[3,0,0,0,3,40], +"livox__sdk_8h.html#a7597933a60d4ae38125ea2fa346524a9":[3,0,0,0,3,32], +"livox__sdk_8h.html#a776cec3bcfe1f718a24849c752426257":[3,0,0,0,3,11], +"livox__sdk_8h.html#a7b6ad0f6c2c1e198bb8df861368cf5e0":[3,0,0,0,3,1], +"livox__sdk_8h.html#a808d71b5f0ae0b39f0cc01a3f3aac4e4":[3,0,0,0,3,23], +"livox__sdk_8h.html#a8e5ebd472a6560803c216f629b5334b9":[3,0,0,0,3,19], +"livox__sdk_8h.html#a91d00e99928a2b04f48d07925cf74020":[3,0,0,0,3,20], +"livox__sdk_8h.html#a92a17d7becdf1affb290aef2cf57617a":[3,0,0,0,3,42], +"livox__sdk_8h.html#a993eddc8d0714c7d7b7a9f08c524639c":[3,0,0,0,3,15], +"livox__sdk_8h.html#aa70efaa4751ac6d5d54dce88fe725e0a":[3,0,0,0,3,46], +"livox__sdk_8h.html#aa86d8ae1586fc96b9cfd11ce8cf528d2":[3,0,0,0,3,0], +"livox__sdk_8h.html#aac000c456531f39d44d38277d7593071":[3,0,0,0,3,43], +"livox__sdk_8h.html#abe59cde8a0734811f5671bebba2f2163":[3,0,0,0,3,8], +"livox__sdk_8h.html#ac055ce23f0dd1178665ae7f584ce9f50":[3,0,0,0,3,14], +"livox__sdk_8h.html#ac18ec0e686d0646c84d5c8184c9a0e22":[3,0,0,0,3,21], +"livox__sdk_8h.html#ac5918d37dfd7a46dfdebdcdac030576c":[3,0,0,0,3,7], +"livox__sdk_8h.html#ac8777f4edc72526c398da704c4beb6e9":[3,0,0,0,3,28], +"livox__sdk_8h.html#ac9d7cce68b0d6148df59f500b0f4ce7c":[3,0,0,0,3,10], +"livox__sdk_8h.html#acc6b67a0b4b1c702342036cf460ba50e":[3,0,0,0,3,25], +"livox__sdk_8h.html#acdd757ddd274570aae88c25fd65fa5bf":[3,0,0,0,3,44], +"livox__sdk_8h.html#acf2240c3e409ab40a86eb0e0c7285bab":[3,0,0,0,3,9], +"livox__sdk_8h.html#ad19abaacb073bdef7940926f64b2aace":[3,0,0,0,3,30], +"livox__sdk_8h.html#ad86bba656ccf786f0e71a7080c7869b2":[3,0,0,0,3,13], +"livox__sdk_8h.html#ae044161cdd56cb307464944705ed97eb":[3,0,0,0,3,31], +"livox__sdk_8h.html#af18581acf8cc2163b1118f92fcb0fe17":[3,0,0,0,3,22], +"livox__sdk_8h.html#af20793bf9227b07f07c27e83c4fb5fb5":[3,0,0,0,3,4], +"livox__sdk_8h.html#afd39ba9dd082188cea2b7d5003a81cd7":[3,0,0,0,3,35], +"livox__sdk_8h.html#affc0f591b5f188f1b5cb4f20042e4766":[3,0,0,0,3,47], +"livox__sdk_8h_source.html":[3,0,0,0,3], +"locale_8h.html":[3,0,0,0,1,1,0,1,0,5], +"locale_8h.html#a105edfebadbb4e2e472d2b334e1134a2":[3,0,0,0,1,1,0,1,0,5,0], +"locale_8h.html#a1a193d7a8ac3220c517184dbbbff13c4":[3,0,0,0,1,1,0,1,0,5,1], +"locale_8h.html#a1f5ac8e91b7e7ded10e2dadab4fc6330":[3,0,0,0,1,1,0,1,0,5,3], +"locale_8h.html#a8baee03ce41dc9ba8e176f5995c768fc":[3,0,0,0,1,1,0,1,0,5,2], +"locale_8h.html#a8ccdf1f18a293a1db7c718039d9d91a4":[3,0,0,0,1,1,0,1,0,5,5], +"locale_8h.html#a96656f2873d811372570d14b911799c9":[3,0,0,0,1,1,0,1,0,5,4], +"locale_8h_source.html":[3,0,0,0,1,1,0,1,0,5], +"log__msg_8h.html":[3,0,0,0,1,1,0,0,5] }; diff --git a/docs/navtreeindex7.js b/docs/navtreeindex7.js index 6ec9771..229f4a2 100644 --- a/docs/navtreeindex7.js +++ b/docs/navtreeindex7.js @@ -1,253 +1,253 @@ var NAVTREEINDEX7 = { -"logger_8h.html":[2,0,0,0,1,1,0,7], -"logger_8h_source.html":[2,0,0,0,1,1,0,7], -"logger__impl_8h.html":[2,0,0,0,1,1,0,0,6], -"logger__impl_8h.html#abeca270216d992ce38ca429b9d66f91b":[2,0,0,0,1,1,0,0,6,0], -"logger__impl_8h_source.html":[2,0,0,0,1,1,0,0,6], -"mpmc__blocking__q_8h.html":[2,0,0,0,1,1,0,0,7], -"mpmc__blocking__q_8h_source.html":[2,0,0,0,1,1,0,0,7], -"msvc__sink_8h.html":[2,0,0,0,1,1,0,2,6], -"msvc__sink_8h_source.html":[2,0,0,0,1,1,0,2,6], -"namespacefmt.html":[0,0,0], +"log__msg_8h_source.html":[3,0,0,0,1,1,0,0,5], +"logger_8h.html":[3,0,0,0,1,1,0,7], +"logger_8h_source.html":[3,0,0,0,1,1,0,7], +"logger__impl_8h.html":[3,0,0,0,1,1,0,0,6], +"logger__impl_8h.html#abeca270216d992ce38ca429b9d66f91b":[3,0,0,0,1,1,0,0,6,0], +"logger__impl_8h_source.html":[3,0,0,0,1,1,0,0,6], +"mpmc__blocking__q_8h.html":[3,0,0,0,1,1,0,0,7], +"mpmc__blocking__q_8h_source.html":[3,0,0,0,1,1,0,0,7], +"msvc__sink_8h.html":[3,0,0,0,1,1,0,2,6], +"msvc__sink_8h_source.html":[3,0,0,0,1,1,0,2,6], +"namespacefmt.html":[2,0,0], "namespacefmt.html":[1,0,0], +"namespacefmt_1_1v5.html":[2,0,0,0], "namespacefmt_1_1v5.html":[1,0,0,0], -"namespacefmt_1_1v5.html":[0,0,0,0], +"namespacefmt_1_1v5_1_1internal.html":[2,0,0,0,0], "namespacefmt_1_1v5_1_1internal.html":[1,0,0,0,0], -"namespacefmt_1_1v5_1_1internal.html":[0,0,0,0,0], "namespacelivox.html":[1,0,1], -"namespacelivox.html":[0,0,1], -"namespacemembers.html":[0,1,0,0], -"namespacemembers.html":[0,1,0], -"namespacemembers_a.html":[0,1,0,1], -"namespacemembers_b.html":[0,1,0,2], -"namespacemembers_c.html":[0,1,0,3], -"namespacemembers_d.html":[0,1,0,4], -"namespacemembers_e.html":[0,1,0,5], -"namespacemembers_enum.html":[0,1,4], -"namespacemembers_eval.html":[0,1,5], -"namespacemembers_f.html":[0,1,0,6], -"namespacemembers_func.html":[0,1,1,0], -"namespacemembers_func.html":[0,1,1], -"namespacemembers_func_a.html":[0,1,1,1], -"namespacemembers_func_b.html":[0,1,1,2], -"namespacemembers_func_c.html":[0,1,1,3], -"namespacemembers_func_d.html":[0,1,1,4], -"namespacemembers_func_e.html":[0,1,1,5], -"namespacemembers_func_f.html":[0,1,1,6], -"namespacemembers_func_g.html":[0,1,1,7], -"namespacemembers_func_h.html":[0,1,1,8], -"namespacemembers_func_i.html":[0,1,1,9], -"namespacemembers_func_j.html":[0,1,1,10], -"namespacemembers_func_l.html":[0,1,1,11], -"namespacemembers_func_m.html":[0,1,1,12], -"namespacemembers_func_n.html":[0,1,1,13], -"namespacemembers_func_o.html":[0,1,1,14], -"namespacemembers_func_p.html":[0,1,1,15], -"namespacemembers_func_r.html":[0,1,1,16], -"namespacemembers_func_s.html":[0,1,1,17], -"namespacemembers_func_t.html":[0,1,1,18], -"namespacemembers_func_u.html":[0,1,1,19], -"namespacemembers_func_v.html":[0,1,1,20], -"namespacemembers_func_w.html":[0,1,1,21], -"namespacemembers_g.html":[0,1,0,7], -"namespacemembers_h.html":[0,1,0,8], -"namespacemembers_i.html":[0,1,0,9], -"namespacemembers_j.html":[0,1,0,10], -"namespacemembers_k.html":[0,1,0,11], -"namespacemembers_l.html":[0,1,0,12], -"namespacemembers_m.html":[0,1,0,13], -"namespacemembers_n.html":[0,1,0,14], -"namespacemembers_o.html":[0,1,0,15], -"namespacemembers_p.html":[0,1,0,16], -"namespacemembers_r.html":[0,1,0,17], -"namespacemembers_s.html":[0,1,0,18], -"namespacemembers_t.html":[0,1,0,19], -"namespacemembers_type.html":[0,1,3], -"namespacemembers_u.html":[0,1,0,20], -"namespacemembers_v.html":[0,1,0,21], -"namespacemembers_vars.html":[0,1,2], -"namespacemembers_w.html":[0,1,0,22], -"namespaces.html":[0,0], +"namespacelivox.html":[2,0,1], +"namespacemembers.html":[1,1,0,0], +"namespacemembers.html":[1,1,0], +"namespacemembers_a.html":[1,1,0,1], +"namespacemembers_b.html":[1,1,0,2], +"namespacemembers_c.html":[1,1,0,3], +"namespacemembers_d.html":[1,1,0,4], +"namespacemembers_e.html":[1,1,0,5], +"namespacemembers_enum.html":[1,1,4], +"namespacemembers_eval.html":[1,1,5], +"namespacemembers_f.html":[1,1,0,6], +"namespacemembers_func.html":[1,1,1], +"namespacemembers_func.html":[1,1,1,0], +"namespacemembers_func_a.html":[1,1,1,1], +"namespacemembers_func_b.html":[1,1,1,2], +"namespacemembers_func_c.html":[1,1,1,3], +"namespacemembers_func_d.html":[1,1,1,4], +"namespacemembers_func_e.html":[1,1,1,5], +"namespacemembers_func_f.html":[1,1,1,6], +"namespacemembers_func_g.html":[1,1,1,7], +"namespacemembers_func_h.html":[1,1,1,8], +"namespacemembers_func_i.html":[1,1,1,9], +"namespacemembers_func_j.html":[1,1,1,10], +"namespacemembers_func_l.html":[1,1,1,11], +"namespacemembers_func_m.html":[1,1,1,12], +"namespacemembers_func_n.html":[1,1,1,13], +"namespacemembers_func_o.html":[1,1,1,14], +"namespacemembers_func_p.html":[1,1,1,15], +"namespacemembers_func_r.html":[1,1,1,16], +"namespacemembers_func_s.html":[1,1,1,17], +"namespacemembers_func_t.html":[1,1,1,18], +"namespacemembers_func_u.html":[1,1,1,19], +"namespacemembers_func_v.html":[1,1,1,20], +"namespacemembers_func_w.html":[1,1,1,21], +"namespacemembers_g.html":[1,1,0,7], +"namespacemembers_h.html":[1,1,0,8], +"namespacemembers_i.html":[1,1,0,9], +"namespacemembers_j.html":[1,1,0,10], +"namespacemembers_k.html":[1,1,0,11], +"namespacemembers_l.html":[1,1,0,12], +"namespacemembers_m.html":[1,1,0,13], +"namespacemembers_n.html":[1,1,0,14], +"namespacemembers_o.html":[1,1,0,15], +"namespacemembers_p.html":[1,1,0,16], +"namespacemembers_r.html":[1,1,0,17], +"namespacemembers_s.html":[1,1,0,18], +"namespacemembers_t.html":[1,1,0,19], +"namespacemembers_type.html":[1,1,3], +"namespacemembers_u.html":[1,1,0,20], +"namespacemembers_v.html":[1,1,0,21], +"namespacemembers_vars.html":[1,1,2], +"namespacemembers_w.html":[1,1,0,22], +"namespaces.html":[1,0], "namespacespdlog.html":[1,0,2], -"namespacespdlog.html":[0,0,2], +"namespacespdlog.html":[2,0,2], +"namespacespdlog_1_1details.html":[2,0,2,0], "namespacespdlog_1_1details.html":[1,0,2,0], -"namespacespdlog_1_1details.html":[0,0,2,0], -"namespacespdlog_1_1details_1_1fmt__helper.html":[0,0,2,0,0], -"namespacespdlog_1_1details_1_1os.html":[0,0,2,0,1], -"namespacespdlog_1_1level.html":[0,0,2,1], -"namespacespdlog_1_1sinks.html":[0,0,2,2], -"namespacespdlog_1_1sinks.html":[1,0,2,1], -"namespacestd.html":[0,0,3], +"namespacespdlog_1_1details_1_1fmt__helper.html":[1,0,2,0,0], +"namespacespdlog_1_1details_1_1os.html":[1,0,2,0,1], +"namespacespdlog_1_1level.html":[1,0,2,1], +"namespacespdlog_1_1sinks.html":[1,0,2,2], +"namespacespdlog_1_1sinks.html":[2,0,2,1], +"namespacestd.html":[2,0,3], "namespacestd.html":[1,0,3], -"null__mutex_8h.html":[2,0,0,0,1,1,0,0,8], -"null__mutex_8h_source.html":[2,0,0,0,1,1,0,0,8], -"null__sink_8h.html":[2,0,0,0,1,1,0,2,7], -"null__sink_8h.html#a0712014c0dae16e0b332d3caba31435a":[2,0,0,0,1,1,0,2,7,1], -"null__sink_8h.html#a44a99e8a56b2f902ffd50da4f8628100":[2,0,0,0,1,1,0,2,7,2], -"null__sink_8h.html#a6d6344c349d1c6d957d5f21f4387c8f8":[2,0,0,0,1,1,0,2,7,3], -"null__sink_8h.html#af6a7d6f86b50ab1c5c346949ca5af564":[2,0,0,0,1,1,0,2,7,4], -"null__sink_8h_source.html":[2,0,0,0,1,1,0,2,7], -"os_8h.html":[2,0,0,0,1,1,0,0,9], -"os_8h.html#a0128efefe7b8bbf3b3ba58a1f7a309dd":[2,0,0,0,1,1,0,0,9,14], -"os_8h.html#a1db4824c9cd5bc09a5f3dd7f248f1c51":[2,0,0,0,1,1,0,0,9,22], -"os_8h.html#a3c16021694c04b9b7341a9348b6d8dd4":[2,0,0,0,1,1,0,0,9,1], -"os_8h.html#a5520aa99f4b24d934f47884c718af8b5":[2,0,0,0,1,1,0,0,9,8], -"os_8h.html#a56a474fcf965264674346ffdefac0759":[2,0,0,0,1,1,0,0,9,19], -"os_8h.html#a58e68538bb3667c56f3623bf047093d6":[2,0,0,0,1,1,0,0,9,16], -"os_8h.html#a6026b23c139f733601c1a5fa9f4d555f":[2,0,0,0,1,1,0,0,9,17], -"os_8h.html#a63d60ea1c1a925d3db13864d37bd2da2":[2,0,0,0,1,1,0,0,9,2], -"os_8h.html#a6d2fb5a293e8515f651288992d5443cc":[2,0,0,0,1,1,0,0,9,6], -"os_8h.html#a6dce662c3a4ea0b6e95468272ec37047":[2,0,0,0,1,1,0,0,9,21], -"os_8h.html#a74d5902dc227aa662ade3eac75d03c81":[2,0,0,0,1,1,0,0,9,20], -"os_8h.html#a8603bb3ec0aab28cf4fd6a0ef7cc78b9":[2,0,0,0,1,1,0,0,9,18], -"os_8h.html#a9c021ae34fade1511cde10551eb5fb63":[2,0,0,0,1,1,0,0,9,10], -"os_8h.html#a9ed2501e3a0bf17176ac848e0a67a148":[2,0,0,0,1,1,0,0,9,12], -"os_8h.html#ab397aa6b937e5d4624878dfd2e3a0083":[2,0,0,0,1,1,0,0,9,3], -"os_8h.html#ab96032bfa50f2c6a269f90a89e03051b":[2,0,0,0,1,1,0,0,9,9], -"os_8h.html#ac7c0d6af1f3f652f23e57f057217b9a7":[2,0,0,0,1,1,0,0,9,5], -"os_8h.html#af2d11a0b892e2f0cb3c6beba4c659a47":[2,0,0,0,1,1,0,0,9,7], -"os_8h.html#af559cb70eda0e8af7314a3b10136c0d8":[2,0,0,0,1,1,0,0,9,11], -"os_8h.html#af8b1e6155c2975abfd696ffb5fd9e7dd":[2,0,0,0,1,1,0,0,9,13], -"os_8h.html#af989845e24678c452b9222afdac95e7f":[2,0,0,0,1,1,0,0,9,0], -"os_8h.html#afa5e2f0096ec0aa63c2d20143cb18b17":[2,0,0,0,1,1,0,0,9,15], -"os_8h.html#afd466bafef75b9792e0ca62e7fdd8dc1":[2,0,0,0,1,1,0,0,9,4], -"os_8h.html#afd9823831f24054f4fd6d734b90b7bc4":[2,0,0,0,1,1,0,0,9,23], -"os_8h_source.html":[2,0,0,0,1,1,0,0,9], -"ostr_8h.html":[2,0,0,0,1,1,0,1,3], -"ostr_8h.html#a27b3249db8d77bd236109bda307bc263":[2,0,0,0,1,1,0,1,3,0], -"ostr_8h_source.html":[2,0,0,0,1,1,0,1,3], -"ostream_8h.html":[2,0,0,0,1,1,0,1,0,6], -"ostream_8h.html#a2e1e2dadf40c0bdae64332ed12924425":[2,0,0,0,1,1,0,1,0,6,6], -"ostream_8h.html#a306e98364a413763f1c84d64a21a96b4":[2,0,0,0,1,1,0,1,0,6,7], -"ostream_8h.html#a612441ca8e1a7a5f773ee3d616d9d62c":[2,0,0,0,1,1,0,1,0,6,8], -"ostream_8h.html#a6dd6919e94e513563baf983e66a330ad":[2,0,0,0,1,1,0,1,0,6,5], -"ostream_8h_source.html":[2,0,0,0,1,1,0,1,0,6], -"ostream__sink_8h.html":[2,0,0,0,1,1,0,2,8], -"ostream__sink_8h.html#a7c6131fdceb0975b2700d70994a6b351":[2,0,0,0,1,1,0,2,8,2], -"ostream__sink_8h.html#aeef023d4552e1e9be997bec2aa2fb184":[2,0,0,0,1,1,0,2,8,1], -"ostream__sink_8h_source.html":[2,0,0,0,1,1,0,2,8], +"null__mutex_8h.html":[3,0,0,0,1,1,0,0,8], +"null__mutex_8h_source.html":[3,0,0,0,1,1,0,0,8], +"null__sink_8h.html":[3,0,0,0,1,1,0,2,7], +"null__sink_8h.html#a0712014c0dae16e0b332d3caba31435a":[3,0,0,0,1,1,0,2,7,1], +"null__sink_8h.html#a44a99e8a56b2f902ffd50da4f8628100":[3,0,0,0,1,1,0,2,7,2], +"null__sink_8h.html#a6d6344c349d1c6d957d5f21f4387c8f8":[3,0,0,0,1,1,0,2,7,3], +"null__sink_8h.html#af6a7d6f86b50ab1c5c346949ca5af564":[3,0,0,0,1,1,0,2,7,4], +"null__sink_8h_source.html":[3,0,0,0,1,1,0,2,7], +"os_8h.html":[3,0,0,0,1,1,0,0,9], +"os_8h.html#a0128efefe7b8bbf3b3ba58a1f7a309dd":[3,0,0,0,1,1,0,0,9,14], +"os_8h.html#a1db4824c9cd5bc09a5f3dd7f248f1c51":[3,0,0,0,1,1,0,0,9,22], +"os_8h.html#a3c16021694c04b9b7341a9348b6d8dd4":[3,0,0,0,1,1,0,0,9,1], +"os_8h.html#a5520aa99f4b24d934f47884c718af8b5":[3,0,0,0,1,1,0,0,9,8], +"os_8h.html#a56a474fcf965264674346ffdefac0759":[3,0,0,0,1,1,0,0,9,19], +"os_8h.html#a58e68538bb3667c56f3623bf047093d6":[3,0,0,0,1,1,0,0,9,16], +"os_8h.html#a6026b23c139f733601c1a5fa9f4d555f":[3,0,0,0,1,1,0,0,9,17], +"os_8h.html#a63d60ea1c1a925d3db13864d37bd2da2":[3,0,0,0,1,1,0,0,9,2], +"os_8h.html#a6d2fb5a293e8515f651288992d5443cc":[3,0,0,0,1,1,0,0,9,6], +"os_8h.html#a6dce662c3a4ea0b6e95468272ec37047":[3,0,0,0,1,1,0,0,9,21], +"os_8h.html#a74d5902dc227aa662ade3eac75d03c81":[3,0,0,0,1,1,0,0,9,20], +"os_8h.html#a8603bb3ec0aab28cf4fd6a0ef7cc78b9":[3,0,0,0,1,1,0,0,9,18], +"os_8h.html#a9c021ae34fade1511cde10551eb5fb63":[3,0,0,0,1,1,0,0,9,10], +"os_8h.html#a9ed2501e3a0bf17176ac848e0a67a148":[3,0,0,0,1,1,0,0,9,12], +"os_8h.html#ab397aa6b937e5d4624878dfd2e3a0083":[3,0,0,0,1,1,0,0,9,3], +"os_8h.html#ab96032bfa50f2c6a269f90a89e03051b":[3,0,0,0,1,1,0,0,9,9], +"os_8h.html#ac7c0d6af1f3f652f23e57f057217b9a7":[3,0,0,0,1,1,0,0,9,5], +"os_8h.html#af2d11a0b892e2f0cb3c6beba4c659a47":[3,0,0,0,1,1,0,0,9,7], +"os_8h.html#af559cb70eda0e8af7314a3b10136c0d8":[3,0,0,0,1,1,0,0,9,11], +"os_8h.html#af8b1e6155c2975abfd696ffb5fd9e7dd":[3,0,0,0,1,1,0,0,9,13], +"os_8h.html#af989845e24678c452b9222afdac95e7f":[3,0,0,0,1,1,0,0,9,0], +"os_8h.html#afa5e2f0096ec0aa63c2d20143cb18b17":[3,0,0,0,1,1,0,0,9,15], +"os_8h.html#afd466bafef75b9792e0ca62e7fdd8dc1":[3,0,0,0,1,1,0,0,9,4], +"os_8h.html#afd9823831f24054f4fd6d734b90b7bc4":[3,0,0,0,1,1,0,0,9,23], +"os_8h_source.html":[3,0,0,0,1,1,0,0,9], +"ostr_8h.html":[3,0,0,0,1,1,0,1,3], +"ostr_8h.html#a27b3249db8d77bd236109bda307bc263":[3,0,0,0,1,1,0,1,3,0], +"ostr_8h_source.html":[3,0,0,0,1,1,0,1,3], +"ostream_8h.html":[3,0,0,0,1,1,0,1,0,6], +"ostream_8h.html#a2e1e2dadf40c0bdae64332ed12924425":[3,0,0,0,1,1,0,1,0,6,6], +"ostream_8h.html#a306e98364a413763f1c84d64a21a96b4":[3,0,0,0,1,1,0,1,0,6,7], +"ostream_8h.html#a612441ca8e1a7a5f773ee3d616d9d62c":[3,0,0,0,1,1,0,1,0,6,8], +"ostream_8h.html#a6dd6919e94e513563baf983e66a330ad":[3,0,0,0,1,1,0,1,0,6,5], +"ostream_8h_source.html":[3,0,0,0,1,1,0,1,0,6], +"ostream__sink_8h.html":[3,0,0,0,1,1,0,2,8], +"ostream__sink_8h.html#a7c6131fdceb0975b2700d70994a6b351":[3,0,0,0,1,1,0,2,8,2], +"ostream__sink_8h.html#aeef023d4552e1e9be997bec2aa2fb184":[3,0,0,0,1,1,0,2,8,1], +"ostream__sink_8h_source.html":[3,0,0,0,1,1,0,2,8], "pages.html":[], -"pattern__formatter_8h.html":[2,0,0,0,1,1,0,0,10], -"pattern__formatter_8h.html#a1ee031fa311cd596ba390b046e75ac77":[2,0,0,0,1,1,0,0,10,46], -"pattern__formatter_8h.html#a6c1d83e70c17aa8427909d1c14bb1dc4":[2,0,0,0,1,1,0,0,10,43], -"pattern__formatter_8h.html#a94e52301ec7a1a0be693a4a971af0525":[2,0,0,0,1,1,0,0,10,45], -"pattern__formatter_8h.html#ac9a2865e6c6a61f6e3f67e57cf24d55c":[2,0,0,0,1,1,0,0,10,48], -"pattern__formatter_8h.html#ad864099fc7d08563c5cc291e2f74485a":[2,0,0,0,1,1,0,0,10,47], -"pattern__formatter_8h.html#adc1e7c142665b3801b5797f9c8b77bfa":[2,0,0,0,1,1,0,0,10,44], -"pattern__formatter_8h_source.html":[2,0,0,0,1,1,0,0,10], -"periodic__worker_8h.html":[2,0,0,0,1,1,0,0,11], -"periodic__worker_8h_source.html":[2,0,0,0,1,1,0,0,11], -"posix_8h.html":[2,0,0,0,1,1,0,1,0,7], -"posix_8h.html#a510a8bb1fab87ff109e319e8f8e35405":[2,0,0,0,1,1,0,1,0,7,10], -"posix_8h.html#a54f7e73fc1fc6ded8358c6339b51bde7":[2,0,0,0,1,1,0,1,0,7,7], -"posix_8h.html#a6fa0773ef89920062fe6ab8b6e3cf337":[2,0,0,0,1,1,0,1,0,7,4], -"posix_8h.html#a9d6790ac79298b8abd2472500422e138":[2,0,0,0,1,1,0,1,0,7,6], -"posix_8h.html#aa693a9f0c55e9b081f1ea5bf04968dd7":[2,0,0,0,1,1,0,1,0,7,5], -"posix_8h.html#acca658935a0993e7cf549b4a5be255a3":[2,0,0,0,1,1,0,1,0,7,8], -"posix_8h.html#ace4a142aff4cc70ee683b2134cc0fdff":[2,0,0,0,1,1,0,1,0,7,11], -"posix_8h.html#aefed7eb96cd309b6f9d5dab1f9fae2f6":[2,0,0,0,1,1,0,1,0,7,9], -"posix_8h_source.html":[2,0,0,0,1,1,0,1,0,7], -"printf_8h.html":[2,0,0,0,1,1,0,1,0,8], -"printf_8h.html#a00613ec467c7dd2b621ee725398b19b0":[2,0,0,0,1,1,0,1,0,8,25], -"printf_8h.html#a16cf20ac8074c751e521b5f93d5c7014":[2,0,0,0,1,1,0,1,0,8,29], -"printf_8h.html#a2a155fb47a981d3005cfac583e8de68d":[2,0,0,0,1,1,0,1,0,8,24], -"printf_8h.html#a2b685ddfe3ac9548bf7ebff220e2ccd5":[2,0,0,0,1,1,0,1,0,8,30], -"printf_8h.html#a534d02a4b06a68425c00665acd4a0df4":[2,0,0,0,1,1,0,1,0,8,26], -"printf_8h.html#a57ed2afe31b4c752383ce3f4c3636085":[2,0,0,0,1,1,0,1,0,8,20], -"printf_8h.html#a6047019507a20aa205cce7a558dcb325":[2,0,0,0,1,1,0,1,0,8,31], -"printf_8h.html#a632ed3b215b2b639a1aafff16ad7d609":[2,0,0,0,1,1,0,1,0,8,35], -"printf_8h.html#a636b8bf150967fac945ad04551c2ff1d":[2,0,0,0,1,1,0,1,0,8,22], -"printf_8h.html#a64916ff674b5c95f8364940456eb640f":[2,0,0,0,1,1,0,1,0,8,18], -"printf_8h.html#a64d11550059be9a7d0dcc73dfa9b7821":[2,0,0,0,1,1,0,1,0,8,32], -"printf_8h.html#a6689ac15e44b821c97159c1f63fc39f8":[2,0,0,0,1,1,0,1,0,8,17], -"printf_8h.html#a84a71badf9f49aae3c4698ac7690dbfc":[2,0,0,0,1,1,0,1,0,8,23], -"printf_8h.html#a875ca22a1f2292b1ce663881420906b9":[2,0,0,0,1,1,0,1,0,8,27], -"printf_8h.html#a879cac033613a1bc9bd96fe510d167d6":[2,0,0,0,1,1,0,1,0,8,19], -"printf_8h.html#a91182ac859ac969e4f719d61cad002e1":[2,0,0,0,1,1,0,1,0,8,28], -"printf_8h.html#a9628890375152b497b31614053e4c813":[2,0,0,0,1,1,0,1,0,8,34], -"printf_8h.html#acb73020810b7b8d56b3538a416d97988":[2,0,0,0,1,1,0,1,0,8,21], -"printf_8h.html#ad3b38575efbc58494272ed75b8e50d39":[2,0,0,0,1,1,0,1,0,8,33], -"printf_8h_source.html":[2,0,0,0,1,1,0,1,0,8], -"protocol_8h.html":[2,0,0,0,0,1], -"protocol_8h.html#a6941cc71243dd1b067c904fdd91bfb61":[2,0,0,0,0,1,5], -"protocol_8h.html#a6941cc71243dd1b067c904fdd91bfb61a195c6286a980061276877c88f4347a65":[2,0,0,0,0,1,5,2], -"protocol_8h.html#a6941cc71243dd1b067c904fdd91bfb61a9686d537f806d748aece1f03b523d50e":[2,0,0,0,0,1,5,1], -"protocol_8h.html#a6941cc71243dd1b067c904fdd91bfb61aac306c9b5938dac53c45dfc4fcc9c132":[2,0,0,0,0,1,5,0], -"protocol_8h.html#aa0c7b20b2866108c5e232ff70bea4820":[2,0,0,0,0,1,6], -"protocol_8h.html#aa0c7b20b2866108c5e232ff70bea4820a336a54b375b03cc744f69189037af991":[2,0,0,0,0,1,6,0], -"protocol_8h.html#aa0c7b20b2866108c5e232ff70bea4820a397580937b025c53bf21690ebeb11e7a":[2,0,0,0,0,1,6,1], -"protocol_8h.html#ab97b5b082d8b27d02cd14daeb8c9807c":[2,0,0,0,0,1,7], -"protocol_8h.html#ab97b5b082d8b27d02cd14daeb8c9807ca74908aea2df12e49a212f0b00bae1b25":[2,0,0,0,0,1,7,1], -"protocol_8h.html#ab97b5b082d8b27d02cd14daeb8c9807ca892dd3366a89802324e48987b8cb34e1":[2,0,0,0,0,1,7,2], -"protocol_8h.html#ab97b5b082d8b27d02cd14daeb8c9807caa1131d8950d9c7527cafd32ececda15d":[2,0,0,0,0,1,7,0], -"protocol_8h.html#ad7370a98d65fd20693ed58a470ec9439":[2,0,0,0,0,1,3], -"protocol_8h.html#af4e436d907dcafb14fcc88a760f75090":[2,0,0,0,0,1,2], -"protocol_8h.html#afeebe28eda25022afdc079c1aaff209c":[2,0,0,0,0,1,4], -"protocol_8h.html#afeebe28eda25022afdc079c1aaff209ca04b4a83f4d5f6af89e52b2d9cfadbb24":[2,0,0,0,0,1,4,0], -"protocol_8h.html#afeebe28eda25022afdc079c1aaff209ca0bfce7eeeb94e9fa66f051de4e0f8889":[2,0,0,0,0,1,4,1], -"protocol_8h.html#afeebe28eda25022afdc079c1aaff209caa59408252d4020dffb9cd35aa5917337":[2,0,0,0,0,1,4,2], -"protocol_8h_source.html":[2,0,0,0,0,1], -"ranges_8h.html":[2,0,0,0,1,1,0,1,0,9], -"ranges_8h.html#a1b4e06fe03b811a701e61e4edbe1489a":[2,0,0,0,1,1,0,1,0,9,18], -"ranges_8h.html#a285a2b81053ae5ac35df5f3e91a7c406":[2,0,0,0,1,1,0,1,0,9,21], -"ranges_8h.html#a2f082143e1ace9d34c362c7dd4ea4382":[2,0,0,0,1,1,0,1,0,9,17], -"ranges_8h.html#a490f83b592317611d204d1398d7002c9":[2,0,0,0,1,1,0,1,0,9,24], -"ranges_8h.html#a6b8696284389831febcd4667332cdbc9":[2,0,0,0,1,1,0,1,0,9,22], -"ranges_8h.html#a8dc7cbdab8398feda5d6c9101b4c7ecf":[2,0,0,0,1,1,0,1,0,9,30], -"ranges_8h.html#ac2b8685e665715026bb15b952f62dfb2":[2,0,0,0,1,1,0,1,0,9,23], -"ranges_8h.html#acc703652a20d8ae873e88a7cabbd9dcf":[2,0,0,0,1,1,0,1,0,9,25], -"ranges_8h.html#ad1c3ab4ad2c95d3f313323dbef5585df":[2,0,0,0,1,1,0,1,0,9,16], -"ranges_8h.html#addf63628e6f583b0a015659ddd2b832f":[2,0,0,0,1,1,0,1,0,9,27], -"ranges_8h.html#ae25e92d1db2b218f1556165324873e8c":[2,0,0,0,1,1,0,1,0,9,26], -"ranges_8h.html#aef961c9d2b2fb8caa86202923a35e1dc":[2,0,0,0,1,1,0,1,0,9,20], -"ranges_8h.html#aefa5e738c3b77c879c57b3c50a156804":[2,0,0,0,1,1,0,1,0,9,28], -"ranges_8h.html#af0be81e2ed3a56a2f61a82c0e1fa951a":[2,0,0,0,1,1,0,1,0,9,29], -"ranges_8h.html#afe980acdb2bb4cb83729a07c105159d1":[2,0,0,0,1,1,0,1,0,9,19], -"ranges_8h_source.html":[2,0,0,0,1,1,0,1,0,9], -"registry_8h.html":[2,0,0,0,1,1,0,0,12], -"registry_8h_source.html":[2,0,0,0,1,1,0,0,12], -"rotating__file__sink_8h.html":[2,0,0,0,1,1,0,2,9], -"rotating__file__sink_8h.html#a22f7ba52bed824030a97583cf1628af9":[2,0,0,0,1,1,0,2,9,3], -"rotating__file__sink_8h.html#a694eff66a11012e2fbe3fa3a1c963c96":[2,0,0,0,1,1,0,2,9,2], -"rotating__file__sink_8h.html#a70b4fab83ca180ef19c4124f4823aeaa":[2,0,0,0,1,1,0,2,9,1], -"rotating__file__sink_8h.html#a8f8f238ddac5a799696cf25e98b382e7":[2,0,0,0,1,1,0,2,9,4], -"rotating__file__sink_8h_source.html":[2,0,0,0,1,1,0,2,9], -"sink_8h.html":[2,0,0,0,1,1,0,2,10], -"sink_8h_source.html":[2,0,0,0,1,1,0,2,10], -"spdlog_8h.html":[2,0,0,0,1,1,0,8], -"spdlog_8h.html#a006a17817b05bda3778be8b78348b079":[2,0,0,0,1,1,0,8,8], -"spdlog_8h.html#a0ec6777ea7982bcf7cf85b87b0619b56":[2,0,0,0,1,1,0,8,43], -"spdlog_8h.html#a10a205c2dfdb91688e85c3f49bc671cd":[2,0,0,0,1,1,0,8,2], -"spdlog_8h.html#a29e62b80052a1440e526853d4b2c3c5c":[2,0,0,0,1,1,0,8,19], -"spdlog_8h.html#a2c623c9fadba3efc09b48dac8a3990be":[2,0,0,0,1,1,0,8,22], -"spdlog_8h.html#a2c707fb3d3d12a244ebfe3e40b417edc":[2,0,0,0,1,1,0,8,18], -"spdlog_8h.html#a306f1c2ef42ba046620bd84266ee5b24":[2,0,0,0,1,1,0,8,35], -"spdlog_8h.html#a33b888a87a0fccc7b7dd5b89413ce6b7":[2,0,0,0,1,1,0,8,15], -"spdlog_8h.html#a349fb42bd8e759a32021b46fcdaca6c6":[2,0,0,0,1,1,0,8,14], -"spdlog_8h.html#a34ab135d5bc3040c9b60e068c4f33726":[2,0,0,0,1,1,0,8,9], -"spdlog_8h.html#a38b5c05a859763c5e350e8ec3da9e328":[2,0,0,0,1,1,0,8,42], -"spdlog_8h.html#a3ee2e37859d2eee2722afc8ac26319ae":[2,0,0,0,1,1,0,8,30], -"spdlog_8h.html#a41a6d93dee0e1a8c2e6153c1fc7f59df":[2,0,0,0,1,1,0,8,45], -"spdlog_8h.html#a438c8e890e90f85ad3d832496b8a9493":[2,0,0,0,1,1,0,8,11], -"spdlog_8h.html#a4bf5ff0686233c37d6bf2233d766d3c8":[2,0,0,0,1,1,0,8,13], -"spdlog_8h.html#a638029f343e8dd2393d62288b1eb095e":[2,0,0,0,1,1,0,8,41], -"spdlog_8h.html#a658d68d4ebdb11793b1e78582f108674":[2,0,0,0,1,1,0,8,29], -"spdlog_8h.html#a70d5763d644df282a67999baf4680dde":[2,0,0,0,1,1,0,8,27], -"spdlog_8h.html#a752190d33981bd64c8a7706d3ba1bc29":[2,0,0,0,1,1,0,8,6], -"spdlog_8h.html#a753989ee0011b7d977e04a278b9380a2":[2,0,0,0,1,1,0,8,17], -"spdlog_8h.html#a7ad1ad069c196a042cb191b05d27167a":[2,0,0,0,1,1,0,8,33], -"spdlog_8h.html#a80b7c8b92e366f68d13143165b6ce271":[2,0,0,0,1,1,0,8,3], -"spdlog_8h.html#a83007016a4f374c8efcc738eee5b7290":[2,0,0,0,1,1,0,8,39], -"spdlog_8h.html#a84fc1d0e60ec7d333fd4f299f9c1e6b2":[2,0,0,0,1,1,0,8,25], -"spdlog_8h.html#a852b420dc3dd5e5193a21f61f8577e62":[2,0,0,0,1,1,0,8,16], -"spdlog_8h.html#a93c284cebdb3b3dab204f2a87344e4b5":[2,0,0,0,1,1,0,8,20], -"spdlog_8h.html#a95b9f066c4e8ad65454049bdd7f6b956":[2,0,0,0,1,1,0,8,36], -"spdlog_8h.html#a99302a3f872e2cba98f81ac1a2f63321":[2,0,0,0,1,1,0,8,44], -"spdlog_8h.html#a9e6a16853c325306188a7f6f642eba94":[2,0,0,0,1,1,0,8,21], -"spdlog_8h.html#a9f952c6a1e1114b474aff89965261a1b":[2,0,0,0,1,1,0,8,40], -"spdlog_8h.html#aa274f8a5f4f20ff435d27500ff589234":[2,0,0,0,1,1,0,8,26], -"spdlog_8h.html#aac4c18fd6ad8f9a6d9b9793220ab9e92":[2,0,0,0,1,1,0,8,12], -"spdlog_8h.html#aadd8d6a6bdd11a1c989346d4777d6c03":[2,0,0,0,1,1,0,8,10], -"spdlog_8h.html#ab1211636fc47637f4dc5ee9a18aa1bce":[2,0,0,0,1,1,0,8,24] +"pattern__formatter_8h.html":[3,0,0,0,1,1,0,0,10], +"pattern__formatter_8h.html#a1ee031fa311cd596ba390b046e75ac77":[3,0,0,0,1,1,0,0,10,46], +"pattern__formatter_8h.html#a6c1d83e70c17aa8427909d1c14bb1dc4":[3,0,0,0,1,1,0,0,10,43], +"pattern__formatter_8h.html#a94e52301ec7a1a0be693a4a971af0525":[3,0,0,0,1,1,0,0,10,45], +"pattern__formatter_8h.html#ac9a2865e6c6a61f6e3f67e57cf24d55c":[3,0,0,0,1,1,0,0,10,48], +"pattern__formatter_8h.html#ad864099fc7d08563c5cc291e2f74485a":[3,0,0,0,1,1,0,0,10,47], +"pattern__formatter_8h.html#adc1e7c142665b3801b5797f9c8b77bfa":[3,0,0,0,1,1,0,0,10,44], +"pattern__formatter_8h_source.html":[3,0,0,0,1,1,0,0,10], +"periodic__worker_8h.html":[3,0,0,0,1,1,0,0,11], +"periodic__worker_8h_source.html":[3,0,0,0,1,1,0,0,11], +"posix_8h.html":[3,0,0,0,1,1,0,1,0,7], +"posix_8h.html#a510a8bb1fab87ff109e319e8f8e35405":[3,0,0,0,1,1,0,1,0,7,10], +"posix_8h.html#a54f7e73fc1fc6ded8358c6339b51bde7":[3,0,0,0,1,1,0,1,0,7,7], +"posix_8h.html#a6fa0773ef89920062fe6ab8b6e3cf337":[3,0,0,0,1,1,0,1,0,7,4], +"posix_8h.html#a9d6790ac79298b8abd2472500422e138":[3,0,0,0,1,1,0,1,0,7,6], +"posix_8h.html#aa693a9f0c55e9b081f1ea5bf04968dd7":[3,0,0,0,1,1,0,1,0,7,5], +"posix_8h.html#acca658935a0993e7cf549b4a5be255a3":[3,0,0,0,1,1,0,1,0,7,8], +"posix_8h.html#ace4a142aff4cc70ee683b2134cc0fdff":[3,0,0,0,1,1,0,1,0,7,11], +"posix_8h.html#aefed7eb96cd309b6f9d5dab1f9fae2f6":[3,0,0,0,1,1,0,1,0,7,9], +"posix_8h_source.html":[3,0,0,0,1,1,0,1,0,7], +"printf_8h.html":[3,0,0,0,1,1,0,1,0,8], +"printf_8h.html#a00613ec467c7dd2b621ee725398b19b0":[3,0,0,0,1,1,0,1,0,8,25], +"printf_8h.html#a16cf20ac8074c751e521b5f93d5c7014":[3,0,0,0,1,1,0,1,0,8,29], +"printf_8h.html#a2a155fb47a981d3005cfac583e8de68d":[3,0,0,0,1,1,0,1,0,8,24], +"printf_8h.html#a2b685ddfe3ac9548bf7ebff220e2ccd5":[3,0,0,0,1,1,0,1,0,8,30], +"printf_8h.html#a534d02a4b06a68425c00665acd4a0df4":[3,0,0,0,1,1,0,1,0,8,26], +"printf_8h.html#a57ed2afe31b4c752383ce3f4c3636085":[3,0,0,0,1,1,0,1,0,8,20], +"printf_8h.html#a6047019507a20aa205cce7a558dcb325":[3,0,0,0,1,1,0,1,0,8,31], +"printf_8h.html#a632ed3b215b2b639a1aafff16ad7d609":[3,0,0,0,1,1,0,1,0,8,35], +"printf_8h.html#a636b8bf150967fac945ad04551c2ff1d":[3,0,0,0,1,1,0,1,0,8,22], +"printf_8h.html#a64916ff674b5c95f8364940456eb640f":[3,0,0,0,1,1,0,1,0,8,18], +"printf_8h.html#a64d11550059be9a7d0dcc73dfa9b7821":[3,0,0,0,1,1,0,1,0,8,32], +"printf_8h.html#a6689ac15e44b821c97159c1f63fc39f8":[3,0,0,0,1,1,0,1,0,8,17], +"printf_8h.html#a84a71badf9f49aae3c4698ac7690dbfc":[3,0,0,0,1,1,0,1,0,8,23], +"printf_8h.html#a875ca22a1f2292b1ce663881420906b9":[3,0,0,0,1,1,0,1,0,8,27], +"printf_8h.html#a879cac033613a1bc9bd96fe510d167d6":[3,0,0,0,1,1,0,1,0,8,19], +"printf_8h.html#a91182ac859ac969e4f719d61cad002e1":[3,0,0,0,1,1,0,1,0,8,28], +"printf_8h.html#a9628890375152b497b31614053e4c813":[3,0,0,0,1,1,0,1,0,8,34], +"printf_8h.html#acb73020810b7b8d56b3538a416d97988":[3,0,0,0,1,1,0,1,0,8,21], +"printf_8h.html#ad3b38575efbc58494272ed75b8e50d39":[3,0,0,0,1,1,0,1,0,8,33], +"printf_8h_source.html":[3,0,0,0,1,1,0,1,0,8], +"protocol_8h.html":[3,0,0,0,0,1], +"protocol_8h.html#a6941cc71243dd1b067c904fdd91bfb61":[3,0,0,0,0,1,5], +"protocol_8h.html#a6941cc71243dd1b067c904fdd91bfb61a195c6286a980061276877c88f4347a65":[3,0,0,0,0,1,5,2], +"protocol_8h.html#a6941cc71243dd1b067c904fdd91bfb61a9686d537f806d748aece1f03b523d50e":[3,0,0,0,0,1,5,1], +"protocol_8h.html#a6941cc71243dd1b067c904fdd91bfb61aac306c9b5938dac53c45dfc4fcc9c132":[3,0,0,0,0,1,5,0], +"protocol_8h.html#aa0c7b20b2866108c5e232ff70bea4820":[3,0,0,0,0,1,6], +"protocol_8h.html#aa0c7b20b2866108c5e232ff70bea4820a336a54b375b03cc744f69189037af991":[3,0,0,0,0,1,6,0], +"protocol_8h.html#aa0c7b20b2866108c5e232ff70bea4820a397580937b025c53bf21690ebeb11e7a":[3,0,0,0,0,1,6,1], +"protocol_8h.html#ab97b5b082d8b27d02cd14daeb8c9807c":[3,0,0,0,0,1,7], +"protocol_8h.html#ab97b5b082d8b27d02cd14daeb8c9807ca74908aea2df12e49a212f0b00bae1b25":[3,0,0,0,0,1,7,1], +"protocol_8h.html#ab97b5b082d8b27d02cd14daeb8c9807ca892dd3366a89802324e48987b8cb34e1":[3,0,0,0,0,1,7,2], +"protocol_8h.html#ab97b5b082d8b27d02cd14daeb8c9807caa1131d8950d9c7527cafd32ececda15d":[3,0,0,0,0,1,7,0], +"protocol_8h.html#ad7370a98d65fd20693ed58a470ec9439":[3,0,0,0,0,1,3], +"protocol_8h.html#af4e436d907dcafb14fcc88a760f75090":[3,0,0,0,0,1,2], +"protocol_8h.html#afeebe28eda25022afdc079c1aaff209c":[3,0,0,0,0,1,4], +"protocol_8h.html#afeebe28eda25022afdc079c1aaff209ca04b4a83f4d5f6af89e52b2d9cfadbb24":[3,0,0,0,0,1,4,0], +"protocol_8h.html#afeebe28eda25022afdc079c1aaff209ca0bfce7eeeb94e9fa66f051de4e0f8889":[3,0,0,0,0,1,4,1], +"protocol_8h.html#afeebe28eda25022afdc079c1aaff209caa59408252d4020dffb9cd35aa5917337":[3,0,0,0,0,1,4,2], +"protocol_8h_source.html":[3,0,0,0,0,1], +"ranges_8h.html":[3,0,0,0,1,1,0,1,0,9], +"ranges_8h.html#a1b4e06fe03b811a701e61e4edbe1489a":[3,0,0,0,1,1,0,1,0,9,18], +"ranges_8h.html#a285a2b81053ae5ac35df5f3e91a7c406":[3,0,0,0,1,1,0,1,0,9,21], +"ranges_8h.html#a2f082143e1ace9d34c362c7dd4ea4382":[3,0,0,0,1,1,0,1,0,9,17], +"ranges_8h.html#a490f83b592317611d204d1398d7002c9":[3,0,0,0,1,1,0,1,0,9,24], +"ranges_8h.html#a6b8696284389831febcd4667332cdbc9":[3,0,0,0,1,1,0,1,0,9,22], +"ranges_8h.html#a8dc7cbdab8398feda5d6c9101b4c7ecf":[3,0,0,0,1,1,0,1,0,9,30], +"ranges_8h.html#ac2b8685e665715026bb15b952f62dfb2":[3,0,0,0,1,1,0,1,0,9,23], +"ranges_8h.html#acc703652a20d8ae873e88a7cabbd9dcf":[3,0,0,0,1,1,0,1,0,9,25], +"ranges_8h.html#ad1c3ab4ad2c95d3f313323dbef5585df":[3,0,0,0,1,1,0,1,0,9,16], +"ranges_8h.html#addf63628e6f583b0a015659ddd2b832f":[3,0,0,0,1,1,0,1,0,9,27], +"ranges_8h.html#ae25e92d1db2b218f1556165324873e8c":[3,0,0,0,1,1,0,1,0,9,26], +"ranges_8h.html#aef961c9d2b2fb8caa86202923a35e1dc":[3,0,0,0,1,1,0,1,0,9,20], +"ranges_8h.html#aefa5e738c3b77c879c57b3c50a156804":[3,0,0,0,1,1,0,1,0,9,28], +"ranges_8h.html#af0be81e2ed3a56a2f61a82c0e1fa951a":[3,0,0,0,1,1,0,1,0,9,29], +"ranges_8h.html#afe980acdb2bb4cb83729a07c105159d1":[3,0,0,0,1,1,0,1,0,9,19], +"ranges_8h_source.html":[3,0,0,0,1,1,0,1,0,9], +"registry_8h.html":[3,0,0,0,1,1,0,0,12], +"registry_8h_source.html":[3,0,0,0,1,1,0,0,12], +"rotating__file__sink_8h.html":[3,0,0,0,1,1,0,2,9], +"rotating__file__sink_8h.html#a22f7ba52bed824030a97583cf1628af9":[3,0,0,0,1,1,0,2,9,3], +"rotating__file__sink_8h.html#a694eff66a11012e2fbe3fa3a1c963c96":[3,0,0,0,1,1,0,2,9,2], +"rotating__file__sink_8h.html#a70b4fab83ca180ef19c4124f4823aeaa":[3,0,0,0,1,1,0,2,9,1], +"rotating__file__sink_8h.html#a8f8f238ddac5a799696cf25e98b382e7":[3,0,0,0,1,1,0,2,9,4], +"rotating__file__sink_8h_source.html":[3,0,0,0,1,1,0,2,9], +"sink_8h.html":[3,0,0,0,1,1,0,2,10], +"sink_8h_source.html":[3,0,0,0,1,1,0,2,10], +"spdlog_8h.html":[3,0,0,0,1,1,0,8], +"spdlog_8h.html#a006a17817b05bda3778be8b78348b079":[3,0,0,0,1,1,0,8,8], +"spdlog_8h.html#a0ec6777ea7982bcf7cf85b87b0619b56":[3,0,0,0,1,1,0,8,43], +"spdlog_8h.html#a10a205c2dfdb91688e85c3f49bc671cd":[3,0,0,0,1,1,0,8,2], +"spdlog_8h.html#a29e62b80052a1440e526853d4b2c3c5c":[3,0,0,0,1,1,0,8,19], +"spdlog_8h.html#a2c623c9fadba3efc09b48dac8a3990be":[3,0,0,0,1,1,0,8,22], +"spdlog_8h.html#a2c707fb3d3d12a244ebfe3e40b417edc":[3,0,0,0,1,1,0,8,18], +"spdlog_8h.html#a306f1c2ef42ba046620bd84266ee5b24":[3,0,0,0,1,1,0,8,35], +"spdlog_8h.html#a33b888a87a0fccc7b7dd5b89413ce6b7":[3,0,0,0,1,1,0,8,15], +"spdlog_8h.html#a349fb42bd8e759a32021b46fcdaca6c6":[3,0,0,0,1,1,0,8,14], +"spdlog_8h.html#a34ab135d5bc3040c9b60e068c4f33726":[3,0,0,0,1,1,0,8,9], +"spdlog_8h.html#a38b5c05a859763c5e350e8ec3da9e328":[3,0,0,0,1,1,0,8,42], +"spdlog_8h.html#a3ee2e37859d2eee2722afc8ac26319ae":[3,0,0,0,1,1,0,8,30], +"spdlog_8h.html#a41a6d93dee0e1a8c2e6153c1fc7f59df":[3,0,0,0,1,1,0,8,45], +"spdlog_8h.html#a438c8e890e90f85ad3d832496b8a9493":[3,0,0,0,1,1,0,8,11], +"spdlog_8h.html#a4bf5ff0686233c37d6bf2233d766d3c8":[3,0,0,0,1,1,0,8,13], +"spdlog_8h.html#a638029f343e8dd2393d62288b1eb095e":[3,0,0,0,1,1,0,8,41], +"spdlog_8h.html#a658d68d4ebdb11793b1e78582f108674":[3,0,0,0,1,1,0,8,29], +"spdlog_8h.html#a70d5763d644df282a67999baf4680dde":[3,0,0,0,1,1,0,8,27], +"spdlog_8h.html#a752190d33981bd64c8a7706d3ba1bc29":[3,0,0,0,1,1,0,8,6], +"spdlog_8h.html#a753989ee0011b7d977e04a278b9380a2":[3,0,0,0,1,1,0,8,17], +"spdlog_8h.html#a7ad1ad069c196a042cb191b05d27167a":[3,0,0,0,1,1,0,8,33], +"spdlog_8h.html#a80b7c8b92e366f68d13143165b6ce271":[3,0,0,0,1,1,0,8,3], +"spdlog_8h.html#a83007016a4f374c8efcc738eee5b7290":[3,0,0,0,1,1,0,8,39], +"spdlog_8h.html#a84fc1d0e60ec7d333fd4f299f9c1e6b2":[3,0,0,0,1,1,0,8,25], +"spdlog_8h.html#a852b420dc3dd5e5193a21f61f8577e62":[3,0,0,0,1,1,0,8,16], +"spdlog_8h.html#a93c284cebdb3b3dab204f2a87344e4b5":[3,0,0,0,1,1,0,8,20], +"spdlog_8h.html#a95b9f066c4e8ad65454049bdd7f6b956":[3,0,0,0,1,1,0,8,36], +"spdlog_8h.html#a99302a3f872e2cba98f81ac1a2f63321":[3,0,0,0,1,1,0,8,44], +"spdlog_8h.html#a9e6a16853c325306188a7f6f642eba94":[3,0,0,0,1,1,0,8,21], +"spdlog_8h.html#a9f952c6a1e1114b474aff89965261a1b":[3,0,0,0,1,1,0,8,40], +"spdlog_8h.html#aa274f8a5f4f20ff435d27500ff589234":[3,0,0,0,1,1,0,8,26], +"spdlog_8h.html#aac4c18fd6ad8f9a6d9b9793220ab9e92":[3,0,0,0,1,1,0,8,12], +"spdlog_8h.html#aadd8d6a6bdd11a1c989346d4777d6c03":[3,0,0,0,1,1,0,8,10] }; diff --git a/docs/navtreeindex8.js b/docs/navtreeindex8.js index 266f360..cdf7103 100644 --- a/docs/navtreeindex8.js +++ b/docs/navtreeindex8.js @@ -1,253 +1,253 @@ var NAVTREEINDEX8 = { -"spdlog_8h.html#ab3df0dca3174a057e99fc327e8c25c57":[2,0,0,0,1,1,0,8,46], -"spdlog_8h.html#ab508bba15a80b3e7a909ed867d3b9320":[2,0,0,0,1,1,0,8,7], -"spdlog_8h.html#ab8a13bd805e706298e1e396ee5ac93bb":[2,0,0,0,1,1,0,8,37], -"spdlog_8h.html#ac123bf94c2532584c1f53a4cde7a27e2":[2,0,0,0,1,1,0,8,4], -"spdlog_8h.html#acc4ad5305b408c41a60540b0e2a8aa85":[2,0,0,0,1,1,0,8,32], -"spdlog_8h.html#ad68b6f9b65e1e8daab0117d75f0c39b4":[2,0,0,0,1,1,0,8,31], -"spdlog_8h.html#ae91dad63ce8e0f912ff58cdd62f60981":[2,0,0,0,1,1,0,8,1], -"spdlog_8h.html#aee9d401c7cb3cd8538a139af836c5ec5":[2,0,0,0,1,1,0,8,34], -"spdlog_8h.html#af2ec5792fb30798cf285da36cb5c9377":[2,0,0,0,1,1,0,8,23], -"spdlog_8h.html#af73a1f32ac61071d1e792ca26ec83e4b":[2,0,0,0,1,1,0,8,5], -"spdlog_8h.html#afac55b239302064cba773add59b635d1":[2,0,0,0,1,1,0,8,28], -"spdlog_8h.html#aff4886a7bf8585815d8fd1f819f91be0":[2,0,0,0,1,1,0,8,38], -"spdlog_8h_source.html":[2,0,0,0,1,1,0,8], -"stdout__color__sinks_8h.html":[2,0,0,0,1,1,0,2,11], -"stdout__color__sinks_8h.html#a1d20b70d425e5402b3fa6a1b075d1c6d":[2,0,0,0,1,1,0,2,11,7], -"stdout__color__sinks_8h.html#a5564a799e789be1856d238b0d91ecadb":[2,0,0,0,1,1,0,2,11,5], -"stdout__color__sinks_8h.html#a58091bb55dd96f7e29ccc044338c054c":[2,0,0,0,1,1,0,2,11,0], -"stdout__color__sinks_8h.html#a903467b7174af13d10f2f29ae9bd4a6e":[2,0,0,0,1,1,0,2,11,6], -"stdout__color__sinks_8h.html#ab4647f73157c2a5647097e993eb648f5":[2,0,0,0,1,1,0,2,11,4], -"stdout__color__sinks_8h.html#adf8d38fe4201bc8f4b5255c4fbea7aae":[2,0,0,0,1,1,0,2,11,1], -"stdout__color__sinks_8h.html#ae3eb6549df72c3c46dea34fd35fee93e":[2,0,0,0,1,1,0,2,11,3], -"stdout__color__sinks_8h.html#af5b53d274a7f3e3528ef994035cc7204":[2,0,0,0,1,1,0,2,11,2], -"stdout__color__sinks_8h_source.html":[2,0,0,0,1,1,0,2,11], -"stdout__sinks_8h.html":[2,0,0,0,1,1,0,2,12], -"stdout__sinks_8h.html#a029d085d53a8f4ee99ba223f34bcfb28":[2,0,0,0,1,1,0,2,12,3], -"stdout__sinks_8h.html#a5b0d86b010b11ceb3941265779c7998e":[2,0,0,0,1,1,0,2,12,8], -"stdout__sinks_8h.html#a93e154fd1e2eb0dc5a82fb25ce7f11d1":[2,0,0,0,1,1,0,2,12,5], -"stdout__sinks_8h.html#a98a1a892c6c8f44d89f2ec13e8a7f2c4":[2,0,0,0,1,1,0,2,12,4], -"stdout__sinks_8h.html#a9a6a99d3309b166a585fe918bd83a442":[2,0,0,0,1,1,0,2,12,7], -"stdout__sinks_8h.html#ac7f13feb3827330eb5b5c1998356c798":[2,0,0,0,1,1,0,2,12,2], -"stdout__sinks_8h.html#ad2b234c875e76840785f02b189c0d514":[2,0,0,0,1,1,0,2,12,6], -"stdout__sinks_8h.html#afa13b9dbe3db99f4112b17a310dc26de":[2,0,0,0,1,1,0,2,12,1], -"stdout__sinks_8h_source.html":[2,0,0,0,1,1,0,2,12], -"struct_broadcast_device_info.html":[1,0,4], -"struct_broadcast_device_info.html#a4aa57f62efdd8c0c1ebbf45fb2e5d4f9":[1,0,4,1], -"struct_broadcast_device_info.html#a7564c9b360647ac5a0b982612f89a773":[1,0,4,0], -"struct_broadcast_device_info.html#abc9a813e11ebeebeaf937b34090f3620":[1,0,4,2], -"struct_connected_lidar_info.html":[1,0,5], -"struct_connected_lidar_info.html#a0a2c04b55c719f4f719de502ada83b74":[1,0,5,2], -"struct_connected_lidar_info.html#a0d7bbe9083fbb2746eca67d6d9eddf9a":[1,0,5,3], -"struct_connected_lidar_info.html#a0e349a8cef82212da0d7116cb37b5fdd":[1,0,5,0], -"struct_connected_lidar_info.html#a1516c8ab627363ff3a2224f5ee142226":[1,0,5,4], -"struct_connected_lidar_info.html#a761199df36d30b25dbc40cf60f954601":[1,0,5,1], -"struct_device_broadcast_code.html":[1,0,6], -"struct_device_broadcast_code.html#a92b5ee4638f09060bf3d1d8322619229":[1,0,6,0], -"struct_device_info.html":[1,0,7], -"struct_device_info.html#a1025610698d5ebb8748e420b0dc0f827":[1,0,7,5], -"struct_device_info.html#a173c3d6efff370751f0027749c253b68":[1,0,7,7], -"struct_device_info.html#a1b37aee8b847070b66924d772d1d7edf":[1,0,7,9], -"struct_device_info.html#a1ddd6dc50ae7fe4230b3fa0e2644fb60":[1,0,7,3], -"struct_device_info.html#a2ae13df05166a303b5ba98ff8dd2510f":[1,0,7,4], -"struct_device_info.html#a357578f75cb2efc7cac146ea807810dd":[1,0,7,8], -"struct_device_info.html#aa3d0a3e3476880be7d9735fc91929024":[1,0,7,2], -"struct_device_info.html#aac0da89d608c3395b193adf4fd5bd3f3":[1,0,7,6], -"struct_device_info.html#abb8bbc33f437058af59aa6611137b2f1":[1,0,7,1], -"struct_device_info.html#ac176ce6c12803b25c3aedf6b65af90ca":[1,0,7,0], -"struct_device_info.html#af9a47cb52e6df99dd0705a6b2bfa8f04":[1,0,7,10], -"struct_device_information_response.html":[1,0,8], -"struct_device_information_response.html#a3c12af3f01b1baac1888070a4d08cbff":[1,0,8,0], -"struct_device_information_response.html#a9e625ec596c65c24d3c1d229a9785c72":[1,0,8,1], -"struct_error_message.html":[1,0,9], -"struct_error_message.html#a04ae86448632fb4321a84f69f546666c":[1,0,9,0], -"struct_extrinsic_parameter_request_item.html":[1,0,10], -"struct_extrinsic_parameter_request_item.html#a90eac1f729d93943a5ea8da0a174ba59":[1,0,10,1], -"struct_extrinsic_parameter_request_item.html#ad2395a7b51996e0ef6f8e8b7d3113185":[1,0,10,4], -"struct_extrinsic_parameter_request_item.html#ae61cb309fff8dd1eb96f56b78dd43b75":[1,0,10,5], -"struct_extrinsic_parameter_request_item.html#ae6282ea34d55b9f40a75dc45be853429":[1,0,10,6], -"struct_extrinsic_parameter_request_item.html#aeaa77f9da3a5df1ecc36c93641241942":[1,0,10,0], -"struct_extrinsic_parameter_request_item.html#af5c895c062c9059cb1ea5d133e239061":[1,0,10,3], -"struct_extrinsic_parameter_request_item.html#af5d441ccf6ec53035b7ef76a37a012bc":[1,0,10,2], -"struct_extrinsic_parameter_response_item.html":[1,0,11], -"struct_extrinsic_parameter_response_item.html#a0039b1c815784533f656d5e53a22de8e":[1,0,11,7], -"struct_extrinsic_parameter_response_item.html#a0651e41de730be277c4cc29902a0d711":[1,0,11,2], -"struct_extrinsic_parameter_response_item.html#a10a52148b1281622da70e95053d4f1ab":[1,0,11,1], -"struct_extrinsic_parameter_response_item.html#a2d44941ee40e4b84dab880d8a23fb3a6":[1,0,11,3], -"struct_extrinsic_parameter_response_item.html#a80e3e05dceb68adf7a9bd847bd35329a":[1,0,11,6], -"struct_extrinsic_parameter_response_item.html#ab22d94ca17e363344d9dfd43fd7d81c9":[1,0,11,0], -"struct_extrinsic_parameter_response_item.html#ac72c9a74a72fa08ad428395a869720ef":[1,0,11,5], -"struct_extrinsic_parameter_response_item.html#ae7d9f155e506db616a87dbad50815d96":[1,0,11,4], -"struct_get_device_i_p_mode_response.html":[1,0,14], -"struct_get_device_i_p_mode_response.html#a1a1f3158df48b991d5ddac05e587638f":[1,0,14,0], -"struct_get_device_i_p_mode_response.html#a3eff4056a851a546b2185ce750b5bb30":[1,0,14,2], -"struct_get_device_i_p_mode_response.html#a83324ae62a3393f8f3c260ebf4a7629b":[1,0,14,1], -"struct_handshake_request.html":[1,0,15], -"struct_handshake_request.html#a67402bc326594c44575780e7b767e47a":[1,0,15,2], -"struct_handshake_request.html#a6a7a7ba0f5b928481ab263c6216af37b":[1,0,15,0], -"struct_handshake_request.html#a6e38ca96eeba69cdcc7a2544cbe347e1":[1,0,15,1], -"struct_heartbeat_response.html":[1,0,16], -"struct_heartbeat_response.html#a0fde073a495b78506b341d3e72e990ba":[1,0,16,0], -"struct_heartbeat_response.html#a4813706674e2312b2132151f7688ff22":[1,0,16,1], -"struct_heartbeat_response.html#a7a0d09ada36c1e0c785920017211eada":[1,0,16,2], -"struct_heartbeat_response.html#a9bd7edacb896d6e2a5419ff536ab1ed3":[1,0,16,3], -"struct_hub_control_slot_power_request.html":[1,0,17], -"struct_hub_control_slot_power_request.html#a459b32034785ea441ec930f14e696bcd":[1,0,17,0], -"struct_hub_control_slot_power_request.html#ae682b9d8763fa13bb5b8c85a44b6265f":[1,0,17,1], -"struct_hub_get_extrinsic_parameter_request.html":[1,0,18], -"struct_hub_get_extrinsic_parameter_request.html#a30257b6481b394e07c28a5be493e5c4f":[1,0,18,0], -"struct_hub_get_extrinsic_parameter_request.html#a411353af6f79a0ecca12b8c7f106f322":[1,0,18,1], -"struct_hub_get_extrinsic_parameter_response.html":[1,0,19], -"struct_hub_get_extrinsic_parameter_response.html#a07b82bb424aed94e3d0e0d8be1adf085":[1,0,19,2], -"struct_hub_get_extrinsic_parameter_response.html#abbb3f28dee7df501c191cffb9151beea":[1,0,19,1], -"struct_hub_get_extrinsic_parameter_response.html#ad0f3a2cd721c3dea6999799a02f5b3ce":[1,0,19,0], -"struct_hub_query_lidar_information_response.html":[1,0,20], -"struct_hub_query_lidar_information_response.html#a44e0516899b3d5ff069d6cadf5380761":[1,0,20,1], -"struct_hub_query_lidar_information_response.html#a914cc326363ded18efb18a0b321a97b4":[1,0,20,2], -"struct_hub_query_lidar_information_response.html#aeef7d6cc430c1c408287f029ad9cf67d":[1,0,20,0], -"struct_hub_query_lidar_status_response.html":[1,0,21], -"struct_hub_query_lidar_status_response.html#a28cda59b09ddbb0adeeb82ba59e8043b":[1,0,21,1], -"struct_hub_query_lidar_status_response.html#a2f4895d58ae7d62f62eabbe710ee6f57":[1,0,21,2], -"struct_hub_query_lidar_status_response.html#a6059f781c5eef3231def143ad1b9490b":[1,0,21,0], -"struct_hub_rain_fog_suppress_request.html":[1,0,22], -"struct_hub_rain_fog_suppress_request.html#a3f14c799e8f96e2897c65191c96973ec":[1,0,22,0], -"struct_hub_rain_fog_suppress_request.html#ab24efdb9e34e6d09edf39526225b0e15":[1,0,22,1], -"struct_hub_rain_fog_suppress_response.html":[1,0,23], -"struct_hub_rain_fog_suppress_response.html#a189ce6c8031a2d326f6317108c2c8269":[1,0,23,1], -"struct_hub_rain_fog_suppress_response.html#a3e070f7d0477cf0ccf8fc8161fe8d9d3":[1,0,23,0], -"struct_hub_rain_fog_suppress_response.html#ad95528d299ac14e975932752d27fe59a":[1,0,23,2], -"struct_hub_set_extrinsic_parameter_request.html":[1,0,24], -"struct_hub_set_extrinsic_parameter_request.html#a99dcdcfcadd639e7b341f03f36ba8a88":[1,0,24,0], -"struct_hub_set_extrinsic_parameter_request.html#a9dc2a94df678e4337c83767419e4f734":[1,0,24,1], -"struct_hub_set_extrinsic_parameter_response.html":[1,0,25], -"struct_hub_set_extrinsic_parameter_response.html#a41076bb2abf1e04ef490fd910964643d":[1,0,25,0], -"struct_hub_set_extrinsic_parameter_response.html#a4f887dc5ff42061da54bb8f56f06eabe":[1,0,25,1], -"struct_hub_set_extrinsic_parameter_response.html#aefd242daf07ddff079b88119e809252e":[1,0,25,2], -"struct_hub_set_mode_request.html":[1,0,26], -"struct_hub_set_mode_request.html#a288defb8dd0478bc52b8cdd9a6315c27":[1,0,26,0], -"struct_hub_set_mode_request.html#a74ea714230b28433f927565c98305292":[1,0,26,1], -"struct_hub_set_mode_response.html":[1,0,27], -"struct_hub_set_mode_response.html#a1fc69cbcf14b212987fc3a6408f5515f":[1,0,27,2], -"struct_hub_set_mode_response.html#a737a969dcc4bb59f45aa4c0a842d50d3":[1,0,27,0], -"struct_hub_set_mode_response.html#a8f39d0bb5b2950409fd760471ea14806":[1,0,27,1], -"struct_lidar_get_extrinsic_parameter_response.html":[1,0,28], -"struct_lidar_get_extrinsic_parameter_response.html#a3fa936c4d0e24b4441a722c2b6b65fd4":[1,0,28,4], -"struct_lidar_get_extrinsic_parameter_response.html#a452bec545768ac85c3a3276d553fd538":[1,0,28,2], -"struct_lidar_get_extrinsic_parameter_response.html#a8f5ae9799b044b30a17a9b7878f88716":[1,0,28,6], -"struct_lidar_get_extrinsic_parameter_response.html#aa8637fe0f80e9c8976100458249e72be":[1,0,28,1], -"struct_lidar_get_extrinsic_parameter_response.html#adafd0fca99f28c8087b87aad78dace06":[1,0,28,5], -"struct_lidar_get_extrinsic_parameter_response.html#adc48af745aa3f0fec63be171f96684db":[1,0,28,3], -"struct_lidar_get_extrinsic_parameter_response.html#aee7829f9548f6e897face41560873e7c":[1,0,28,0], -"struct_lidar_mode_request_item.html":[1,0,29], -"struct_lidar_mode_request_item.html#a083aff14314c3edf21066dc6eff69c05":[1,0,29,1], -"struct_lidar_mode_request_item.html#a608649769c4b601a2499f61cd0965e0b":[1,0,29,0], -"struct_lidar_set_extrinsic_parameter_request.html":[1,0,30], -"struct_lidar_set_extrinsic_parameter_request.html#a3e7fd95f3691bdcaa9d8ed016a5463ae":[1,0,30,3], -"struct_lidar_set_extrinsic_parameter_request.html#a52e1efe159b3c5886cfaeb08d3baabb0":[1,0,30,4], -"struct_lidar_set_extrinsic_parameter_request.html#a80fc49ccc2943501b4706c004e3a8cd8":[1,0,30,5], -"struct_lidar_set_extrinsic_parameter_request.html#aa2719d36a514d8f97c39f0da3f0449d0":[1,0,30,1], -"struct_lidar_set_extrinsic_parameter_request.html#ac6bdec3885bfe5670389f5b40cd9d9ef":[1,0,30,0], -"struct_lidar_set_extrinsic_parameter_request.html#af15b6387a525382ffefaf65ed6248e6c":[1,0,30,2], -"struct_lidar_state_item.html":[1,0,31], -"struct_lidar_state_item.html#a080194488c4deceba37fef91c9124f16":[1,0,31,1], -"struct_lidar_state_item.html#a2faf99b3e6f31c613fd7d5c1d76444f7":[1,0,31,3], -"struct_lidar_state_item.html#a42089310e0005a55e89fe97bdca1dacb":[1,0,31,0], -"struct_lidar_state_item.html#a9f20d10119d28df0163702b25513367b":[1,0,31,2], -"struct_livox_eth_packet.html":[1,0,32], -"struct_livox_eth_packet.html#a0ee766e1efde1b362cb10ad3c5a489ce":[1,0,32,6], -"struct_livox_eth_packet.html#a54a66559fe0ec191d5d11fca61fd3dd1":[1,0,32,8], -"struct_livox_eth_packet.html#a8a474f23d910eed792e7ad98914dfe7c":[1,0,32,0], -"struct_livox_eth_packet.html#aa2694b179be57520cf2173b0c680d58d":[1,0,32,7], -"struct_livox_eth_packet.html#abd6d282748a4cd8c11853afae5d456ae":[1,0,32,1], -"struct_livox_eth_packet.html#acb370bd12205bd9d4218d264fdf81e52":[1,0,32,3], -"struct_livox_eth_packet.html#ae37415fbbf43c6ded2b4c03179fcc326":[1,0,32,5], -"struct_livox_eth_packet.html#ae786d26c1650fd52f245795cabe659e1":[1,0,32,4], -"struct_livox_eth_packet.html#aefcc74089cdc678cf2e43157f01890dd":[1,0,32,2], -"struct_livox_point.html":[1,0,33], -"struct_livox_point.html#a28ad3332bba82317c04fb3063ecc1c86":[1,0,33,2], -"struct_livox_point.html#a6a29cf468c61e20cb34e8b46687b9092":[1,0,33,0], -"struct_livox_point.html#aa3f338bfc60815306204df82ad86d8dc":[1,0,33,1], -"struct_livox_point.html#af2cd18d88bc85941740eae6e09b88d70":[1,0,33,3], -"struct_livox_raw_point.html":[1,0,34], -"struct_livox_raw_point.html#a0b4212969df96a0f697f55738c9a0444":[1,0,34,2], -"struct_livox_raw_point.html#a1026beb1f1729bdc38e06edf11bb06e0":[1,0,34,3], -"struct_livox_raw_point.html#a1c58c82c33e06f4d80490ddd1285d926":[1,0,34,0], -"struct_livox_raw_point.html#a9ebad707b8d7f23627b9542f6023a359":[1,0,34,1], -"struct_livox_sdk_version.html":[1,0,35], -"struct_livox_sdk_version.html#a0099180644f0153f57b0a67f0a96d1ac":[1,0,35,0], -"struct_livox_sdk_version.html#a6bbcc9b12aa6c3aed826600325a57e46":[1,0,35,1], -"struct_livox_sdk_version.html#a93dd2938e447a72dfb71e454c97cdaa6":[1,0,35,2], -"struct_rain_fog_suppress_request_item.html":[1,0,36], -"struct_rain_fog_suppress_request_item.html#aa8cf24d5a1d3a6067ce68887fdf0a6dd":[1,0,36,1], -"struct_rain_fog_suppress_request_item.html#ae533c935fdd671d704ab1f9419795eab":[1,0,36,0], -"struct_return_code.html":[1,0,37], -"struct_return_code.html#a6009b33a757ec7864e0b77a40b42b8c9":[1,0,37,0], -"struct_return_code.html#abda96609396b9cf80e4449efb974e920":[1,0,37,1], -"struct_set_device_i_p_mode_request.html":[1,0,38], -"struct_set_device_i_p_mode_request.html#ab89c04174027155c655a196d383f2964":[1,0,38,0], -"struct_set_device_i_p_mode_request.html#ac49e954a2dea9fcd6fc1cae0162e3f89":[1,0,38,1], -"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html":[1,0,0,1], -"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a0974264e6edcc83c7c191f34d2ce4781":[1,0,0,1,8], -"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a0997eb476f830eb211f3d17777079d7d":[1,0,0,1,7], -"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a23665231993cdeb323a86ecb9a7a63a1":[1,0,0,1,0], -"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a6f28abac88c19077023abaadd2d3315f":[1,0,0,1,6], -"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#aae6b62746bc315b2927199438ba2f87a":[1,0,0,1,4], -"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ada366ec2d0f00fa94560551fdbbbb640":[1,0,0,1,1], -"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ae001a71b76b4a56f722a7b91c506e9bf":[1,0,0,1,2], -"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ae269e1463930629ea37d0d93d0d726c5":[1,0,0,1,3], -"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#aec694b471eae3bc7d0a1d4487579721c":[1,0,0,1,5], -"structfmt_1_1v5_1_1align__spec.html":[1,0,0,0,1], -"structfmt_1_1v5_1_1align__spec.html#a0ead63b1fb62d8c631d5df7ca495b725":[1,0,0,0,1,2], -"structfmt_1_1v5_1_1align__spec.html#a5c40750e67850f9e430ac1278890f96d":[1,0,0,0,1,4], -"structfmt_1_1v5_1_1align__spec.html#a74632126deecb543f2e2d08ad0d52d1c":[1,0,0,0,1,0], -"structfmt_1_1v5_1_1align__spec.html#a8223f56be615c31d47e588ac36690aee":[1,0,0,0,1,6], -"structfmt_1_1v5_1_1align__spec.html#a92983d89f72ee0790963927e651c50f6":[1,0,0,0,1,3], -"structfmt_1_1v5_1_1align__spec.html#a970282b2f4fa19d907a7067d905304a7":[1,0,0,0,1,1], -"structfmt_1_1v5_1_1align__spec.html#ac7badcecfcb9d58db73d06eee0888fbe":[1,0,0,0,1,5], -"structfmt_1_1v5_1_1arg__join.html":[1,0,0,0,3], -"structfmt_1_1v5_1_1arg__join.html#a51f66865c2e307da6d7d1f98a78fda59":[1,0,0,0,3,1], -"structfmt_1_1v5_1_1arg__join.html#a547d8479ecf6206c1931419886574729":[1,0,0,0,3,3], -"structfmt_1_1v5_1_1arg__join.html#a6d52e78c112984ea0d5a0344d8be2ae4":[1,0,0,0,3,0], -"structfmt_1_1v5_1_1arg__join.html#aea138338c02d417a0633ecebd019e890":[1,0,0,0,3,2], -"structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html":[1,0,0,0,8,0], -"structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html#a14ceeeb9b78679fea87df36298fc5603":[1,0,0,0,8,0,0], -"structfmt_1_1v5_1_1basic__format__specs.html":[1,0,0,0,9], -"structfmt_1_1v5_1_1basic__format__specs.html#a3eea365872084949e7a8e14c7d7131f7":[1,0,0,0,9,0], -"structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html":[1,0,0,0,12,0], -"structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html#ad84f4ee9d13cc381c864382cae010501":[1,0,0,0,12,0,0], -"structfmt_1_1v5_1_1basic__printf__context__t.html":[1,0,0,0,13], -"structfmt_1_1v5_1_1basic__printf__context__t.html#ae71e6b5fec9b62fb22733b5f40ed5d23":[1,0,0,0,13,0], -"structfmt_1_1v5_1_1buffer__context.html":[1,0,0,0,16], -"structfmt_1_1v5_1_1buffer__context.html#ac7c75596798b17dd1e05f905bf74b619":[1,0,0,0,16,0], -"structfmt_1_1v5_1_1char__t.html":[1,0,0,0,18], -"structfmt_1_1v5_1_1compile__string.html":[1,0,0,0,19], -"structfmt_1_1v5_1_1convert__to__int.html":[1,0,0,0,20], -"structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html":[1,0,0,0,21], -"structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html#a403828199f69d91f17e0dd2cd0b0026f":[1,0,0,0,21,0], -"structfmt_1_1v5_1_1core__format__specs.html":[1,0,0,0,22], -"structfmt_1_1v5_1_1core__format__specs.html#a08766778b893b5a8057b9580db36da9c":[1,0,0,0,22,2], -"structfmt_1_1v5_1_1core__format__specs.html#a445855f2d6d7886e1afb26e570618c47":[1,0,0,0,22,3], -"structfmt_1_1v5_1_1core__format__specs.html#a721c8bd2bf91d00f04dc6ef6fcc0189a":[1,0,0,0,22,1], -"structfmt_1_1v5_1_1core__format__specs.html#ae8225c1b5ab54383472fed40c9ccf4b6":[1,0,0,0,22,4], -"structfmt_1_1v5_1_1core__format__specs.html#af2f270216f9f408f402e94ad1033fe26":[1,0,0,0,22,0], -"structfmt_1_1v5_1_1float__spec__handler.html":[1,0,0,0,26], -"structfmt_1_1v5_1_1float__spec__handler.html#a08c5f4af9e7376bd3e21f6cc89b6b7a6":[1,0,0,0,26,2], -"structfmt_1_1v5_1_1float__spec__handler.html#a3017f14a9d0c5b1d84d2929e3aef1735":[1,0,0,0,26,7], -"structfmt_1_1v5_1_1float__spec__handler.html#a44813c139c2754dcf56294433728ca44":[1,0,0,0,26,1], -"structfmt_1_1v5_1_1float__spec__handler.html#a47c600fba7735d313592f3cbf97c5fe8":[1,0,0,0,26,5], -"structfmt_1_1v5_1_1float__spec__handler.html#a48e693571ddc346ae7fae88fe7902932":[1,0,0,0,26,6], -"structfmt_1_1v5_1_1float__spec__handler.html#a6cb6583cc6285ffa6fc492ff0862d4e3":[1,0,0,0,26,0], -"structfmt_1_1v5_1_1float__spec__handler.html#a9ca4fbeb01db2a21cd1ce54a1e7d179c":[1,0,0,0,26,4], -"structfmt_1_1v5_1_1float__spec__handler.html#ace39bc5327e1dfafaff796b1e7cdd3df":[1,0,0,0,26,3], -"structfmt_1_1v5_1_1format__args.html":[1,0,0,0,28], -"structfmt_1_1v5_1_1format__args.html#aa80cbbec78d4fe88a77d437d18ba4d18":[1,0,0,0,28,0], -"structfmt_1_1v5_1_1format__args__t.html":[1,0,0,0,29], -"structfmt_1_1v5_1_1format__args__t.html#aa4f31b5332a6cdd12d1b7a7e766770dd":[1,0,0,0,29,0], -"structfmt_1_1v5_1_1format__context__t.html":[1,0,0,0,30], -"structfmt_1_1v5_1_1format__context__t.html#a3a779c0aeb8ba0ea1aed0b8c3b3b53c1":[1,0,0,0,30,0], -"structfmt_1_1v5_1_1format__handler.html":[1,0,0,0,32], -"structfmt_1_1v5_1_1format__handler.html#a10f0bb03d362ecb21a688778230e2925":[1,0,0,0,32,5], -"structfmt_1_1v5_1_1format__handler.html#a32a2f523495547bcd97610b62d01a610":[1,0,0,0,32,4], -"structfmt_1_1v5_1_1format__handler.html#a717e330f9b9cfa519cbf97e5e2a81add":[1,0,0,0,32,0] +"spdlog_8h.html#ab1211636fc47637f4dc5ee9a18aa1bce":[3,0,0,0,1,1,0,8,24], +"spdlog_8h.html#ab3df0dca3174a057e99fc327e8c25c57":[3,0,0,0,1,1,0,8,46], +"spdlog_8h.html#ab508bba15a80b3e7a909ed867d3b9320":[3,0,0,0,1,1,0,8,7], +"spdlog_8h.html#ab8a13bd805e706298e1e396ee5ac93bb":[3,0,0,0,1,1,0,8,37], +"spdlog_8h.html#ac123bf94c2532584c1f53a4cde7a27e2":[3,0,0,0,1,1,0,8,4], +"spdlog_8h.html#acc4ad5305b408c41a60540b0e2a8aa85":[3,0,0,0,1,1,0,8,32], +"spdlog_8h.html#ad68b6f9b65e1e8daab0117d75f0c39b4":[3,0,0,0,1,1,0,8,31], +"spdlog_8h.html#ae91dad63ce8e0f912ff58cdd62f60981":[3,0,0,0,1,1,0,8,1], +"spdlog_8h.html#aee9d401c7cb3cd8538a139af836c5ec5":[3,0,0,0,1,1,0,8,34], +"spdlog_8h.html#af2ec5792fb30798cf285da36cb5c9377":[3,0,0,0,1,1,0,8,23], +"spdlog_8h.html#af73a1f32ac61071d1e792ca26ec83e4b":[3,0,0,0,1,1,0,8,5], +"spdlog_8h.html#afac55b239302064cba773add59b635d1":[3,0,0,0,1,1,0,8,28], +"spdlog_8h.html#aff4886a7bf8585815d8fd1f819f91be0":[3,0,0,0,1,1,0,8,38], +"spdlog_8h_source.html":[3,0,0,0,1,1,0,8], +"stdout__color__sinks_8h.html":[3,0,0,0,1,1,0,2,11], +"stdout__color__sinks_8h.html#a1d20b70d425e5402b3fa6a1b075d1c6d":[3,0,0,0,1,1,0,2,11,7], +"stdout__color__sinks_8h.html#a5564a799e789be1856d238b0d91ecadb":[3,0,0,0,1,1,0,2,11,5], +"stdout__color__sinks_8h.html#a58091bb55dd96f7e29ccc044338c054c":[3,0,0,0,1,1,0,2,11,0], +"stdout__color__sinks_8h.html#a903467b7174af13d10f2f29ae9bd4a6e":[3,0,0,0,1,1,0,2,11,6], +"stdout__color__sinks_8h.html#ab4647f73157c2a5647097e993eb648f5":[3,0,0,0,1,1,0,2,11,4], +"stdout__color__sinks_8h.html#adf8d38fe4201bc8f4b5255c4fbea7aae":[3,0,0,0,1,1,0,2,11,1], +"stdout__color__sinks_8h.html#ae3eb6549df72c3c46dea34fd35fee93e":[3,0,0,0,1,1,0,2,11,3], +"stdout__color__sinks_8h.html#af5b53d274a7f3e3528ef994035cc7204":[3,0,0,0,1,1,0,2,11,2], +"stdout__color__sinks_8h_source.html":[3,0,0,0,1,1,0,2,11], +"stdout__sinks_8h.html":[3,0,0,0,1,1,0,2,12], +"stdout__sinks_8h.html#a029d085d53a8f4ee99ba223f34bcfb28":[3,0,0,0,1,1,0,2,12,3], +"stdout__sinks_8h.html#a5b0d86b010b11ceb3941265779c7998e":[3,0,0,0,1,1,0,2,12,8], +"stdout__sinks_8h.html#a93e154fd1e2eb0dc5a82fb25ce7f11d1":[3,0,0,0,1,1,0,2,12,5], +"stdout__sinks_8h.html#a98a1a892c6c8f44d89f2ec13e8a7f2c4":[3,0,0,0,1,1,0,2,12,4], +"stdout__sinks_8h.html#a9a6a99d3309b166a585fe918bd83a442":[3,0,0,0,1,1,0,2,12,7], +"stdout__sinks_8h.html#ac7f13feb3827330eb5b5c1998356c798":[3,0,0,0,1,1,0,2,12,2], +"stdout__sinks_8h.html#ad2b234c875e76840785f02b189c0d514":[3,0,0,0,1,1,0,2,12,6], +"stdout__sinks_8h.html#afa13b9dbe3db99f4112b17a310dc26de":[3,0,0,0,1,1,0,2,12,1], +"stdout__sinks_8h_source.html":[3,0,0,0,1,1,0,2,12], +"struct_broadcast_device_info.html":[2,0,4], +"struct_broadcast_device_info.html#a4aa57f62efdd8c0c1ebbf45fb2e5d4f9":[2,0,4,1], +"struct_broadcast_device_info.html#a7564c9b360647ac5a0b982612f89a773":[2,0,4,0], +"struct_broadcast_device_info.html#abc9a813e11ebeebeaf937b34090f3620":[2,0,4,2], +"struct_connected_lidar_info.html":[2,0,5], +"struct_connected_lidar_info.html#a0a2c04b55c719f4f719de502ada83b74":[2,0,5,2], +"struct_connected_lidar_info.html#a0d7bbe9083fbb2746eca67d6d9eddf9a":[2,0,5,3], +"struct_connected_lidar_info.html#a0e349a8cef82212da0d7116cb37b5fdd":[2,0,5,0], +"struct_connected_lidar_info.html#a1516c8ab627363ff3a2224f5ee142226":[2,0,5,4], +"struct_connected_lidar_info.html#a761199df36d30b25dbc40cf60f954601":[2,0,5,1], +"struct_device_broadcast_code.html":[2,0,6], +"struct_device_broadcast_code.html#a92b5ee4638f09060bf3d1d8322619229":[2,0,6,0], +"struct_device_info.html":[2,0,7], +"struct_device_info.html#a1025610698d5ebb8748e420b0dc0f827":[2,0,7,5], +"struct_device_info.html#a173c3d6efff370751f0027749c253b68":[2,0,7,7], +"struct_device_info.html#a1b37aee8b847070b66924d772d1d7edf":[2,0,7,9], +"struct_device_info.html#a1ddd6dc50ae7fe4230b3fa0e2644fb60":[2,0,7,3], +"struct_device_info.html#a2ae13df05166a303b5ba98ff8dd2510f":[2,0,7,4], +"struct_device_info.html#a357578f75cb2efc7cac146ea807810dd":[2,0,7,8], +"struct_device_info.html#aa3d0a3e3476880be7d9735fc91929024":[2,0,7,2], +"struct_device_info.html#aac0da89d608c3395b193adf4fd5bd3f3":[2,0,7,6], +"struct_device_info.html#abb8bbc33f437058af59aa6611137b2f1":[2,0,7,1], +"struct_device_info.html#ac176ce6c12803b25c3aedf6b65af90ca":[2,0,7,0], +"struct_device_info.html#af9a47cb52e6df99dd0705a6b2bfa8f04":[2,0,7,10], +"struct_device_information_response.html":[2,0,8], +"struct_device_information_response.html#a3c12af3f01b1baac1888070a4d08cbff":[2,0,8,0], +"struct_device_information_response.html#a9e625ec596c65c24d3c1d229a9785c72":[2,0,8,1], +"struct_error_message.html":[2,0,9], +"struct_error_message.html#a04ae86448632fb4321a84f69f546666c":[2,0,9,0], +"struct_extrinsic_parameter_request_item.html":[2,0,10], +"struct_extrinsic_parameter_request_item.html#a90eac1f729d93943a5ea8da0a174ba59":[2,0,10,1], +"struct_extrinsic_parameter_request_item.html#ad2395a7b51996e0ef6f8e8b7d3113185":[2,0,10,4], +"struct_extrinsic_parameter_request_item.html#ae61cb309fff8dd1eb96f56b78dd43b75":[2,0,10,5], +"struct_extrinsic_parameter_request_item.html#ae6282ea34d55b9f40a75dc45be853429":[2,0,10,6], +"struct_extrinsic_parameter_request_item.html#aeaa77f9da3a5df1ecc36c93641241942":[2,0,10,0], +"struct_extrinsic_parameter_request_item.html#af5c895c062c9059cb1ea5d133e239061":[2,0,10,3], +"struct_extrinsic_parameter_request_item.html#af5d441ccf6ec53035b7ef76a37a012bc":[2,0,10,2], +"struct_extrinsic_parameter_response_item.html":[2,0,11], +"struct_extrinsic_parameter_response_item.html#a0039b1c815784533f656d5e53a22de8e":[2,0,11,7], +"struct_extrinsic_parameter_response_item.html#a0651e41de730be277c4cc29902a0d711":[2,0,11,2], +"struct_extrinsic_parameter_response_item.html#a10a52148b1281622da70e95053d4f1ab":[2,0,11,1], +"struct_extrinsic_parameter_response_item.html#a2d44941ee40e4b84dab880d8a23fb3a6":[2,0,11,3], +"struct_extrinsic_parameter_response_item.html#a80e3e05dceb68adf7a9bd847bd35329a":[2,0,11,6], +"struct_extrinsic_parameter_response_item.html#ab22d94ca17e363344d9dfd43fd7d81c9":[2,0,11,0], +"struct_extrinsic_parameter_response_item.html#ac72c9a74a72fa08ad428395a869720ef":[2,0,11,5], +"struct_extrinsic_parameter_response_item.html#ae7d9f155e506db616a87dbad50815d96":[2,0,11,4], +"struct_get_device_i_p_mode_response.html":[2,0,14], +"struct_get_device_i_p_mode_response.html#a1a1f3158df48b991d5ddac05e587638f":[2,0,14,0], +"struct_get_device_i_p_mode_response.html#a3eff4056a851a546b2185ce750b5bb30":[2,0,14,2], +"struct_get_device_i_p_mode_response.html#a83324ae62a3393f8f3c260ebf4a7629b":[2,0,14,1], +"struct_handshake_request.html":[2,0,15], +"struct_handshake_request.html#a67402bc326594c44575780e7b767e47a":[2,0,15,2], +"struct_handshake_request.html#a6a7a7ba0f5b928481ab263c6216af37b":[2,0,15,0], +"struct_handshake_request.html#a6e38ca96eeba69cdcc7a2544cbe347e1":[2,0,15,1], +"struct_heartbeat_response.html":[2,0,16], +"struct_heartbeat_response.html#a0fde073a495b78506b341d3e72e990ba":[2,0,16,0], +"struct_heartbeat_response.html#a4813706674e2312b2132151f7688ff22":[2,0,16,1], +"struct_heartbeat_response.html#a7a0d09ada36c1e0c785920017211eada":[2,0,16,2], +"struct_heartbeat_response.html#a9bd7edacb896d6e2a5419ff536ab1ed3":[2,0,16,3], +"struct_hub_control_slot_power_request.html":[2,0,17], +"struct_hub_control_slot_power_request.html#a459b32034785ea441ec930f14e696bcd":[2,0,17,0], +"struct_hub_control_slot_power_request.html#ae682b9d8763fa13bb5b8c85a44b6265f":[2,0,17,1], +"struct_hub_get_extrinsic_parameter_request.html":[2,0,18], +"struct_hub_get_extrinsic_parameter_request.html#a30257b6481b394e07c28a5be493e5c4f":[2,0,18,0], +"struct_hub_get_extrinsic_parameter_request.html#a411353af6f79a0ecca12b8c7f106f322":[2,0,18,1], +"struct_hub_get_extrinsic_parameter_response.html":[2,0,19], +"struct_hub_get_extrinsic_parameter_response.html#a07b82bb424aed94e3d0e0d8be1adf085":[2,0,19,2], +"struct_hub_get_extrinsic_parameter_response.html#abbb3f28dee7df501c191cffb9151beea":[2,0,19,1], +"struct_hub_get_extrinsic_parameter_response.html#ad0f3a2cd721c3dea6999799a02f5b3ce":[2,0,19,0], +"struct_hub_query_lidar_information_response.html":[2,0,20], +"struct_hub_query_lidar_information_response.html#a44e0516899b3d5ff069d6cadf5380761":[2,0,20,1], +"struct_hub_query_lidar_information_response.html#a914cc326363ded18efb18a0b321a97b4":[2,0,20,2], +"struct_hub_query_lidar_information_response.html#aeef7d6cc430c1c408287f029ad9cf67d":[2,0,20,0], +"struct_hub_query_lidar_status_response.html":[2,0,21], +"struct_hub_query_lidar_status_response.html#a28cda59b09ddbb0adeeb82ba59e8043b":[2,0,21,1], +"struct_hub_query_lidar_status_response.html#a2f4895d58ae7d62f62eabbe710ee6f57":[2,0,21,2], +"struct_hub_query_lidar_status_response.html#a6059f781c5eef3231def143ad1b9490b":[2,0,21,0], +"struct_hub_rain_fog_suppress_request.html":[2,0,22], +"struct_hub_rain_fog_suppress_request.html#a3f14c799e8f96e2897c65191c96973ec":[2,0,22,0], +"struct_hub_rain_fog_suppress_request.html#ab24efdb9e34e6d09edf39526225b0e15":[2,0,22,1], +"struct_hub_rain_fog_suppress_response.html":[2,0,23], +"struct_hub_rain_fog_suppress_response.html#a189ce6c8031a2d326f6317108c2c8269":[2,0,23,1], +"struct_hub_rain_fog_suppress_response.html#a3e070f7d0477cf0ccf8fc8161fe8d9d3":[2,0,23,0], +"struct_hub_rain_fog_suppress_response.html#ad95528d299ac14e975932752d27fe59a":[2,0,23,2], +"struct_hub_set_extrinsic_parameter_request.html":[2,0,24], +"struct_hub_set_extrinsic_parameter_request.html#a99dcdcfcadd639e7b341f03f36ba8a88":[2,0,24,0], +"struct_hub_set_extrinsic_parameter_request.html#a9dc2a94df678e4337c83767419e4f734":[2,0,24,1], +"struct_hub_set_extrinsic_parameter_response.html":[2,0,25], +"struct_hub_set_extrinsic_parameter_response.html#a41076bb2abf1e04ef490fd910964643d":[2,0,25,0], +"struct_hub_set_extrinsic_parameter_response.html#a4f887dc5ff42061da54bb8f56f06eabe":[2,0,25,1], +"struct_hub_set_extrinsic_parameter_response.html#aefd242daf07ddff079b88119e809252e":[2,0,25,2], +"struct_hub_set_mode_request.html":[2,0,26], +"struct_hub_set_mode_request.html#a288defb8dd0478bc52b8cdd9a6315c27":[2,0,26,0], +"struct_hub_set_mode_request.html#a74ea714230b28433f927565c98305292":[2,0,26,1], +"struct_hub_set_mode_response.html":[2,0,27], +"struct_hub_set_mode_response.html#a1fc69cbcf14b212987fc3a6408f5515f":[2,0,27,2], +"struct_hub_set_mode_response.html#a737a969dcc4bb59f45aa4c0a842d50d3":[2,0,27,0], +"struct_hub_set_mode_response.html#a8f39d0bb5b2950409fd760471ea14806":[2,0,27,1], +"struct_lidar_get_extrinsic_parameter_response.html":[2,0,28], +"struct_lidar_get_extrinsic_parameter_response.html#a3fa936c4d0e24b4441a722c2b6b65fd4":[2,0,28,4], +"struct_lidar_get_extrinsic_parameter_response.html#a452bec545768ac85c3a3276d553fd538":[2,0,28,2], +"struct_lidar_get_extrinsic_parameter_response.html#a8f5ae9799b044b30a17a9b7878f88716":[2,0,28,6], +"struct_lidar_get_extrinsic_parameter_response.html#aa8637fe0f80e9c8976100458249e72be":[2,0,28,1], +"struct_lidar_get_extrinsic_parameter_response.html#adafd0fca99f28c8087b87aad78dace06":[2,0,28,5], +"struct_lidar_get_extrinsic_parameter_response.html#adc48af745aa3f0fec63be171f96684db":[2,0,28,3], +"struct_lidar_get_extrinsic_parameter_response.html#aee7829f9548f6e897face41560873e7c":[2,0,28,0], +"struct_lidar_mode_request_item.html":[2,0,29], +"struct_lidar_mode_request_item.html#a083aff14314c3edf21066dc6eff69c05":[2,0,29,1], +"struct_lidar_mode_request_item.html#a608649769c4b601a2499f61cd0965e0b":[2,0,29,0], +"struct_lidar_set_extrinsic_parameter_request.html":[2,0,30], +"struct_lidar_set_extrinsic_parameter_request.html#a3e7fd95f3691bdcaa9d8ed016a5463ae":[2,0,30,3], +"struct_lidar_set_extrinsic_parameter_request.html#a52e1efe159b3c5886cfaeb08d3baabb0":[2,0,30,4], +"struct_lidar_set_extrinsic_parameter_request.html#a80fc49ccc2943501b4706c004e3a8cd8":[2,0,30,5], +"struct_lidar_set_extrinsic_parameter_request.html#aa2719d36a514d8f97c39f0da3f0449d0":[2,0,30,1], +"struct_lidar_set_extrinsic_parameter_request.html#ac6bdec3885bfe5670389f5b40cd9d9ef":[2,0,30,0], +"struct_lidar_set_extrinsic_parameter_request.html#af15b6387a525382ffefaf65ed6248e6c":[2,0,30,2], +"struct_lidar_state_item.html":[2,0,31], +"struct_lidar_state_item.html#a080194488c4deceba37fef91c9124f16":[2,0,31,1], +"struct_lidar_state_item.html#a2faf99b3e6f31c613fd7d5c1d76444f7":[2,0,31,3], +"struct_lidar_state_item.html#a42089310e0005a55e89fe97bdca1dacb":[2,0,31,0], +"struct_lidar_state_item.html#a9f20d10119d28df0163702b25513367b":[2,0,31,2], +"struct_livox_eth_packet.html":[2,0,32], +"struct_livox_eth_packet.html#a0ee766e1efde1b362cb10ad3c5a489ce":[2,0,32,6], +"struct_livox_eth_packet.html#a54a66559fe0ec191d5d11fca61fd3dd1":[2,0,32,8], +"struct_livox_eth_packet.html#a8a474f23d910eed792e7ad98914dfe7c":[2,0,32,0], +"struct_livox_eth_packet.html#aa2694b179be57520cf2173b0c680d58d":[2,0,32,7], +"struct_livox_eth_packet.html#abd6d282748a4cd8c11853afae5d456ae":[2,0,32,1], +"struct_livox_eth_packet.html#acb370bd12205bd9d4218d264fdf81e52":[2,0,32,3], +"struct_livox_eth_packet.html#ae37415fbbf43c6ded2b4c03179fcc326":[2,0,32,5], +"struct_livox_eth_packet.html#ae786d26c1650fd52f245795cabe659e1":[2,0,32,4], +"struct_livox_eth_packet.html#aefcc74089cdc678cf2e43157f01890dd":[2,0,32,2], +"struct_livox_point.html":[2,0,33], +"struct_livox_point.html#a28ad3332bba82317c04fb3063ecc1c86":[2,0,33,2], +"struct_livox_point.html#a6a29cf468c61e20cb34e8b46687b9092":[2,0,33,0], +"struct_livox_point.html#aa3f338bfc60815306204df82ad86d8dc":[2,0,33,1], +"struct_livox_point.html#af2cd18d88bc85941740eae6e09b88d70":[2,0,33,3], +"struct_livox_raw_point.html":[2,0,34], +"struct_livox_raw_point.html#a0b4212969df96a0f697f55738c9a0444":[2,0,34,2], +"struct_livox_raw_point.html#a1026beb1f1729bdc38e06edf11bb06e0":[2,0,34,3], +"struct_livox_raw_point.html#a1c58c82c33e06f4d80490ddd1285d926":[2,0,34,0], +"struct_livox_raw_point.html#a9ebad707b8d7f23627b9542f6023a359":[2,0,34,1], +"struct_livox_sdk_version.html":[2,0,35], +"struct_livox_sdk_version.html#a0099180644f0153f57b0a67f0a96d1ac":[2,0,35,0], +"struct_livox_sdk_version.html#a6bbcc9b12aa6c3aed826600325a57e46":[2,0,35,1], +"struct_livox_sdk_version.html#a93dd2938e447a72dfb71e454c97cdaa6":[2,0,35,2], +"struct_rain_fog_suppress_request_item.html":[2,0,36], +"struct_rain_fog_suppress_request_item.html#aa8cf24d5a1d3a6067ce68887fdf0a6dd":[2,0,36,1], +"struct_rain_fog_suppress_request_item.html#ae533c935fdd671d704ab1f9419795eab":[2,0,36,0], +"struct_return_code.html":[2,0,37], +"struct_return_code.html#a6009b33a757ec7864e0b77a40b42b8c9":[2,0,37,0], +"struct_return_code.html#abda96609396b9cf80e4449efb974e920":[2,0,37,1], +"struct_set_device_i_p_mode_request.html":[2,0,38], +"struct_set_device_i_p_mode_request.html#ab89c04174027155c655a196d383f2964":[2,0,38,0], +"struct_set_device_i_p_mode_request.html#ac49e954a2dea9fcd6fc1cae0162e3f89":[2,0,38,1], +"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html":[2,0,0,1], +"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a0974264e6edcc83c7c191f34d2ce4781":[2,0,0,1,8], +"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a0997eb476f830eb211f3d17777079d7d":[2,0,0,1,7], +"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a23665231993cdeb323a86ecb9a7a63a1":[2,0,0,1,0], +"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a6f28abac88c19077023abaadd2d3315f":[2,0,0,1,6], +"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#aae6b62746bc315b2927199438ba2f87a":[2,0,0,1,4], +"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ada366ec2d0f00fa94560551fdbbbb640":[2,0,0,1,1], +"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ae001a71b76b4a56f722a7b91c506e9bf":[2,0,0,1,2], +"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ae269e1463930629ea37d0d93d0d726c5":[2,0,0,1,3], +"structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#aec694b471eae3bc7d0a1d4487579721c":[2,0,0,1,5], +"structfmt_1_1v5_1_1align__spec.html":[2,0,0,0,1], +"structfmt_1_1v5_1_1align__spec.html#a0ead63b1fb62d8c631d5df7ca495b725":[2,0,0,0,1,2], +"structfmt_1_1v5_1_1align__spec.html#a5c40750e67850f9e430ac1278890f96d":[2,0,0,0,1,4], +"structfmt_1_1v5_1_1align__spec.html#a74632126deecb543f2e2d08ad0d52d1c":[2,0,0,0,1,0], +"structfmt_1_1v5_1_1align__spec.html#a8223f56be615c31d47e588ac36690aee":[2,0,0,0,1,6], +"structfmt_1_1v5_1_1align__spec.html#a92983d89f72ee0790963927e651c50f6":[2,0,0,0,1,3], +"structfmt_1_1v5_1_1align__spec.html#a970282b2f4fa19d907a7067d905304a7":[2,0,0,0,1,1], +"structfmt_1_1v5_1_1align__spec.html#ac7badcecfcb9d58db73d06eee0888fbe":[2,0,0,0,1,5], +"structfmt_1_1v5_1_1arg__join.html":[2,0,0,0,3], +"structfmt_1_1v5_1_1arg__join.html#a51f66865c2e307da6d7d1f98a78fda59":[2,0,0,0,3,1], +"structfmt_1_1v5_1_1arg__join.html#a547d8479ecf6206c1931419886574729":[2,0,0,0,3,3], +"structfmt_1_1v5_1_1arg__join.html#a6d52e78c112984ea0d5a0344d8be2ae4":[2,0,0,0,3,0], +"structfmt_1_1v5_1_1arg__join.html#aea138338c02d417a0633ecebd019e890":[2,0,0,0,3,2], +"structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html":[2,0,0,0,8,0], +"structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html#a14ceeeb9b78679fea87df36298fc5603":[2,0,0,0,8,0,0], +"structfmt_1_1v5_1_1basic__format__specs.html":[2,0,0,0,9], +"structfmt_1_1v5_1_1basic__format__specs.html#a3eea365872084949e7a8e14c7d7131f7":[2,0,0,0,9,0], +"structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html":[2,0,0,0,12,0], +"structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html#ad84f4ee9d13cc381c864382cae010501":[2,0,0,0,12,0,0], +"structfmt_1_1v5_1_1basic__printf__context__t.html":[2,0,0,0,13], +"structfmt_1_1v5_1_1basic__printf__context__t.html#ae71e6b5fec9b62fb22733b5f40ed5d23":[2,0,0,0,13,0], +"structfmt_1_1v5_1_1buffer__context.html":[2,0,0,0,16], +"structfmt_1_1v5_1_1buffer__context.html#ac7c75596798b17dd1e05f905bf74b619":[2,0,0,0,16,0], +"structfmt_1_1v5_1_1char__t.html":[2,0,0,0,18], +"structfmt_1_1v5_1_1compile__string.html":[2,0,0,0,19], +"structfmt_1_1v5_1_1convert__to__int.html":[2,0,0,0,20], +"structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html":[2,0,0,0,21], +"structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html#a403828199f69d91f17e0dd2cd0b0026f":[2,0,0,0,21,0], +"structfmt_1_1v5_1_1core__format__specs.html":[2,0,0,0,22], +"structfmt_1_1v5_1_1core__format__specs.html#a08766778b893b5a8057b9580db36da9c":[2,0,0,0,22,2], +"structfmt_1_1v5_1_1core__format__specs.html#a445855f2d6d7886e1afb26e570618c47":[2,0,0,0,22,3], +"structfmt_1_1v5_1_1core__format__specs.html#a721c8bd2bf91d00f04dc6ef6fcc0189a":[2,0,0,0,22,1], +"structfmt_1_1v5_1_1core__format__specs.html#ae8225c1b5ab54383472fed40c9ccf4b6":[2,0,0,0,22,4], +"structfmt_1_1v5_1_1core__format__specs.html#af2f270216f9f408f402e94ad1033fe26":[2,0,0,0,22,0], +"structfmt_1_1v5_1_1float__spec__handler.html":[2,0,0,0,26], +"structfmt_1_1v5_1_1float__spec__handler.html#a08c5f4af9e7376bd3e21f6cc89b6b7a6":[2,0,0,0,26,2], +"structfmt_1_1v5_1_1float__spec__handler.html#a3017f14a9d0c5b1d84d2929e3aef1735":[2,0,0,0,26,7], +"structfmt_1_1v5_1_1float__spec__handler.html#a44813c139c2754dcf56294433728ca44":[2,0,0,0,26,1], +"structfmt_1_1v5_1_1float__spec__handler.html#a47c600fba7735d313592f3cbf97c5fe8":[2,0,0,0,26,5], +"structfmt_1_1v5_1_1float__spec__handler.html#a48e693571ddc346ae7fae88fe7902932":[2,0,0,0,26,6], +"structfmt_1_1v5_1_1float__spec__handler.html#a6cb6583cc6285ffa6fc492ff0862d4e3":[2,0,0,0,26,0], +"structfmt_1_1v5_1_1float__spec__handler.html#a9ca4fbeb01db2a21cd1ce54a1e7d179c":[2,0,0,0,26,4], +"structfmt_1_1v5_1_1float__spec__handler.html#ace39bc5327e1dfafaff796b1e7cdd3df":[2,0,0,0,26,3], +"structfmt_1_1v5_1_1format__args.html":[2,0,0,0,28], +"structfmt_1_1v5_1_1format__args.html#aa80cbbec78d4fe88a77d437d18ba4d18":[2,0,0,0,28,0], +"structfmt_1_1v5_1_1format__args__t.html":[2,0,0,0,29], +"structfmt_1_1v5_1_1format__args__t.html#aa4f31b5332a6cdd12d1b7a7e766770dd":[2,0,0,0,29,0], +"structfmt_1_1v5_1_1format__context__t.html":[2,0,0,0,30], +"structfmt_1_1v5_1_1format__context__t.html#a3a779c0aeb8ba0ea1aed0b8c3b3b53c1":[2,0,0,0,30,0], +"structfmt_1_1v5_1_1format__handler.html":[2,0,0,0,32], +"structfmt_1_1v5_1_1format__handler.html#a10f0bb03d362ecb21a688778230e2925":[2,0,0,0,32,5], +"structfmt_1_1v5_1_1format__handler.html#a32a2f523495547bcd97610b62d01a610":[2,0,0,0,32,4] }; diff --git a/docs/navtreeindex9.js b/docs/navtreeindex9.js index 9e6eb57..7b84ca5 100644 --- a/docs/navtreeindex9.js +++ b/docs/navtreeindex9.js @@ -1,253 +1,253 @@ var NAVTREEINDEX9 = { -"structfmt_1_1v5_1_1format__handler.html#a988c9b12cdd78f32d51c231134317a9a":[1,0,0,0,32,3], -"structfmt_1_1v5_1_1format__handler.html#a9df20283c6cfc3b40e350665aa2bf021":[1,0,0,0,32,8], -"structfmt_1_1v5_1_1format__handler.html#ac8c589250f37514c3fac3a123698ac01":[1,0,0,0,32,7], -"structfmt_1_1v5_1_1format__handler.html#ad2e95af5d37c6f9d3e996085c978cad2":[1,0,0,0,32,6], -"structfmt_1_1v5_1_1format__handler.html#adcffafbbb51c42a17357ffc66e697fc7":[1,0,0,0,32,9], -"structfmt_1_1v5_1_1format__handler.html#af0a6c006dcf81a1e1b3db4ff9d400e6d":[1,0,0,0,32,1], -"structfmt_1_1v5_1_1format__handler.html#af45f0577c38773dae862118b947fd671":[1,0,0,0,32,2], -"structfmt_1_1v5_1_1format__to__n__args.html":[1,0,0,0,34], -"structfmt_1_1v5_1_1format__to__n__args.html#a68938d8d3d0df2ee1150ceba97964bc4":[1,0,0,0,34,0], -"structfmt_1_1v5_1_1format__to__n__context.html":[1,0,0,0,35], -"structfmt_1_1v5_1_1format__to__n__result.html":[1,0,0,0,36], -"structfmt_1_1v5_1_1format__to__n__result.html#a03f23327f9690a2407193ad112a1b65d":[1,0,0,0,36,0], -"structfmt_1_1v5_1_1format__to__n__result.html#a2c99d057867cf7e981ef53845a398f42":[1,0,0,0,36,1], -"structfmt_1_1v5_1_1formatter.html":[1,0,0,0,37], -"structfmt_1_1v5_1_1formatter.html#a4147e797582f75be18645d2b6aef4e57":[1,0,0,0,37,1], -"structfmt_1_1v5_1_1formatter.html#aeff27467b5654e9343ceb4cbdeb234c3":[1,0,0,0,37,0], -"structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html":[1,0,0,0,39], -"structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#a56962f9c47a1654f91ebdc5244b81f32":[1,0,0,0,39,1], -"structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#aeef2ffb1f84db7d17d426ff00b95c04d":[1,0,0,0,39,2], -"structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#af4b0d3f2b38c14b1d0cf4779e63af7cb":[1,0,0,0,39,0], -"structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html":[1,0,0,0,42], -"structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html#a0decc0ceee49ae7780113a741baf8742":[1,0,0,0,42,0], -"structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html#a6a4b8134330ce67c7c9e8e7db077b334":[1,0,0,0,42,1], -"structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html":[1,0,0,0,43], -"structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html#a3038ada3d70528a9d5e3b6968f9cb079":[1,0,0,0,43,0], -"structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html":[1,0,0,0,44], -"structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#a4a94d41481e57f5ebf8e873c6909654d":[1,0,0,0,44,0], -"structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#aa9f66948e4a9e80fde6dadcce7cca55a":[1,0,0,0,44,1], -"structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#ae41806a525f35f439447d6379a3dc57a":[1,0,0,0,44,2], -"structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html":[1,0,0,0,38], -"structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html#a4c578e1058ef3524652ae2d6f86cbbfa":[1,0,0,0,38,0], -"structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html":[1,0,0,0,40], -"structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#a12522d59cd6a134c4da248ee27a600bb":[1,0,0,0,40,2], -"structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#a53bae6e35b2355d33f2e73bf1c453002":[1,0,0,0,40,0], -"structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#ad995b1efdc0fef2ec8a4206c18f0e56f":[1,0,0,0,40,1], -"structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html":[1,0,0,0,41], -"structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#a0974bc78aab514b37ccfa573cd8400c6":[1,0,0,0,41,2], -"structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#a697c862f40a101129022409a60c612a1":[1,0,0,0,41,0], -"structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#afe698cc1f5147569d954e40bdab35eb7":[1,0,0,0,41,1], -"structfmt_1_1v5_1_1formatting__base.html":[1,0,0,0,45], -"structfmt_1_1v5_1_1formatting__base.html#acd8d05ac57daf149ec2d8fffb4ffb106":[1,0,0,0,45,0], -"structfmt_1_1v5_1_1formatting__range.html":[1,0,0,0,46], -"structfmt_1_1v5_1_1formatting__range.html#a36c05ab14e83d967e53328ea8660e03a":[1,0,0,0,46,4], -"structfmt_1_1v5_1_1formatting__range.html#a399497b7b12286bb0147f7d89699835a":[1,0,0,0,46,3], -"structfmt_1_1v5_1_1formatting__range.html#acaa8a58402e2e006e8c74eb5dd616182":[1,0,0,0,46,2], -"structfmt_1_1v5_1_1formatting__range.html#ad500eea3b7cf615169158b129d966e26":[1,0,0,0,46,1], -"structfmt_1_1v5_1_1formatting__range.html#ae80688cea4e88499a8aaf09b9b3e21f9":[1,0,0,0,46,0], -"structfmt_1_1v5_1_1formatting__range.html#aecf071a5da5a8aa12b872e66c12c0f03":[1,0,0,0,46,6], -"structfmt_1_1v5_1_1formatting__range.html#aff1b7e3cc3fe6dd0177e0a16bd11d257":[1,0,0,0,46,5], -"structfmt_1_1v5_1_1formatting__tuple.html":[1,0,0,0,47], -"structfmt_1_1v5_1_1formatting__tuple.html#a02c5fa0074e27305d21896c8c82c4d0f":[1,0,0,0,47,0], -"structfmt_1_1v5_1_1formatting__tuple.html#a233d1ca96854cb2b81bfc30ccca8e5d2":[1,0,0,0,47,3], -"structfmt_1_1v5_1_1formatting__tuple.html#a7b02d7eeab87b7ac85178e59ddcd252b":[1,0,0,0,47,5], -"structfmt_1_1v5_1_1formatting__tuple.html#a7dc63730dad2ee965f7d128ebbd8f7c1":[1,0,0,0,47,4], -"structfmt_1_1v5_1_1formatting__tuple.html#adcf53359096ce668a312c2d338bfe226":[1,0,0,0,47,1], -"structfmt_1_1v5_1_1formatting__tuple.html#ae2da340c4f35de9a4fe2a5d1f016accc":[1,0,0,0,47,2], -"structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html":[1,0,0,0,0,1], -"structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#a508568e9d0e8a08a672dde8e7d416330":[1,0,0,0,0,1,1], -"structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#a83152518bf4a4ee78ab164994593b134":[1,0,0,0,0,1,0], -"structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#ae1694c33443324d13f7b79f17a5f5ad4":[1,0,0,0,0,1,2], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html":[1,0,0,0,0,3,0], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#a3ec107f4cdd14d0eb7f1ae2a072b0c89":[1,0,0,0,0,3,0,4], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#a9ee2328a2106f91620d78431401d19ae":[1,0,0,0,0,3,0,0], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#aa48913a1f52a97dbba8436cd493810db":[1,0,0,0,0,3,0,2], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#ad45d0067f9a6f6edfe1c0f0a7ff50af5":[1,0,0,0,0,3,0,1], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#affa464f89a6f6fa5afda5dc7f405b962":[1,0,0,0,0,3,0,3], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html":[1,0,0,0,0,3,1], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a4bef3a86933f35c061589933b1fc36a2":[1,0,0,0,0,3,1,1], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a519ca34f6bded5481821e4c0ad29a9ba":[1,0,0,0,0,3,1,2], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a677c073f250fe756706c602548846794":[1,0,0,0,0,3,1,4], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#aa61244d241d6d4b5a8859df32e8d1c41":[1,0,0,0,0,3,1,0], -"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#ae2344ac1cd01b0791888983b7b249063":[1,0,0,0,0,3,1,3], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html":[1,0,0,0,0,5], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a0ca425c4d66eb220b23180538508f089":[1,0,0,0,0,5,5], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a283634a312bcc2e6a5eaf7483a27860b":[1,0,0,0,0,5,3], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69":[1,0,0,0,0,5,0], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69a89b53b259b51cc1288cc429d907521d0":[1,0,0,0,0,5,0,1], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69abf8b717453e333c567d68786e862acfa":[1,0,0,0,0,5,0,2], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69af74dc3a4fdb7441bc5d0a3885e6b22b4":[1,0,0,0,0,5,0,0], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a830077cd847dfe72567f92bdb9a7b847":[1,0,0,0,0,5,2], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a8b82cfcb68b97554142d75a2d71afbcd":[1,0,0,0,0,5,6], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html#acdc7af3b0c98da49b1d8200d8a9c23ff":[1,0,0,0,0,5,1], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html#ae2a99fa912b67cda62fcce7a7c7bc976":[1,0,0,0,0,5,4], -"structfmt_1_1v5_1_1internal_1_1arg__ref.html#af240860ec3c7ab05495ec8380b3e3479":[1,0,0,0,0,5,7], -"structfmt_1_1v5_1_1internal_1_1auto__id.html":[1,0,0,0,0,6], -"structfmt_1_1v5_1_1internal_1_1basic__data.html":[1,0,0,0,0,8], -"structfmt_1_1v5_1_1internal_1_1basic__data.html#a195c2b45ae9bb0a953156d3ae7eb35ca":[1,0,0,0,0,8,5], -"structfmt_1_1v5_1_1internal_1_1basic__data.html#a4984044ce1b065540381b3694eb994b0":[1,0,0,0,0,8,4], -"structfmt_1_1v5_1_1internal_1_1basic__data.html#a5ea6f88946a0959275332ac157eb9775":[1,0,0,0,0,8,0], -"structfmt_1_1v5_1_1internal_1_1basic__data.html#a684a3b8ed9c908d5c1d4aea407ac18ae":[1,0,0,0,0,8,7], -"structfmt_1_1v5_1_1internal_1_1basic__data.html#a6da82443fd09335fe5cbe3fe39cbc97b":[1,0,0,0,0,8,6], -"structfmt_1_1v5_1_1internal_1_1basic__data.html#a7c75c3b052395aa783f67d1221946c27":[1,0,0,0,0,8,8], -"structfmt_1_1v5_1_1internal_1_1basic__data.html#ad815e597b46d92023beb025b464b4520":[1,0,0,0,0,8,1], -"structfmt_1_1v5_1_1internal_1_1basic__data.html#ad9d536a7e57a5e2dd100c1cbbb4f1100":[1,0,0,0,0,8,2], -"structfmt_1_1v5_1_1internal_1_1basic__data.html#ae51c63ec91f02e2dad5c1d3eedb7b532":[1,0,0,0,0,8,3], -"structfmt_1_1v5_1_1internal_1_1basic__data.html#aff0c2d26ec88801043953054e3bcc971":[1,0,0,0,0,8,9], -"structfmt_1_1v5_1_1internal_1_1char__counter.html":[1,0,0,0,0,10], -"structfmt_1_1v5_1_1internal_1_1char__counter.html#a0c5ba7253e9f0080698e4771cd4332b1":[1,0,0,0,0,10,0], -"structfmt_1_1v5_1_1internal_1_1char__counter.html#a100c9c7d1618245f315f83af27110d2b":[1,0,0,0,0,10,5], -"structfmt_1_1v5_1_1internal_1_1char__counter.html#a19a71ff0f2ccc8895dcc5f2977b0c2cd":[1,0,0,0,0,10,4], -"structfmt_1_1v5_1_1internal_1_1char__counter.html#a30c9aa9646ae4d285e4f850dc7c7d51c":[1,0,0,0,0,10,1], -"structfmt_1_1v5_1_1internal_1_1char__counter.html#a51b440b6cd612f4b83c3c6c4816f6022":[1,0,0,0,0,10,3], -"structfmt_1_1v5_1_1internal_1_1char__counter.html#acbc4f0c13cb3239010ff37f09049f72e":[1,0,0,0,0,10,2], -"structfmt_1_1v5_1_1internal_1_1char__t.html":[1,0,0,0,0,12], -"structfmt_1_1v5_1_1internal_1_1char__t.html#a096fd6ceeb1d27e1a62b6afeb611f391":[1,0,0,0,0,12,0], -"structfmt_1_1v5_1_1internal_1_1char__t.html#ac83141e2510982ccc56eea9c9cc74ccc":[1,0,0,0,0,12,1], -"structfmt_1_1v5_1_1internal_1_1char__traits.html":[1,0,0,0,0,13], -"structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html":[1,0,0,0,0,14], -"structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html#a649e42c11daf3f13c8cba34bb20bb649":[1,0,0,0,0,14,0], -"structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html":[1,0,0,0,0,15], -"structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html#addb0ff96690e7424d61c79b0ef47ffc4":[1,0,0,0,0,15,0], -"structfmt_1_1v5_1_1internal_1_1checked.html":[1,0,0,0,0,16], -"structfmt_1_1v5_1_1internal_1_1checked.html#ae50049ee2def62be6532372564182cac":[1,0,0,0,0,16,0], -"structfmt_1_1v5_1_1internal_1_1checked__args.html":[1,0,0,0,0,17], -"structfmt_1_1v5_1_1internal_1_1checked__args.html#a08f5fb05bf1d8da4eee00b15438c9f5d":[1,0,0,0,0,17,0], -"structfmt_1_1v5_1_1internal_1_1checked__args.html#a27369b0b9836336f73f4719a2f4e9fa3":[1,0,0,0,0,17,2], -"structfmt_1_1v5_1_1internal_1_1checked__args.html#a9b9dcf34426ab439f1df375db66b677c":[1,0,0,0,0,17,1], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html":[1,0,0,0,0,18], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a03ef6dd252f466dc9ef48e61adb97e62":[1,0,0,0,0,18,19], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a0eef44f4227621f82efdd96522a34cea":[1,0,0,0,0,18,12], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a1b49b5b3497e4da015a75c0f5ad77f8a":[1,0,0,0,0,18,4], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a1fb3b5911e2cfa3e99a19f660a4386a3":[1,0,0,0,0,18,7], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a2e995899ed1678d122629269247a911c":[1,0,0,0,0,18,13], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a3ea0a9ac1f2f6a92e28fc14bdd9cf044":[1,0,0,0,0,18,11], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a401617e182eb83c9dbb3c17fce04029a":[1,0,0,0,0,18,21], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a477b82b9af3dab4475588b9f4a6d3070":[1,0,0,0,0,18,22], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a5090856f227bd8922edeecf97ea8bc31":[1,0,0,0,0,18,20], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a5c580fdd162ee92928248fcbe380ced4":[1,0,0,0,0,18,15], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a73341707b4ec25420120be39cb1ad1f3":[1,0,0,0,0,18,10], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a75a9ec7180a8977b83bcaaba724f058f":[1,0,0,0,0,18,5], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a7ec73eba1f9686886b0cd6e73f69c5ed":[1,0,0,0,0,18,9], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a889e4a54d94853a3674df17d325e2cfc":[1,0,0,0,0,18,16], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a94a739330ac56034fb9bde5d89c1c2b8":[1,0,0,0,0,18,1], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a95cd0458553c10a26bd580c73d528a2e":[1,0,0,0,0,18,0], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a98e676383a1103f987671d3ae77e108c":[1,0,0,0,0,18,6], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#abc0fa900734b8934699a8705732f4394":[1,0,0,0,0,18,2], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aec0afcb1ea82fb8398061b69483726d1":[1,0,0,0,0,18,17], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aecf25d830a00bf920d3e366e946506f0":[1,0,0,0,0,18,3], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aef2fc6d8013c88e2b6589c015e4c826e":[1,0,0,0,0,18,8], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#af00dab6f03010eb7c0e076f61949aa85":[1,0,0,0,0,18,14], -"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#af565f6815eef5198d9d9f792346aa599":[1,0,0,0,0,18,18], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html":[1,0,0,0,0,19], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a0ed40f7f5d0fb57d145b880699442049":[1,0,0,0,0,19,24], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a1388824f7e836e2bd1158854a8167e16":[1,0,0,0,0,19,12], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a1fc400d160bba953ff7412b6afce6ebc":[1,0,0,0,0,19,2], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a23fd5944d19602da875e39b45d66c737":[1,0,0,0,0,19,5], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a250161d0793ae68087d3d4b7c12c8e9b":[1,0,0,0,0,19,17], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a269fbfd37ea5e35b04d8ff1fd991138d":[1,0,0,0,0,19,33], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a27ccaaa51fec0226b7b508e9d21f02f7":[1,0,0,0,0,19,19], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a283a7a70218041ce28b0f3cea007655f":[1,0,0,0,0,19,1], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a2be98cd6ddecf487ba9ea1a66df807e3":[1,0,0,0,0,19,4], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a2e3caddf766cdd91f70527ee6b1d5506":[1,0,0,0,0,19,6], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a39304fcfe6bd5ba7cbf20d7dc8c25625":[1,0,0,0,0,19,22], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a393e3b451800b1933a7c8814cba0035e":[1,0,0,0,0,19,14], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a437caae6cfab224f6f4d5ec7d32939d4":[1,0,0,0,0,19,27], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a4db4fd25735fba269e0e462d2f0cebb2":[1,0,0,0,0,19,30], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a5219e7d23e107a5b02c3912cce41ba1c":[1,0,0,0,0,19,16], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a5836908b0ff253946807ec94b74885d6":[1,0,0,0,0,19,31], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a6f2ea84fef033aff9e450320bd6c6adc":[1,0,0,0,0,19,15], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a8695bfe8c62948476e06fb866f1b5abd":[1,0,0,0,0,19,10], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a998f57672158911587892e30b6442034":[1,0,0,0,0,19,20], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a9f368ece915dc9a49062e497ba8ffd3e":[1,0,0,0,0,19,11], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#aa0e5243ab84d9be54fbfc85691f93a24":[1,0,0,0,0,19,8], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#aa41c3019274a95fe19f1abf2013311a3":[1,0,0,0,0,19,18], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ab42b53e1a929f512754d0f8c136ab18c":[1,0,0,0,0,19,3], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ab8d234f82d65181090cdf1602871e485":[1,0,0,0,0,19,25], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#abb96cb6058ee5cd88fff52e08951913f":[1,0,0,0,0,19,23], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ac229529f4628b228142ad3babb581225":[1,0,0,0,0,19,29], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ac752c273d5033c35d1c8bd1aacc7efd4":[1,0,0,0,0,19,9], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#acabd988cd5815af1577389e5576359a5":[1,0,0,0,0,19,7], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ace51dbe524dffc062d59c9464587e9dd":[1,0,0,0,0,19,32], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad11342e8d7b36dc1fc82aa5e81e5a33c":[1,0,0,0,0,19,21], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad518a05301185cec644e0a2aa55981f8":[1,0,0,0,0,19,28], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad5e36628d12c268b31c170ae1f41de17":[1,0,0,0,0,19,34], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ae0c74a5cd09f1a944f76da410d337c60":[1,0,0,0,0,19,0], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ae7113c63bfe389915537b985236ea3e2":[1,0,0,0,0,19,26], -"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#af3f1770368c80ca2261b51f14c96f0c1":[1,0,0,0,0,19,13], -"structfmt_1_1v5_1_1internal_1_1color__type.html":[1,0,0,0,0,20], -"structfmt_1_1v5_1_1internal_1_1color__type.html#a160b5a017452a64fb874b331153ada6e":[1,0,0,0,0,20,1], -"structfmt_1_1v5_1_1internal_1_1color__type.html#a288984b7a227bda31470628567a894fa":[1,0,0,0,0,20,2], -"structfmt_1_1v5_1_1internal_1_1color__type.html#a56ecbd5d058a106670bf111154651c25":[1,0,0,0,0,20,5], -"structfmt_1_1v5_1_1internal_1_1color__type.html#a6ccc6a1b7eabca5301b99a7d6c0dc0b9":[1,0,0,0,0,20,3], -"structfmt_1_1v5_1_1internal_1_1color__type.html#a858e477eabe77aa1062ef358089691de":[1,0,0,0,0,20,4], -"structfmt_1_1v5_1_1internal_1_1color__type.html#adf5946407d6fd20727ce475d2843a4b7":[1,0,0,0,0,20,6], -"structfmt_1_1v5_1_1internal_1_1conditional__helper.html":[1,0,0,0,0,21], -"structfmt_1_1v5_1_1internal_1_1custom__value.html":[1,0,0,0,0,27], -"structfmt_1_1v5_1_1internal_1_1custom__value.html#ac45d1a6dc108a21b27aea69d628f315c":[1,0,0,0,0,27,0], -"structfmt_1_1v5_1_1internal_1_1custom__value.html#adae3c0875aa70ef39a434d0e9756ae12":[1,0,0,0,0,27,1], -"structfmt_1_1v5_1_1internal_1_1dummy__int.html":[1,0,0,0,0,30], -"structfmt_1_1v5_1_1internal_1_1dummy__int.html#a9bcdf394ef31a10161975dcdbed86c25":[1,0,0,0,0,30,1], -"structfmt_1_1v5_1_1internal_1_1dummy__int.html#a9cc59ebeafaa73368d404b3f22de4d43":[1,0,0,0,0,30,0], -"structfmt_1_1v5_1_1internal_1_1dummy__string__view.html":[1,0,0,0,0,31], -"structfmt_1_1v5_1_1internal_1_1dummy__string__view.html#a1a7f6fcc70a0b038374b78d2b5e34a60":[1,0,0,0,0,31,0], -"structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html":[1,0,0,0,0,32], -"structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html#a83d7ae45b8fc003f531e2f996b51c9b3":[1,0,0,0,0,32,1], -"structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html#a889a59c0e42b1be665f320085fecd117":[1,0,0,0,0,32,0], -"structfmt_1_1v5_1_1internal_1_1error__handler.html":[1,0,0,0,0,34], -"structfmt_1_1v5_1_1internal_1_1error__handler.html#a6649671e792c4497c6264ee839d00b72":[1,0,0,0,0,34,1], -"structfmt_1_1v5_1_1internal_1_1error__handler.html#ab0b904ff6b411817d4db4d9bda9240e6":[1,0,0,0,0,34,0], -"structfmt_1_1v5_1_1internal_1_1error__handler.html#af917438f30466b0b8cd4de4f8b549ab9":[1,0,0,0,0,34,2], -"structfmt_1_1v5_1_1internal_1_1fill.html":[1,0,0,0,0,35], -"structfmt_1_1v5_1_1internal_1_1fill.html#a8ac696cf33afd220f17fea77b4fd9df2":[1,0,0,0,0,35,0], -"structfmt_1_1v5_1_1internal_1_1fill.html#af4901adffe747a5563f73ec9e640420c":[1,0,0,0,0,35,1], -"structfmt_1_1v5_1_1internal_1_1format__type.html":[1,0,0,0,0,38], -"structfmt_1_1v5_1_1internal_1_1function.html":[1,0,0,0,0,41], -"structfmt_1_1v5_1_1internal_1_1function_1_1result.html":[1,0,0,0,0,41,0], -"structfmt_1_1v5_1_1internal_1_1function_1_1result.html#a10b35177d5430fc9e9fee0301fa43ff2":[1,0,0,0,0,41,0,0], -"structfmt_1_1v5_1_1internal_1_1gen__digits__params.html":[1,0,0,0,0,42], -"structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#a46a9d3e58fa1f2918ee6285933762786":[1,0,0,0,0,42,0], -"structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#a4d9d74312532c965bddc7eb88d79600d":[1,0,0,0,0,42,3], -"structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#ae5d119f024f6844f366eacbb80dc905b":[1,0,0,0,0,42,1], -"structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#af94ccb0990229d78c551373b07abb3b2":[1,0,0,0,0,42,2], -"structfmt_1_1v5_1_1internal_1_1get__type.html":[1,0,0,0,0,43], -"structfmt_1_1v5_1_1internal_1_1get__type.html#a3e8fae3e67d4ec2f6af456a51a6cff16":[1,0,0,0,0,43,1], -"structfmt_1_1v5_1_1internal_1_1get__type.html#af088bfff6645d7e54268061ca31b9d2f":[1,0,0,0,0,43,0], -"structfmt_1_1v5_1_1internal_1_1id__adapter.html":[1,0,0,0,0,44], -"structfmt_1_1v5_1_1internal_1_1id__adapter.html#a071bc1ed2aaa59cfbfccefb11d0f0cc4":[1,0,0,0,0,44,4], -"structfmt_1_1v5_1_1internal_1_1id__adapter.html#a281a7335138c4e7a2bb5f9c7456659e8":[1,0,0,0,0,44,3], -"structfmt_1_1v5_1_1internal_1_1id__adapter.html#a64e5a16f6183b57476f9e15af2aaf866":[1,0,0,0,0,44,2], -"structfmt_1_1v5_1_1internal_1_1id__adapter.html#a75ba87fda26a74c86407b89b4785fcc0":[1,0,0,0,0,44,0], -"structfmt_1_1v5_1_1internal_1_1id__adapter.html#ae84a96563d3159d5749665b00f000758":[1,0,0,0,0,44,1], -"structfmt_1_1v5_1_1internal_1_1init.html":[1,0,0,0,0,45], -"structfmt_1_1v5_1_1internal_1_1init.html#a033f79651b7bafcfe24e07f616e5285f":[1,0,0,0,0,45,1], -"structfmt_1_1v5_1_1internal_1_1init.html#a3d9e6c757b3ee6700cf3c04fe8eedc24":[1,0,0,0,0,45,3], -"structfmt_1_1v5_1_1internal_1_1init.html#ac7b59b84cdac4e0966b101c95c03c0b3":[1,0,0,0,0,45,0], -"structfmt_1_1v5_1_1internal_1_1init.html#adc568107405c8c92081c28f5961d76d7":[1,0,0,0,0,45,2], -"structfmt_1_1v5_1_1internal_1_1int__checker.html":[1,0,0,0,0,46], -"structfmt_1_1v5_1_1internal_1_1int__checker.html#a3e21f15ef6ad577314d04a9822485b76":[1,0,0,0,0,46,1], -"structfmt_1_1v5_1_1internal_1_1int__checker.html#adc6b04d8bcc090c05a01e25080f920a5":[1,0,0,0,0,46,0], -"structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html":[1,0,0,0,0,47], -"structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html#a3260e491c4aafcf66b231bb65393a2ec":[1,0,0,0,0,47,1], -"structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html#ab06277d4ea35fde2ad8a12db818dfc89":[1,0,0,0,0,47,0], -"structfmt_1_1v5_1_1internal_1_1int__traits.html":[1,0,0,0,0,48], -"structfmt_1_1v5_1_1internal_1_1integer__sequence.html":[1,0,0,0,0,50], -"structfmt_1_1v5_1_1internal_1_1integer__sequence.html#a30390c74b90c382607d05dde0e88da0a":[1,0,0,0,0,50,1], -"structfmt_1_1v5_1_1internal_1_1integer__sequence.html#af7229e271e3b302e82cc70067c2bffbd":[1,0,0,0,0,50,0], -"structfmt_1_1v5_1_1internal_1_1is__integer.html":[1,0,0,0,0,51], -"structfmt_1_1v5_1_1internal_1_1is__integer.html#a86045dee4e1516ba984f9a7a73a8d784a628cfe22762b11844211a37c4bb2f264":[1,0,0,0,0,51,0], -"structfmt_1_1v5_1_1internal_1_1is__like__std__string_3_01fmt_1_1basic__string__view_3_01_char_01_4_01_4.html":[1,0,0,0,0,53], -"structfmt_1_1v5_1_1internal_1_1is__range__.html":[1,0,0,0,0,55], -"structfmt_1_1v5_1_1internal_1_1is__range___3_01_t_00_01typename_01std_1_1conditional_3_01false_00543cac082ebea7893cc13a711f6eb2b.html":[1,0,0,0,0,56], -"structfmt_1_1v5_1_1internal_1_1is__string.html":[1,0,0,0,0,58], -"structfmt_1_1v5_1_1internal_1_1is__string_3_01const_01std_1_1_f_i_l_e_01_5_01_4.html":[1,0,0,0,0,59], -"structfmt_1_1v5_1_1internal_1_1is__string_3_01std_1_1_f_i_l_e_01_5_01_4.html":[1,0,0,0,0,60], -"structfmt_1_1v5_1_1internal_1_1it__category.html":[1,0,0,0,0,63], -"structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html":[1,0,0,0,0,65], -"structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html#a40cd1ec991c81ebc79830a3e94f1f0d0":[1,0,0,0,0,65,0], -"structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html":[1,0,0,0,0,64], -"structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html#a76ab7e80d700bce301256059f7a38489":[1,0,0,0,0,64,0], -"structfmt_1_1v5_1_1internal_1_1make__integer__sequence.html":[1,0,0,0,0,67] +"structfmt_1_1v5_1_1format__handler.html#a717e330f9b9cfa519cbf97e5e2a81add":[2,0,0,0,32,0], +"structfmt_1_1v5_1_1format__handler.html#a988c9b12cdd78f32d51c231134317a9a":[2,0,0,0,32,3], +"structfmt_1_1v5_1_1format__handler.html#a9df20283c6cfc3b40e350665aa2bf021":[2,0,0,0,32,8], +"structfmt_1_1v5_1_1format__handler.html#ac8c589250f37514c3fac3a123698ac01":[2,0,0,0,32,7], +"structfmt_1_1v5_1_1format__handler.html#ad2e95af5d37c6f9d3e996085c978cad2":[2,0,0,0,32,6], +"structfmt_1_1v5_1_1format__handler.html#adcffafbbb51c42a17357ffc66e697fc7":[2,0,0,0,32,9], +"structfmt_1_1v5_1_1format__handler.html#af0a6c006dcf81a1e1b3db4ff9d400e6d":[2,0,0,0,32,1], +"structfmt_1_1v5_1_1format__handler.html#af45f0577c38773dae862118b947fd671":[2,0,0,0,32,2], +"structfmt_1_1v5_1_1format__to__n__args.html":[2,0,0,0,34], +"structfmt_1_1v5_1_1format__to__n__args.html#a68938d8d3d0df2ee1150ceba97964bc4":[2,0,0,0,34,0], +"structfmt_1_1v5_1_1format__to__n__context.html":[2,0,0,0,35], +"structfmt_1_1v5_1_1format__to__n__result.html":[2,0,0,0,36], +"structfmt_1_1v5_1_1format__to__n__result.html#a03f23327f9690a2407193ad112a1b65d":[2,0,0,0,36,0], +"structfmt_1_1v5_1_1format__to__n__result.html#a2c99d057867cf7e981ef53845a398f42":[2,0,0,0,36,1], +"structfmt_1_1v5_1_1formatter.html":[2,0,0,0,37], +"structfmt_1_1v5_1_1formatter.html#a4147e797582f75be18645d2b6aef4e57":[2,0,0,0,37,1], +"structfmt_1_1v5_1_1formatter.html#aeff27467b5654e9343ceb4cbdeb234c3":[2,0,0,0,37,0], +"structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html":[2,0,0,0,39], +"structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#a56962f9c47a1654f91ebdc5244b81f32":[2,0,0,0,39,1], +"structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#aeef2ffb1f84db7d17d426ff00b95c04d":[2,0,0,0,39,2], +"structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#af4b0d3f2b38c14b1d0cf4779e63af7cb":[2,0,0,0,39,0], +"structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html":[2,0,0,0,42], +"structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html#a0decc0ceee49ae7780113a741baf8742":[2,0,0,0,42,0], +"structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html#a6a4b8134330ce67c7c9e8e7db077b334":[2,0,0,0,42,1], +"structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html":[2,0,0,0,43], +"structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html#a3038ada3d70528a9d5e3b6968f9cb079":[2,0,0,0,43,0], +"structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html":[2,0,0,0,44], +"structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#a4a94d41481e57f5ebf8e873c6909654d":[2,0,0,0,44,0], +"structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#aa9f66948e4a9e80fde6dadcce7cca55a":[2,0,0,0,44,1], +"structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#ae41806a525f35f439447d6379a3dc57a":[2,0,0,0,44,2], +"structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html":[2,0,0,0,38], +"structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html#a4c578e1058ef3524652ae2d6f86cbbfa":[2,0,0,0,38,0], +"structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html":[2,0,0,0,40], +"structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#a12522d59cd6a134c4da248ee27a600bb":[2,0,0,0,40,2], +"structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#a53bae6e35b2355d33f2e73bf1c453002":[2,0,0,0,40,0], +"structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#ad995b1efdc0fef2ec8a4206c18f0e56f":[2,0,0,0,40,1], +"structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html":[2,0,0,0,41], +"structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#a0974bc78aab514b37ccfa573cd8400c6":[2,0,0,0,41,2], +"structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#a697c862f40a101129022409a60c612a1":[2,0,0,0,41,0], +"structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#afe698cc1f5147569d954e40bdab35eb7":[2,0,0,0,41,1], +"structfmt_1_1v5_1_1formatting__base.html":[2,0,0,0,45], +"structfmt_1_1v5_1_1formatting__base.html#acd8d05ac57daf149ec2d8fffb4ffb106":[2,0,0,0,45,0], +"structfmt_1_1v5_1_1formatting__range.html":[2,0,0,0,46], +"structfmt_1_1v5_1_1formatting__range.html#a36c05ab14e83d967e53328ea8660e03a":[2,0,0,0,46,4], +"structfmt_1_1v5_1_1formatting__range.html#a399497b7b12286bb0147f7d89699835a":[2,0,0,0,46,3], +"structfmt_1_1v5_1_1formatting__range.html#acaa8a58402e2e006e8c74eb5dd616182":[2,0,0,0,46,2], +"structfmt_1_1v5_1_1formatting__range.html#ad500eea3b7cf615169158b129d966e26":[2,0,0,0,46,1], +"structfmt_1_1v5_1_1formatting__range.html#ae80688cea4e88499a8aaf09b9b3e21f9":[2,0,0,0,46,0], +"structfmt_1_1v5_1_1formatting__range.html#aecf071a5da5a8aa12b872e66c12c0f03":[2,0,0,0,46,6], +"structfmt_1_1v5_1_1formatting__range.html#aff1b7e3cc3fe6dd0177e0a16bd11d257":[2,0,0,0,46,5], +"structfmt_1_1v5_1_1formatting__tuple.html":[2,0,0,0,47], +"structfmt_1_1v5_1_1formatting__tuple.html#a02c5fa0074e27305d21896c8c82c4d0f":[2,0,0,0,47,0], +"structfmt_1_1v5_1_1formatting__tuple.html#a233d1ca96854cb2b81bfc30ccca8e5d2":[2,0,0,0,47,3], +"structfmt_1_1v5_1_1formatting__tuple.html#a7b02d7eeab87b7ac85178e59ddcd252b":[2,0,0,0,47,5], +"structfmt_1_1v5_1_1formatting__tuple.html#a7dc63730dad2ee965f7d128ebbd8f7c1":[2,0,0,0,47,4], +"structfmt_1_1v5_1_1formatting__tuple.html#adcf53359096ce668a312c2d338bfe226":[2,0,0,0,47,1], +"structfmt_1_1v5_1_1formatting__tuple.html#ae2da340c4f35de9a4fe2a5d1f016accc":[2,0,0,0,47,2], +"structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html":[2,0,0,0,0,1], +"structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#a508568e9d0e8a08a672dde8e7d416330":[2,0,0,0,0,1,1], +"structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#a83152518bf4a4ee78ab164994593b134":[2,0,0,0,0,1,0], +"structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#ae1694c33443324d13f7b79f17a5f5ad4":[2,0,0,0,0,1,2], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html":[2,0,0,0,0,3,0], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#a3ec107f4cdd14d0eb7f1ae2a072b0c89":[2,0,0,0,0,3,0,4], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#a9ee2328a2106f91620d78431401d19ae":[2,0,0,0,0,3,0,0], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#aa48913a1f52a97dbba8436cd493810db":[2,0,0,0,0,3,0,2], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#ad45d0067f9a6f6edfe1c0f0a7ff50af5":[2,0,0,0,0,3,0,1], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#affa464f89a6f6fa5afda5dc7f405b962":[2,0,0,0,0,3,0,3], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html":[2,0,0,0,0,3,1], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a4bef3a86933f35c061589933b1fc36a2":[2,0,0,0,0,3,1,1], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a519ca34f6bded5481821e4c0ad29a9ba":[2,0,0,0,0,3,1,2], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a677c073f250fe756706c602548846794":[2,0,0,0,0,3,1,4], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#aa61244d241d6d4b5a8859df32e8d1c41":[2,0,0,0,0,3,1,0], +"structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#ae2344ac1cd01b0791888983b7b249063":[2,0,0,0,0,3,1,3], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html":[2,0,0,0,0,5], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a0ca425c4d66eb220b23180538508f089":[2,0,0,0,0,5,5], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a283634a312bcc2e6a5eaf7483a27860b":[2,0,0,0,0,5,3], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69":[2,0,0,0,0,5,0], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69a89b53b259b51cc1288cc429d907521d0":[2,0,0,0,0,5,0,1], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69abf8b717453e333c567d68786e862acfa":[2,0,0,0,0,5,0,2], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69af74dc3a4fdb7441bc5d0a3885e6b22b4":[2,0,0,0,0,5,0,0], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a830077cd847dfe72567f92bdb9a7b847":[2,0,0,0,0,5,2], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html#a8b82cfcb68b97554142d75a2d71afbcd":[2,0,0,0,0,5,6], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html#acdc7af3b0c98da49b1d8200d8a9c23ff":[2,0,0,0,0,5,1], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html#ae2a99fa912b67cda62fcce7a7c7bc976":[2,0,0,0,0,5,4], +"structfmt_1_1v5_1_1internal_1_1arg__ref.html#af240860ec3c7ab05495ec8380b3e3479":[2,0,0,0,0,5,7], +"structfmt_1_1v5_1_1internal_1_1auto__id.html":[2,0,0,0,0,6], +"structfmt_1_1v5_1_1internal_1_1basic__data.html":[2,0,0,0,0,8], +"structfmt_1_1v5_1_1internal_1_1basic__data.html#a195c2b45ae9bb0a953156d3ae7eb35ca":[2,0,0,0,0,8,5], +"structfmt_1_1v5_1_1internal_1_1basic__data.html#a4984044ce1b065540381b3694eb994b0":[2,0,0,0,0,8,4], +"structfmt_1_1v5_1_1internal_1_1basic__data.html#a5ea6f88946a0959275332ac157eb9775":[2,0,0,0,0,8,0], +"structfmt_1_1v5_1_1internal_1_1basic__data.html#a684a3b8ed9c908d5c1d4aea407ac18ae":[2,0,0,0,0,8,7], +"structfmt_1_1v5_1_1internal_1_1basic__data.html#a6da82443fd09335fe5cbe3fe39cbc97b":[2,0,0,0,0,8,6], +"structfmt_1_1v5_1_1internal_1_1basic__data.html#a7c75c3b052395aa783f67d1221946c27":[2,0,0,0,0,8,8], +"structfmt_1_1v5_1_1internal_1_1basic__data.html#ad815e597b46d92023beb025b464b4520":[2,0,0,0,0,8,1], +"structfmt_1_1v5_1_1internal_1_1basic__data.html#ad9d536a7e57a5e2dd100c1cbbb4f1100":[2,0,0,0,0,8,2], +"structfmt_1_1v5_1_1internal_1_1basic__data.html#ae51c63ec91f02e2dad5c1d3eedb7b532":[2,0,0,0,0,8,3], +"structfmt_1_1v5_1_1internal_1_1basic__data.html#aff0c2d26ec88801043953054e3bcc971":[2,0,0,0,0,8,9], +"structfmt_1_1v5_1_1internal_1_1char__counter.html":[2,0,0,0,0,10], +"structfmt_1_1v5_1_1internal_1_1char__counter.html#a0c5ba7253e9f0080698e4771cd4332b1":[2,0,0,0,0,10,0], +"structfmt_1_1v5_1_1internal_1_1char__counter.html#a100c9c7d1618245f315f83af27110d2b":[2,0,0,0,0,10,5], +"structfmt_1_1v5_1_1internal_1_1char__counter.html#a19a71ff0f2ccc8895dcc5f2977b0c2cd":[2,0,0,0,0,10,4], +"structfmt_1_1v5_1_1internal_1_1char__counter.html#a30c9aa9646ae4d285e4f850dc7c7d51c":[2,0,0,0,0,10,1], +"structfmt_1_1v5_1_1internal_1_1char__counter.html#a51b440b6cd612f4b83c3c6c4816f6022":[2,0,0,0,0,10,3], +"structfmt_1_1v5_1_1internal_1_1char__counter.html#acbc4f0c13cb3239010ff37f09049f72e":[2,0,0,0,0,10,2], +"structfmt_1_1v5_1_1internal_1_1char__t.html":[2,0,0,0,0,12], +"structfmt_1_1v5_1_1internal_1_1char__t.html#a096fd6ceeb1d27e1a62b6afeb611f391":[2,0,0,0,0,12,0], +"structfmt_1_1v5_1_1internal_1_1char__t.html#ac83141e2510982ccc56eea9c9cc74ccc":[2,0,0,0,0,12,1], +"structfmt_1_1v5_1_1internal_1_1char__traits.html":[2,0,0,0,0,13], +"structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html":[2,0,0,0,0,14], +"structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html#a649e42c11daf3f13c8cba34bb20bb649":[2,0,0,0,0,14,0], +"structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html":[2,0,0,0,0,15], +"structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html#addb0ff96690e7424d61c79b0ef47ffc4":[2,0,0,0,0,15,0], +"structfmt_1_1v5_1_1internal_1_1checked.html":[2,0,0,0,0,16], +"structfmt_1_1v5_1_1internal_1_1checked.html#ae50049ee2def62be6532372564182cac":[2,0,0,0,0,16,0], +"structfmt_1_1v5_1_1internal_1_1checked__args.html":[2,0,0,0,0,17], +"structfmt_1_1v5_1_1internal_1_1checked__args.html#a08f5fb05bf1d8da4eee00b15438c9f5d":[2,0,0,0,0,17,0], +"structfmt_1_1v5_1_1internal_1_1checked__args.html#a27369b0b9836336f73f4719a2f4e9fa3":[2,0,0,0,0,17,2], +"structfmt_1_1v5_1_1internal_1_1checked__args.html#a9b9dcf34426ab439f1df375db66b677c":[2,0,0,0,0,17,1], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html":[2,0,0,0,0,18], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a03ef6dd252f466dc9ef48e61adb97e62":[2,0,0,0,0,18,19], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a0eef44f4227621f82efdd96522a34cea":[2,0,0,0,0,18,12], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a1b49b5b3497e4da015a75c0f5ad77f8a":[2,0,0,0,0,18,4], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a1fb3b5911e2cfa3e99a19f660a4386a3":[2,0,0,0,0,18,7], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a2e995899ed1678d122629269247a911c":[2,0,0,0,0,18,13], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a3ea0a9ac1f2f6a92e28fc14bdd9cf044":[2,0,0,0,0,18,11], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a401617e182eb83c9dbb3c17fce04029a":[2,0,0,0,0,18,21], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a477b82b9af3dab4475588b9f4a6d3070":[2,0,0,0,0,18,22], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a5090856f227bd8922edeecf97ea8bc31":[2,0,0,0,0,18,20], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a5c580fdd162ee92928248fcbe380ced4":[2,0,0,0,0,18,15], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a73341707b4ec25420120be39cb1ad1f3":[2,0,0,0,0,18,10], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a75a9ec7180a8977b83bcaaba724f058f":[2,0,0,0,0,18,5], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a7ec73eba1f9686886b0cd6e73f69c5ed":[2,0,0,0,0,18,9], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a889e4a54d94853a3674df17d325e2cfc":[2,0,0,0,0,18,16], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a94a739330ac56034fb9bde5d89c1c2b8":[2,0,0,0,0,18,1], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a95cd0458553c10a26bd580c73d528a2e":[2,0,0,0,0,18,0], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a98e676383a1103f987671d3ae77e108c":[2,0,0,0,0,18,6], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#abc0fa900734b8934699a8705732f4394":[2,0,0,0,0,18,2], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aec0afcb1ea82fb8398061b69483726d1":[2,0,0,0,0,18,17], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aecf25d830a00bf920d3e366e946506f0":[2,0,0,0,0,18,3], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aef2fc6d8013c88e2b6589c015e4c826e":[2,0,0,0,0,18,8], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#af00dab6f03010eb7c0e076f61949aa85":[2,0,0,0,0,18,14], +"structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#af565f6815eef5198d9d9f792346aa599":[2,0,0,0,0,18,18], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html":[2,0,0,0,0,19], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a0ed40f7f5d0fb57d145b880699442049":[2,0,0,0,0,19,24], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a1388824f7e836e2bd1158854a8167e16":[2,0,0,0,0,19,12], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a1fc400d160bba953ff7412b6afce6ebc":[2,0,0,0,0,19,2], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a23fd5944d19602da875e39b45d66c737":[2,0,0,0,0,19,5], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a250161d0793ae68087d3d4b7c12c8e9b":[2,0,0,0,0,19,17], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a269fbfd37ea5e35b04d8ff1fd991138d":[2,0,0,0,0,19,33], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a27ccaaa51fec0226b7b508e9d21f02f7":[2,0,0,0,0,19,19], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a283a7a70218041ce28b0f3cea007655f":[2,0,0,0,0,19,1], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a2be98cd6ddecf487ba9ea1a66df807e3":[2,0,0,0,0,19,4], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a2e3caddf766cdd91f70527ee6b1d5506":[2,0,0,0,0,19,6], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a39304fcfe6bd5ba7cbf20d7dc8c25625":[2,0,0,0,0,19,22], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a393e3b451800b1933a7c8814cba0035e":[2,0,0,0,0,19,14], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a437caae6cfab224f6f4d5ec7d32939d4":[2,0,0,0,0,19,27], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a4db4fd25735fba269e0e462d2f0cebb2":[2,0,0,0,0,19,30], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a5219e7d23e107a5b02c3912cce41ba1c":[2,0,0,0,0,19,16], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a5836908b0ff253946807ec94b74885d6":[2,0,0,0,0,19,31], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a6f2ea84fef033aff9e450320bd6c6adc":[2,0,0,0,0,19,15], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a8695bfe8c62948476e06fb866f1b5abd":[2,0,0,0,0,19,10], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a998f57672158911587892e30b6442034":[2,0,0,0,0,19,20], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a9f368ece915dc9a49062e497ba8ffd3e":[2,0,0,0,0,19,11], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#aa0e5243ab84d9be54fbfc85691f93a24":[2,0,0,0,0,19,8], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#aa41c3019274a95fe19f1abf2013311a3":[2,0,0,0,0,19,18], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ab42b53e1a929f512754d0f8c136ab18c":[2,0,0,0,0,19,3], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ab8d234f82d65181090cdf1602871e485":[2,0,0,0,0,19,25], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#abb96cb6058ee5cd88fff52e08951913f":[2,0,0,0,0,19,23], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ac229529f4628b228142ad3babb581225":[2,0,0,0,0,19,29], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ac752c273d5033c35d1c8bd1aacc7efd4":[2,0,0,0,0,19,9], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#acabd988cd5815af1577389e5576359a5":[2,0,0,0,0,19,7], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ace51dbe524dffc062d59c9464587e9dd":[2,0,0,0,0,19,32], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad11342e8d7b36dc1fc82aa5e81e5a33c":[2,0,0,0,0,19,21], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad518a05301185cec644e0a2aa55981f8":[2,0,0,0,0,19,28], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad5e36628d12c268b31c170ae1f41de17":[2,0,0,0,0,19,34], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ae0c74a5cd09f1a944f76da410d337c60":[2,0,0,0,0,19,0], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ae7113c63bfe389915537b985236ea3e2":[2,0,0,0,0,19,26], +"structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#af3f1770368c80ca2261b51f14c96f0c1":[2,0,0,0,0,19,13], +"structfmt_1_1v5_1_1internal_1_1color__type.html":[2,0,0,0,0,20], +"structfmt_1_1v5_1_1internal_1_1color__type.html#a160b5a017452a64fb874b331153ada6e":[2,0,0,0,0,20,1], +"structfmt_1_1v5_1_1internal_1_1color__type.html#a288984b7a227bda31470628567a894fa":[2,0,0,0,0,20,2], +"structfmt_1_1v5_1_1internal_1_1color__type.html#a56ecbd5d058a106670bf111154651c25":[2,0,0,0,0,20,5], +"structfmt_1_1v5_1_1internal_1_1color__type.html#a6ccc6a1b7eabca5301b99a7d6c0dc0b9":[2,0,0,0,0,20,3], +"structfmt_1_1v5_1_1internal_1_1color__type.html#a858e477eabe77aa1062ef358089691de":[2,0,0,0,0,20,4], +"structfmt_1_1v5_1_1internal_1_1color__type.html#adf5946407d6fd20727ce475d2843a4b7":[2,0,0,0,0,20,6], +"structfmt_1_1v5_1_1internal_1_1conditional__helper.html":[2,0,0,0,0,21], +"structfmt_1_1v5_1_1internal_1_1custom__value.html":[2,0,0,0,0,27], +"structfmt_1_1v5_1_1internal_1_1custom__value.html#ac45d1a6dc108a21b27aea69d628f315c":[2,0,0,0,0,27,0], +"structfmt_1_1v5_1_1internal_1_1custom__value.html#adae3c0875aa70ef39a434d0e9756ae12":[2,0,0,0,0,27,1], +"structfmt_1_1v5_1_1internal_1_1dummy__int.html":[2,0,0,0,0,30], +"structfmt_1_1v5_1_1internal_1_1dummy__int.html#a9bcdf394ef31a10161975dcdbed86c25":[2,0,0,0,0,30,1], +"structfmt_1_1v5_1_1internal_1_1dummy__int.html#a9cc59ebeafaa73368d404b3f22de4d43":[2,0,0,0,0,30,0], +"structfmt_1_1v5_1_1internal_1_1dummy__string__view.html":[2,0,0,0,0,31], +"structfmt_1_1v5_1_1internal_1_1dummy__string__view.html#a1a7f6fcc70a0b038374b78d2b5e34a60":[2,0,0,0,0,31,0], +"structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html":[2,0,0,0,0,32], +"structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html#a83d7ae45b8fc003f531e2f996b51c9b3":[2,0,0,0,0,32,1], +"structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html#a889a59c0e42b1be665f320085fecd117":[2,0,0,0,0,32,0], +"structfmt_1_1v5_1_1internal_1_1error__handler.html":[2,0,0,0,0,34], +"structfmt_1_1v5_1_1internal_1_1error__handler.html#a6649671e792c4497c6264ee839d00b72":[2,0,0,0,0,34,1], +"structfmt_1_1v5_1_1internal_1_1error__handler.html#ab0b904ff6b411817d4db4d9bda9240e6":[2,0,0,0,0,34,0], +"structfmt_1_1v5_1_1internal_1_1error__handler.html#af917438f30466b0b8cd4de4f8b549ab9":[2,0,0,0,0,34,2], +"structfmt_1_1v5_1_1internal_1_1fill.html":[2,0,0,0,0,35], +"structfmt_1_1v5_1_1internal_1_1fill.html#a8ac696cf33afd220f17fea77b4fd9df2":[2,0,0,0,0,35,0], +"structfmt_1_1v5_1_1internal_1_1fill.html#af4901adffe747a5563f73ec9e640420c":[2,0,0,0,0,35,1], +"structfmt_1_1v5_1_1internal_1_1format__type.html":[2,0,0,0,0,38], +"structfmt_1_1v5_1_1internal_1_1function.html":[2,0,0,0,0,41], +"structfmt_1_1v5_1_1internal_1_1function_1_1result.html":[2,0,0,0,0,41,0], +"structfmt_1_1v5_1_1internal_1_1function_1_1result.html#a10b35177d5430fc9e9fee0301fa43ff2":[2,0,0,0,0,41,0,0], +"structfmt_1_1v5_1_1internal_1_1gen__digits__params.html":[2,0,0,0,0,42], +"structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#a46a9d3e58fa1f2918ee6285933762786":[2,0,0,0,0,42,0], +"structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#a4d9d74312532c965bddc7eb88d79600d":[2,0,0,0,0,42,3], +"structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#ae5d119f024f6844f366eacbb80dc905b":[2,0,0,0,0,42,1], +"structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#af94ccb0990229d78c551373b07abb3b2":[2,0,0,0,0,42,2], +"structfmt_1_1v5_1_1internal_1_1get__type.html":[2,0,0,0,0,43], +"structfmt_1_1v5_1_1internal_1_1get__type.html#a3e8fae3e67d4ec2f6af456a51a6cff16":[2,0,0,0,0,43,1], +"structfmt_1_1v5_1_1internal_1_1get__type.html#af088bfff6645d7e54268061ca31b9d2f":[2,0,0,0,0,43,0], +"structfmt_1_1v5_1_1internal_1_1id__adapter.html":[2,0,0,0,0,44], +"structfmt_1_1v5_1_1internal_1_1id__adapter.html#a071bc1ed2aaa59cfbfccefb11d0f0cc4":[2,0,0,0,0,44,4], +"structfmt_1_1v5_1_1internal_1_1id__adapter.html#a281a7335138c4e7a2bb5f9c7456659e8":[2,0,0,0,0,44,3], +"structfmt_1_1v5_1_1internal_1_1id__adapter.html#a64e5a16f6183b57476f9e15af2aaf866":[2,0,0,0,0,44,2], +"structfmt_1_1v5_1_1internal_1_1id__adapter.html#a75ba87fda26a74c86407b89b4785fcc0":[2,0,0,0,0,44,0], +"structfmt_1_1v5_1_1internal_1_1id__adapter.html#ae84a96563d3159d5749665b00f000758":[2,0,0,0,0,44,1], +"structfmt_1_1v5_1_1internal_1_1init.html":[2,0,0,0,0,45], +"structfmt_1_1v5_1_1internal_1_1init.html#a033f79651b7bafcfe24e07f616e5285f":[2,0,0,0,0,45,1], +"structfmt_1_1v5_1_1internal_1_1init.html#a3d9e6c757b3ee6700cf3c04fe8eedc24":[2,0,0,0,0,45,3], +"structfmt_1_1v5_1_1internal_1_1init.html#ac7b59b84cdac4e0966b101c95c03c0b3":[2,0,0,0,0,45,0], +"structfmt_1_1v5_1_1internal_1_1init.html#adc568107405c8c92081c28f5961d76d7":[2,0,0,0,0,45,2], +"structfmt_1_1v5_1_1internal_1_1int__checker.html":[2,0,0,0,0,46], +"structfmt_1_1v5_1_1internal_1_1int__checker.html#a3e21f15ef6ad577314d04a9822485b76":[2,0,0,0,0,46,1], +"structfmt_1_1v5_1_1internal_1_1int__checker.html#adc6b04d8bcc090c05a01e25080f920a5":[2,0,0,0,0,46,0], +"structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html":[2,0,0,0,0,47], +"structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html#a3260e491c4aafcf66b231bb65393a2ec":[2,0,0,0,0,47,1], +"structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html#ab06277d4ea35fde2ad8a12db818dfc89":[2,0,0,0,0,47,0], +"structfmt_1_1v5_1_1internal_1_1int__traits.html":[2,0,0,0,0,48], +"structfmt_1_1v5_1_1internal_1_1integer__sequence.html":[2,0,0,0,0,50], +"structfmt_1_1v5_1_1internal_1_1integer__sequence.html#a30390c74b90c382607d05dde0e88da0a":[2,0,0,0,0,50,1], +"structfmt_1_1v5_1_1internal_1_1integer__sequence.html#af7229e271e3b302e82cc70067c2bffbd":[2,0,0,0,0,50,0], +"structfmt_1_1v5_1_1internal_1_1is__integer.html":[2,0,0,0,0,51], +"structfmt_1_1v5_1_1internal_1_1is__integer.html#a86045dee4e1516ba984f9a7a73a8d784a628cfe22762b11844211a37c4bb2f264":[2,0,0,0,0,51,0], +"structfmt_1_1v5_1_1internal_1_1is__like__std__string_3_01fmt_1_1basic__string__view_3_01_char_01_4_01_4.html":[2,0,0,0,0,53], +"structfmt_1_1v5_1_1internal_1_1is__range__.html":[2,0,0,0,0,55], +"structfmt_1_1v5_1_1internal_1_1is__range___3_01_t_00_01typename_01std_1_1conditional_3_01false_00543cac082ebea7893cc13a711f6eb2b.html":[2,0,0,0,0,56], +"structfmt_1_1v5_1_1internal_1_1is__string.html":[2,0,0,0,0,58], +"structfmt_1_1v5_1_1internal_1_1is__string_3_01const_01std_1_1_f_i_l_e_01_5_01_4.html":[2,0,0,0,0,59], +"structfmt_1_1v5_1_1internal_1_1is__string_3_01std_1_1_f_i_l_e_01_5_01_4.html":[2,0,0,0,0,60], +"structfmt_1_1v5_1_1internal_1_1it__category.html":[2,0,0,0,0,63], +"structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html":[2,0,0,0,0,65], +"structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html#a40cd1ec991c81ebc79830a3e94f1f0d0":[2,0,0,0,0,65,0], +"structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html":[2,0,0,0,0,64], +"structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html#a76ab7e80d700bce301256059f7a38489":[2,0,0,0,0,64,0] }; diff --git a/docs/null__mutex_8h.html b/docs/null__mutex_8h.html index 61b27ea..0e3bd4d 100644 --- a/docs/null__mutex_8h.html +++ b/docs/null__mutex_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/null__mutex_8h_source.html b/docs/null__mutex_8h_source.html index f65a56c..ac9ab13 100644 --- a/docs/null__mutex_8h_source.html +++ b/docs/null__mutex_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/null__sink_8h.html b/docs/null__sink_8h.html index b87d9e4..6083f24 100644 --- a/docs/null__sink_8h.html +++ b/docs/null__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/null__sink_8h_source.html b/docs/null__sink_8h_source.html index f1a0b75..6cdaabf 100644 --- a/docs/null__sink_8h_source.html +++ b/docs/null__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/os_8h.html b/docs/os_8h.html index f991ab1..dc1218b 100644 --- a/docs/os_8h.html +++ b/docs/os_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/os_8h_source.html b/docs/os_8h_source.html index d6ed92e..3d74c35 100644 --- a/docs/os_8h_source.html +++ b/docs/os_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/ostr_8h.html b/docs/ostr_8h.html index 6959c8c..3a18847 100644 --- a/docs/ostr_8h.html +++ b/docs/ostr_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/ostr_8h_source.html b/docs/ostr_8h_source.html index a7ae34e..b9c8e0c 100644 --- a/docs/ostr_8h_source.html +++ b/docs/ostr_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/ostream_8h.html b/docs/ostream_8h.html index e2bbb06..6358470 100644 --- a/docs/ostream_8h.html +++ b/docs/ostream_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/ostream_8h_source.html b/docs/ostream_8h_source.html index 32bc9c6..af39458 100644 --- a/docs/ostream_8h_source.html +++ b/docs/ostream_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/ostream__sink_8h.html b/docs/ostream__sink_8h.html index f33189f..d3cfeef 100644 --- a/docs/ostream__sink_8h.html +++ b/docs/ostream__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/ostream__sink_8h_source.html b/docs/ostream__sink_8h_source.html index d4d7913..2fcb0ed 100644 --- a/docs/ostream__sink_8h_source.html +++ b/docs/ostream__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/pattern__formatter_8h.html b/docs/pattern__formatter_8h.html index f006bcf..9248281 100644 --- a/docs/pattern__formatter_8h.html +++ b/docs/pattern__formatter_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/pattern__formatter_8h_source.html b/docs/pattern__formatter_8h_source.html index 45c9303..bd69851 100644 --- a/docs/pattern__formatter_8h_source.html +++ b/docs/pattern__formatter_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/periodic__worker_8h.html b/docs/periodic__worker_8h.html index a3ee1b7..0c46a42 100644 --- a/docs/periodic__worker_8h.html +++ b/docs/periodic__worker_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/periodic__worker_8h_source.html b/docs/periodic__worker_8h_source.html index 9ae50bd..6e920e9 100644 --- a/docs/periodic__worker_8h_source.html +++ b/docs/periodic__worker_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/posix_8h.html b/docs/posix_8h.html index 190cc6d..c607a9a 100644 --- a/docs/posix_8h.html +++ b/docs/posix_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/posix_8h_source.html b/docs/posix_8h_source.html index 877507e..5639378 100644 --- a/docs/posix_8h_source.html +++ b/docs/posix_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/printf_8h.html b/docs/printf_8h.html index 11d682e..7c9809f 100644 --- a/docs/printf_8h.html +++ b/docs/printf_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/printf_8h_source.html b/docs/printf_8h_source.html index 74b1999..cfe413b 100644 --- a/docs/printf_8h_source.html +++ b/docs/printf_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/protocol_8h.html b/docs/protocol_8h.html index efc70e6..d5bda59 100644 --- a/docs/protocol_8h.html +++ b/docs/protocol_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/protocol_8h_source.html b/docs/protocol_8h_source.html index 5f26067..922405c 100644 --- a/docs/protocol_8h_source.html +++ b/docs/protocol_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/ranges_8h.html b/docs/ranges_8h.html index 4c5a512..0c1ba6d 100644 --- a/docs/ranges_8h.html +++ b/docs/ranges_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/ranges_8h_source.html b/docs/ranges_8h_source.html index 2cc9fad..b0ac8c3 100644 --- a/docs/ranges_8h_source.html +++ b/docs/ranges_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/registry_8h.html b/docs/registry_8h.html index ca97869..13e7c4f 100644 --- a/docs/registry_8h.html +++ b/docs/registry_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/registry_8h_source.html b/docs/registry_8h_source.html index 68ed3d6..6ebd5a4 100644 --- a/docs/registry_8h_source.html +++ b/docs/registry_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/rotating__file__sink_8h.html b/docs/rotating__file__sink_8h.html index b876bc1..4573f8c 100644 --- a/docs/rotating__file__sink_8h.html +++ b/docs/rotating__file__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/rotating__file__sink_8h_source.html b/docs/rotating__file__sink_8h_source.html index e2c43e3..91e78c1 100644 --- a/docs/rotating__file__sink_8h_source.html +++ b/docs/rotating__file__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/sample.png b/docs/sample.png new file mode 100644 index 0000000..42ca34f Binary files /dev/null and b/docs/sample.png differ diff --git a/docs/sdk.png b/docs/sdk.png new file mode 100644 index 0000000..95a886d Binary files /dev/null and b/docs/sdk.png differ diff --git a/docs/sdk_init.png b/docs/sdk_init.png new file mode 100644 index 0000000..058d753 Binary files /dev/null and b/docs/sdk_init.png differ diff --git a/docs/search/all_0.js b/docs/search/all_0.js index 15bb3b6..2936573 100644 --- a/docs/search/all_0.js +++ b/docs/search/all_0.js @@ -1,8 +1,4 @@ var searchData= [ - ['_5f_5fhas_5ffeature',['__has_feature',['../os_8h.html#af989845e24678c452b9222afdac95e7f',1,'os.h']]], - ['_5ffinite',['_finite',['../namespacefmt_1_1v5_1_1internal.html#a4750c83c90c5d48c7af7389dff6c0ba8',1,'fmt::v5::internal']]], - ['_5fisnan',['_isnan',['../namespacefmt_1_1v5_1_1internal.html#a8766cc653a2cb47cefc94592e5125239',1,'fmt::v5::internal']]], - ['_5fthread_5fid',['_thread_id',['../namespacespdlog_1_1details_1_1os.html#ab397aa6b937e5d4624878dfd2e3a0083',1,'spdlog::details::os']]], - ['_5funchecked_5ftype',['_Unchecked_type',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a88b962009c4abb5b83981b8952bbb1ee',1,'fmt::v5::internal::counting_iterator::_Unchecked_type()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a09ce2b9fd471cbd9603739d41288a72c',1,'fmt::v5::internal::truncating_iterator_base::_Unchecked_type()']]] + ['1_20introduction',['1 Introduction',['../index.html',1,'']]] ]; diff --git a/docs/search/all_1.js b/docs/search/all_1.js index 9e97ab1..15bb3b6 100644 --- a/docs/search/all_1.js +++ b/docs/search/all_1.js @@ -1,73 +1,8 @@ var searchData= [ - ['a_5fformatter',['a_formatter',['../classspdlog_1_1details_1_1a__formatter.html',1,'spdlog::details::a_formatter'],['../classspdlog_1_1details_1_1_a__formatter.html',1,'spdlog::details::A_formatter'],['../classspdlog_1_1details_1_1a__formatter.html#a48d1f1eba77e826b69ff1e6eea389b63',1,'spdlog::details::a_formatter::a_formatter()'],['../classspdlog_1_1details_1_1_a__formatter.html#aaa0b668428ff16e07a5258575b711955',1,'spdlog::details::A_formatter::A_formatter()']]], - ['abs_5fvalue',['abs_value',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html#ac9041c9b005e35c05a5296f3233954e3',1,'fmt::v5::basic_writer::int_writer::dec_writer::abs_value()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html#aa24440fe129d052f4a8a628675d437c9',1,'fmt::v5::basic_writer::int_writer::bin_writer::abs_value()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html#a94c9f59f76f17baa5e58a9f1d2d825d8',1,'fmt::v5::basic_writer::int_writer::num_writer::abs_value()']]], - ['add_5fch',['add_ch',['../classspdlog_1_1details_1_1aggregate__formatter.html#aa4a450cafac2ed6ef1fdc6dbda962ac6',1,'spdlog::details::aggregate_formatter']]], - ['add_5fdelimiter_5fspaces',['add_delimiter_spaces',['../structfmt_1_1v5_1_1formatting__range.html#ad500eea3b7cf615169158b129d966e26',1,'fmt::v5::formatting_range::add_delimiter_spaces()'],['../structfmt_1_1v5_1_1formatting__tuple.html#adcf53359096ce668a312c2d338bfe226',1,'fmt::v5::formatting_tuple::add_delimiter_spaces()']]], - ['add_5fprepostfix_5fspace',['add_prepostfix_space',['../structfmt_1_1v5_1_1formatting__range.html#acaa8a58402e2e006e8c74eb5dd616182',1,'fmt::v5::formatting_range::add_prepostfix_space()'],['../structfmt_1_1v5_1_1formatting__tuple.html#ae2da340c4f35de9a4fe2a5d1f016accc',1,'fmt::v5::formatting_tuple::add_prepostfix_space()']]], - ['add_5fsink',['add_sink',['../classspdlog_1_1sinks_1_1dist__sink.html#ae2250f59f23ecaf3214da6059198ad3c',1,'spdlog::sinks::dist_sink']]], - ['add_5fthousands_5fsep',['add_thousands_sep',['../classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html',1,'fmt::v5::internal::add_thousands_sep< Char >'],['../classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#abf5e4ae8e94f8574fcd68d2f049df8d2',1,'fmt::v5::internal::add_thousands_sep::add_thousands_sep()']]], - ['addhubtoconnect',['AddHubToConnect',['../livox__sdk_8h.html#ac055ce23f0dd1178665ae7f584ce9f50',1,'livox_sdk.h']]], - ['addlidartoconnect',['AddLidarToConnect',['../livox__sdk_8h.html#a993eddc8d0714c7d7b7a9f08c524639c',1,'livox_sdk.h']]], - ['advance_5fto',['advance_to',['../classfmt_1_1v5_1_1basic__parse__context.html#a4ae214f4e777ec14ab4f7de4b312d2a6',1,'fmt::v5::basic_parse_context::advance_to()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#ae6257fa7c87f16830f7bbb9263991ef8',1,'fmt::v5::internal::context_base::advance_to()']]], - ['aggregate_5fformatter',['aggregate_formatter',['../classspdlog_1_1details_1_1aggregate__formatter.html',1,'spdlog::details::aggregate_formatter'],['../classspdlog_1_1details_1_1aggregate__formatter.html#a068c157540411ecb4932860266effb82',1,'spdlog::details::aggregate_formatter::aggregate_formatter()']]], - ['alice_5fblue',['alice_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a6d65173999078f89f8d4e01036aea8a4',1,'fmt::v5']]], - ['align',['align',['../structfmt_1_1v5_1_1align__spec.html#a970282b2f4fa19d907a7067d905304a7',1,'fmt::v5::align_spec']]], - ['align_5f',['align_',['../structfmt_1_1v5_1_1align__spec.html#a5c40750e67850f9e430ac1278890f96d',1,'fmt::v5::align_spec']]], - ['align_5fcenter',['ALIGN_CENTER',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8a6cf58d6a173204a962db3dae30a01d8c',1,'fmt::v5']]], - ['align_5fdefault',['ALIGN_DEFAULT',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8a32f6d887598434ed14e7579a0b15e1be',1,'fmt::v5']]], - ['align_5fleft',['ALIGN_LEFT',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8a824a96ce4113d35438ba2c14845de1c3',1,'fmt::v5']]], - ['align_5fnumeric',['ALIGN_NUMERIC',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8aa3ce3cd4b41a0dfcb8376a8072a75cda',1,'fmt::v5']]], - ['align_5fright',['ALIGN_RIGHT',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8ab47b991779038b4bc5f4558423a749b1',1,'fmt::v5']]], - ['align_5fspec',['align_spec',['../structfmt_1_1v5_1_1align__spec.html',1,'fmt::v5::align_spec'],['../structfmt_1_1v5_1_1align__spec.html#a74632126deecb543f2e2d08ad0d52d1c',1,'fmt::v5::align_spec::align_spec()']]], - ['alignment',['alignment',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8',1,'fmt::v5']]], - ['allocate',['allocate',['../namespacefmt_1_1v5_1_1internal.html#aa1fa61dacd2056cf7bbc9010b6c3e9ff',1,'fmt::v5::internal']]], - ['alternative',['alternative',['../namespacefmt_1_1v5_1_1internal.html#a8217980ba3189c7d8c3ce93f7d8e4c74aa04fe4e390a7c7d5d4583f85d24e164d',1,'fmt::v5::internal']]], - ['ampm',['ampm',['../namespacespdlog_1_1details.html#a6c1d83e70c17aa8427909d1c14bb1dc4',1,'spdlog::details']]], - ['android_5flogger_5fmt',['android_logger_mt',['../namespacespdlog.html#a0811adb1075181f73abc87c624fbff7e',1,'spdlog']]], - ['android_5flogger_5fst',['android_logger_st',['../namespacespdlog.html#aab5b508d51de238919a570cf3ca6d3db',1,'spdlog']]], - ['android_5fsink',['android_sink',['../classspdlog_1_1sinks_1_1android__sink.html',1,'spdlog::sinks::android_sink< Mutex >'],['../classspdlog_1_1sinks_1_1android__sink.html#afc2727bf62737809cd3f2105e5637540',1,'spdlog::sinks::android_sink::android_sink()']]], - ['android_5fsink_2eh',['android_sink.h',['../android__sink_8h.html',1,'']]], - ['android_5fsink_5fmt',['android_sink_mt',['../namespacespdlog_1_1sinks.html#afa3ee88e3e87a4908cd80f8ccd4fdd3e',1,'spdlog::sinks']]], - ['android_5fsink_5fst',['android_sink_st',['../namespacespdlog_1_1sinks.html#a38acf93862031f1db0e4bdcf8e8b18f3',1,'spdlog::sinks']]], - ['ansi_5fcolor_5fescape',['ansi_color_escape',['../structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html',1,'fmt::v5::internal::ansi_color_escape< Char >'],['../structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#a83152518bf4a4ee78ab164994593b134',1,'fmt::v5::internal::ansi_color_escape::ansi_color_escape(internal::color_type text_color, const char *esc)'],['../structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#a508568e9d0e8a08a672dde8e7d416330',1,'fmt::v5::internal::ansi_color_escape::ansi_color_escape(emphasis em)']]], - ['ansicolor_5fsink',['ansicolor_sink',['../classspdlog_1_1sinks_1_1ansicolor__sink.html',1,'spdlog::sinks::ansicolor_sink< TargetStream, ConsoleMutex >'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#aed8c41cc6f792b27bc37d2f46536268d',1,'spdlog::sinks::ansicolor_sink::ansicolor_sink()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab169c076bac30ee54cf369a7f6bfb2ea',1,'spdlog::sinks::ansicolor_sink::ansicolor_sink(const ansicolor_sink &other)=delete']]], - ['ansicolor_5fsink_2eh',['ansicolor_sink.h',['../ansicolor__sink_8h.html',1,'']]], - ['ansicolor_5fstderr_5fsink_5fmt',['ansicolor_stderr_sink_mt',['../namespacespdlog_1_1sinks.html#aa12104ff6999c8908f687c3eb87d827e',1,'spdlog::sinks']]], - ['ansicolor_5fstderr_5fsink_5fst',['ansicolor_stderr_sink_st',['../namespacespdlog_1_1sinks.html#a3d8d6c5070124583420003b8c00ec441',1,'spdlog::sinks']]], - ['ansicolor_5fstdout_5fsink_5fmt',['ansicolor_stdout_sink_mt',['../namespacespdlog_1_1sinks.html#a10475192b7db414c386fbccb7401d852',1,'spdlog::sinks']]], - ['ansicolor_5fstdout_5fsink_5fst',['ansicolor_stdout_sink_st',['../namespacespdlog_1_1sinks.html#aa30d2f8d27e36f73043723a42199fd7b',1,'spdlog::sinks']]], - ['antique_5fwhite',['antique_white',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5478409977d30af9f13744df6850c5ac',1,'fmt::v5']]], - ['append',['append',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a5c6d1a6230a4c8e713244bbdd63a1a24',1,'fmt::v5::internal::basic_buffer::append()'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a5a8b13e38107753a839767adae553ed2',1,'fmt::v5::internal::prettify_handler::append(ptrdiff_t n, char c)'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aa0537d2fca130c630cdbc7d7e06bc4cf',1,'fmt::v5::internal::prettify_handler::append(char c)'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#a0c5ba7253e9f0080698e4771cd4332b1',1,'fmt::v5::internal::char_counter::append(ptrdiff_t n, char)'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#a30c9aa9646ae4d285e4f850dc7c7d51c',1,'fmt::v5::internal::char_counter::append(char)']]], - ['append_5fbuf',['append_buf',['../namespacespdlog_1_1details_1_1fmt__helper.html#a1cd64e7ba833d726c77344aa9fb85e6a',1,'spdlog::details::fmt_helper']]], - ['append_5fint',['append_int',['../namespacespdlog_1_1details_1_1fmt__helper.html#a0d2621043fa718e54ffcaa2e9812dfa4',1,'spdlog::details::fmt_helper']]], - ['append_5fstring_5fview',['append_string_view',['../namespacespdlog_1_1details_1_1fmt__helper.html#a603f4d0d8853a61610a0042d5d62fe94',1,'spdlog::details::fmt_helper']]], - ['apply_5fall',['apply_all',['../classspdlog_1_1details_1_1registry.html#a781454ea62603cfaebddf14ec2ec9985',1,'spdlog::details::registry::apply_all()'],['../namespacespdlog.html#a33b888a87a0fccc7b7dd5b89413ce6b7',1,'spdlog::apply_all()']]], - ['aqua',['aqua',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a65cb59645b852c2394ba3ff8b295e83c',1,'fmt::v5']]], - ['aquamarine',['aquamarine',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a39d8e1a1a14670b0a3be357c318867ac',1,'fmt::v5']]], - ['arg',['arg',['../structfmt_1_1v5_1_1format__handler.html#a9df20283c6cfc3b40e350665aa2bf021',1,'fmt::v5::format_handler::arg()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#a6d08d519c4919fba06e32e08f7395cba',1,'fmt::v5::internal::context_base::arg()'],['../namespacefmt_1_1v5.html#a3ef982cd96cf71b5fa7c37269012dafd',1,'fmt::v5::arg(string_view name, const T &arg)'],['../namespacefmt_1_1v5.html#a988bfc81f48221fec1910c217bc0dfcc',1,'fmt::v5::arg(wstring_view name, const T &arg)'],['../namespacefmt_1_1v5.html#a829ae121113d346b82fd668a780a671c',1,'fmt::v5::arg(S, internal::named_arg< T, Char >)=delete']]], - ['arg_5fconverter',['arg_converter',['../classfmt_1_1v5_1_1internal_1_1arg__converter.html',1,'fmt::v5::internal::arg_converter< T, Context >'],['../classfmt_1_1v5_1_1internal_1_1arg__converter.html#aef40801d8966d8da086dd0507a0e88b3',1,'fmt::v5::internal::arg_converter::arg_converter()']]], - ['arg_5fformatter',['arg_formatter',['../classfmt_1_1v5_1_1arg__formatter.html',1,'fmt::v5::arg_formatter< Range >'],['../classfmt_1_1v5_1_1arg__formatter.html#a0925c1315a81b793b5e020e496c9234c',1,'fmt::v5::arg_formatter::arg_formatter(context_type &ctx, format_specs *spec=NULL)'],['../classfmt_1_1v5_1_1arg__formatter.html#adcd84c55fb1ae473917660743d000153',1,'fmt::v5::arg_formatter::arg_formatter(context_type &ctx, format_specs &spec)']]], - ['arg_5fformatter_5fbase',['arg_formatter_base',['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html',1,'fmt::v5::internal::arg_formatter_base< Range >'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a1f09a08ddcb054ae0d7dec1e8183ec9a',1,'fmt::v5::internal::arg_formatter_base::arg_formatter_base()']]], - ['arg_5fjoin',['arg_join',['../structfmt_1_1v5_1_1arg__join.html',1,'fmt::v5::arg_join< It, Char >'],['../structfmt_1_1v5_1_1arg__join.html#a6d52e78c112984ea0d5a0344d8be2ae4',1,'fmt::v5::arg_join::arg_join()']]], - ['arg_5fmap',['arg_map',['../classfmt_1_1v5_1_1internal_1_1arg__map.html',1,'fmt::v5::internal::arg_map< Context >'],['../classfmt_1_1v5_1_1internal_1_1arg__map.html#a88a37695bca579d00ebc51586639b592',1,'fmt::v5::internal::arg_map::arg_map()']]], - ['arg_5fmap_3c_20fmt_3a_3av5_3a_3abasic_5fformat_5fcontext_20_3e',['arg_map< fmt::v5::basic_format_context >',['../classfmt_1_1v5_1_1internal_1_1arg__map.html',1,'fmt::v5::internal']]], - ['arg_5fref',['arg_ref',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html',1,'fmt::v5::internal::arg_ref< Char >'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#acdc7af3b0c98da49b1d8200d8a9c23ff',1,'fmt::v5::internal::arg_ref::arg_ref()'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a830077cd847dfe72567f92bdb9a7b847',1,'fmt::v5::internal::arg_ref::arg_ref(unsigned index)'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a283634a312bcc2e6a5eaf7483a27860b',1,'fmt::v5::internal::arg_ref::arg_ref(basic_string_view< Char > nm)']]], - ['arg_5fref_3c_20char_5ftype_20_3e',['arg_ref< char_type >',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html',1,'fmt::v5::internal']]], - ['args',['args',['../classfmt_1_1v5_1_1internal_1_1context__base.html#a47af48a658d7c01909e2a7f5f522702a',1,'fmt::v5::internal::context_base']]], - ['args_5f',['args_',['../classfmt_1_1v5_1_1basic__format__args.html#aae77a07c32a92e56243ff0a76f51eaff',1,'fmt::v5::basic_format_args']]], - ['as_5fnamed_5farg',['as_named_arg',['../classfmt_1_1v5_1_1internal_1_1value.html#a98a35538aba4deefa8e5f640f1d96648',1,'fmt::v5::internal::value']]], - ['async_2eh',['async.h',['../async_8h.html',1,'']]], - ['async_5ffactory',['async_factory',['../namespacespdlog.html#a962b94a80258f9a202d590888349577c',1,'spdlog']]], - ['async_5ffactory_5fimpl',['async_factory_impl',['../structspdlog_1_1async__factory__impl.html',1,'spdlog']]], - ['async_5ffactory_5fnonblock',['async_factory_nonblock',['../namespacespdlog.html#a796f2e548cff4f12a5b2a52b07d3128b',1,'spdlog']]], - ['async_5flogger',['async_logger',['../classspdlog_1_1async__logger.html',1,'spdlog::async_logger'],['../classspdlog_1_1async__logger.html#a2a74bf8d8d850ea760396ba8ae55d552',1,'spdlog::async_logger::async_logger(std::string logger_name, It begin, It end, std::weak_ptr< details::thread_pool > tp, async_overflow_policy overflow_policy=async_overflow_policy::block)'],['../classspdlog_1_1async__logger.html#ad42c05a733917cc7e7b3d9d2ad10a47f',1,'spdlog::async_logger::async_logger(std::string logger_name, sinks_init_list sinks_list, std::weak_ptr< details::thread_pool > tp, async_overflow_policy overflow_policy=async_overflow_policy::block)'],['../classspdlog_1_1async__logger.html#a99dcf454b74db04fe3300c68baff4d79',1,'spdlog::async_logger::async_logger(std::string logger_name, sink_ptr single_sink, std::weak_ptr< details::thread_pool > tp, async_overflow_policy overflow_policy=async_overflow_policy::block)']]], - ['async_5flogger_2eh',['async_logger.h',['../async__logger_8h.html',1,'']]], - ['async_5flogger_5fimpl_2eh',['async_logger_impl.h',['../async__logger__impl_8h.html',1,'']]], - ['async_5flogger_5fptr',['async_logger_ptr',['../namespacespdlog_1_1details.html#a9b6989c16b6150f7e4658ea2aee01bc2',1,'spdlog::details']]], - ['async_5fmsg',['async_msg',['../structspdlog_1_1details_1_1async__msg.html',1,'spdlog::details::async_msg'],['../structspdlog_1_1details_1_1async__msg.html#a1639729ae0bbefc841ec4b87c3369274',1,'spdlog::details::async_msg::async_msg()=default'],['../structspdlog_1_1details_1_1async__msg.html#ac61cf7969d3c60aa377cf4a40df6e6a7',1,'spdlog::details::async_msg::async_msg(const async_msg &)=delete'],['../structspdlog_1_1details_1_1async__msg.html#a2e618e34ed69ba387e8e5f069543f94a',1,'spdlog::details::async_msg::async_msg(async_msg &&)=default'],['../structspdlog_1_1details_1_1async__msg.html#aa525d6ee1ca7b82755a0f39b62283638',1,'spdlog::details::async_msg::async_msg(async_logger_ptr &&worker, async_msg_type the_type, details::log_msg &m)'],['../structspdlog_1_1details_1_1async__msg.html#ace5999e830cd28f7b14f804952925379',1,'spdlog::details::async_msg::async_msg(async_logger_ptr &&worker, async_msg_type the_type)'],['../structspdlog_1_1details_1_1async__msg.html#a466b9eb427b14c12f59afeeeb98c0e01',1,'spdlog::details::async_msg::async_msg(async_msg_type the_type)']]], - ['async_5fmsg_5ftype',['async_msg_type',['../namespacespdlog_1_1details.html#a22274995cf879a5d0a08d1f7513ee4fb',1,'spdlog::details']]], - ['async_5foverflow_5fpolicy',['async_overflow_policy',['../namespacespdlog.html#a42e109759a11c9514d3f6313a7709852',1,'spdlog']]], - ['auto_5fid',['auto_id',['../structfmt_1_1v5_1_1internal_1_1auto__id.html',1,'fmt::v5::internal']]], - ['azure',['azure',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0acf04a02e37b774fc311a48f605c3c597',1,'fmt::v5']]] + ['_5f_5fhas_5ffeature',['__has_feature',['../os_8h.html#af989845e24678c452b9222afdac95e7f',1,'os.h']]], + ['_5ffinite',['_finite',['../namespacefmt_1_1v5_1_1internal.html#a4750c83c90c5d48c7af7389dff6c0ba8',1,'fmt::v5::internal']]], + ['_5fisnan',['_isnan',['../namespacefmt_1_1v5_1_1internal.html#a8766cc653a2cb47cefc94592e5125239',1,'fmt::v5::internal']]], + ['_5fthread_5fid',['_thread_id',['../namespacespdlog_1_1details_1_1os.html#ab397aa6b937e5d4624878dfd2e3a0083',1,'spdlog::details::os']]], + ['_5funchecked_5ftype',['_Unchecked_type',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a88b962009c4abb5b83981b8952bbb1ee',1,'fmt::v5::internal::counting_iterator::_Unchecked_type()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a09ce2b9fd471cbd9603739d41288a72c',1,'fmt::v5::internal::truncating_iterator_base::_Unchecked_type()']]] ]; diff --git a/docs/search/all_10.js b/docs/search/all_10.js index ba480dc..b0a647e 100644 --- a/docs/search/all_10.js +++ b/docs/search/all_10.js @@ -1,92 +1,110 @@ var searchData= [ - ['p_5fformatter',['p_formatter',['../classspdlog_1_1details_1_1p__formatter.html',1,'spdlog::details::p_formatter'],['../classspdlog_1_1details_1_1p__formatter.html#a8a8cea56b038ed4d7f6cd6a04db4a135',1,'spdlog::details::p_formatter::p_formatter()']]], - ['pack',['Pack',['../classlivox_1_1_comm_port.html#aa06a75c5c7801967271b8925bd734fd1',1,'livox::CommPort::Pack()'],['../classlivox_1_1_protocol.html#a52573a66bbd0f40a624e23ec76465045',1,'livox::Protocol::Pack()']]], - ['packet_5ftype',['packet_type',['../structlivox_1_1_comm_packet.html#a44673e979d10ca9f967fb6a75ffc5612',1,'livox::CommPacket']]], - ['packettype',['PacketType',['../namespacelivox.html#a6941cc71243dd1b067c904fdd91bfb61',1,'livox']]], - ['pad2',['pad2',['../namespacespdlog_1_1details_1_1fmt__helper.html#ae8d7b70c5b54338c0903cf494b06404a',1,'spdlog::details::fmt_helper']]], - ['pad3',['pad3',['../namespacespdlog_1_1details_1_1fmt__helper.html#af739ecce102d47ff08a0f344a96897d9',1,'spdlog::details::fmt_helper']]], - ['pad6',['pad6',['../namespacespdlog_1_1details_1_1fmt__helper.html#aefae60b1ebdae78bc8f11c26b36b2cd6',1,'spdlog::details::fmt_helper']]], - ['pad9',['pad9',['../namespacespdlog_1_1details_1_1fmt__helper.html#aad467c706932b56929dae091b39c23f3',1,'spdlog::details::fmt_helper']]], - ['pad_5fside',['pad_side',['../structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942e',1,'spdlog::details::padding_info']]], - ['pad_5fuint',['pad_uint',['../namespacespdlog_1_1details_1_1fmt__helper.html#a569553750f9f2fa7b16c94a56a398de3',1,'spdlog::details::fmt_helper']]], - ['padding',['padding',['../structlivox_1_1_comm_packet.html#a03bb9a2b86f81a5000369d43ceed043c',1,'livox::CommPacket']]], - ['padding_5finfo',['padding_info',['../structspdlog_1_1details_1_1padding__info.html',1,'spdlog::details::padding_info'],['../structspdlog_1_1details_1_1padding__info.html#a2ebd71cdda444c97eba736828179b573',1,'spdlog::details::padding_info::padding_info()=default'],['../structspdlog_1_1details_1_1padding__info.html#a51160b4df2aeb08f476d78d8af4c3851',1,'spdlog::details::padding_info::padding_info(size_t width, padding_info::pad_side side)']]], - ['padinfo_5f',['padinfo_',['../classspdlog_1_1details_1_1flag__formatter.html#a80f1166212df85f665d87f2826240567',1,'spdlog::details::flag_formatter']]], - ['pale_5fgolden_5frod',['pale_golden_rod',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5841e227ac7407c007c4dea330306f08',1,'fmt::v5']]], - ['pale_5fgreen',['pale_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a573cc0c97e7f05440b7ca67a93e46349',1,'fmt::v5']]], - ['pale_5fturquoise',['pale_turquoise',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a707832f12c57d104ccba9158524e8e69',1,'fmt::v5']]], - ['pale_5fviolet_5fred',['pale_violet_red',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ab5bd346b77f564748d4d2743156ed6e8',1,'fmt::v5']]], - ['papaya_5fwhip',['papaya_whip',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a0ee903fa27ac4513f20d12a86c19e7a2',1,'fmt::v5']]], - ['parameter_5flist',['parameter_list',['../struct_hub_set_extrinsic_parameter_request.html#a9dc2a94df678e4337c83767419e4f734',1,'HubSetExtrinsicParameterRequest::parameter_list()'],['../struct_hub_get_extrinsic_parameter_response.html#abbb3f28dee7df501c191cffb9151beea',1,'HubGetExtrinsicParameterResponse::parameter_list()']]], - ['parse',['parse',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ada366ec2d0f00fa94560551fdbbbb640',1,'fmt::formatter< spdlog::details::bytes_range< T > >::parse()'],['../structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#a12522d59cd6a134c4da248ee27a600bb',1,'fmt::v5::formatter< std::chrono::duration< Rep, Period >, Char >::parse()'],['../structfmt_1_1v5_1_1formatter.html#a4147e797582f75be18645d2b6aef4e57',1,'fmt::v5::formatter::parse()'],['../structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html#a6a4b8134330ce67c7c9e8e7db077b334',1,'fmt::v5::formatter< T, Char, typename std::enable_if< internal::format_type< typename buffer_context< Char >::type, T >::value >::type >::parse()'],['../classfmt_1_1v5_1_1dynamic__formatter.html#a541d33c040cb6d2ff781157fad6d09b1',1,'fmt::v5::dynamic_formatter::parse()'],['../structfmt_1_1v5_1_1printf__formatter.html#af08ea64b651a80ede60aba6ccdd6c72c',1,'fmt::v5::printf_formatter::parse()'],['../structfmt_1_1v5_1_1formatting__base.html#acd8d05ac57daf149ec2d8fffb4ffb106',1,'fmt::v5::formatting_base::parse()'],['../structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#aa9f66948e4a9e80fde6dadcce7cca55a',1,'fmt::v5::formatter< TupleT, Char, typename std::enable_if< fmt::is_tuple_like< TupleT >::value >::type >::parse()'],['../structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#a56962f9c47a1654f91ebdc5244b81f32',1,'fmt::v5::formatter< RangeT, Char, typename std::enable_if< fmt::is_range< RangeT >::value >::type >::parse()'],['../structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#afe698cc1f5147569d954e40bdab35eb7',1,'fmt::v5::formatter< std::tm, Char >::parse()']]], - ['parse_5falign',['parse_align',['../namespacefmt_1_1v5_1_1internal.html#aaee1761c014bc6a5ca7be7fcb48f6a1e',1,'fmt::v5::internal']]], - ['parse_5farg_5fid',['parse_arg_id',['../namespacefmt_1_1v5_1_1internal.html#a2c52eadabf215a00fdc216702dbf0df6',1,'fmt::v5::internal']]], - ['parse_5fchrono_5fformat',['parse_chrono_format',['../namespacefmt_1_1v5_1_1internal.html#ad8194ac1ba523a7a5014c9cb49f3bf8d',1,'fmt::v5::internal']]], - ['parse_5fcontext',['parse_context',['../classfmt_1_1v5_1_1internal_1_1context__base.html#a782e3cda3eec3c7792fddfbbedb0b7d7',1,'fmt::v5::internal::context_base::parse_context()'],['../namespacefmt_1_1v5.html#aa52ab0ebff57aaa2e4cd5ba43ac4d95d',1,'fmt::v5::parse_context()']]], - ['parse_5fformat_5fspecs',['parse_format_specs',['../namespacefmt_1_1v5_1_1internal.html#ac584bbf50f1e0e44628a7a53c4ec9149',1,'fmt::v5::internal::parse_format_specs(const Char *begin, const Char *end, SpecHandler &&handler)'],['../namespacefmt_1_1v5_1_1internal.html#a4df1425f61a6677296a1d61cb29dd2cc',1,'fmt::v5::internal::parse_format_specs(ParseContext &ctx)']]], - ['parse_5fformat_5fstring',['parse_format_string',['../namespacefmt_1_1v5_1_1internal.html#a113eb41a02e482540b90183e4ad7ca27',1,'fmt::v5::internal']]], - ['parse_5fnonnegative_5fint',['parse_nonnegative_int',['../namespacefmt_1_1v5_1_1internal.html#aa163dc10b3f54b87b9f71c768b08250f',1,'fmt::v5::internal::parse_nonnegative_int(const Char *&begin, const Char *end, ErrorHandler &&eh)'],['../namespacefmt_1_1v5_1_1internal.html#a534d02a4b06a68425c00665acd4a0df4',1,'fmt::v5::internal::parse_nonnegative_int(Iterator &it, ErrorHandler &&eh)']]], - ['parse_5fwidth',['parse_width',['../namespacefmt_1_1v5_1_1internal.html#a7ac857188cb657852d3dd2fcb223a331',1,'fmt::v5::internal']]], - ['parsecommstream',['ParseCommStream',['../classlivox_1_1_comm_port.html#a0747279cfee5e49d6abe399adbe81e2a',1,'livox::CommPort']]], - ['parsepacket',['ParsePacket',['../classlivox_1_1_protocol.html#a0327374f8c1e7008805b8d87732fe4b8',1,'livox::Protocol']]], - ['parseresult',['ParseResult',['../namespacelivox.html#aa0c7b20b2866108c5e232ff70bea4820',1,'livox']]], - ['patch',['patch',['../struct_livox_sdk_version.html#a93dd2938e447a72dfb71e454c97cdaa6',1,'LivoxSdkVersion']]], - ['pattern_5fformatter',['pattern_formatter',['../classspdlog_1_1pattern__formatter.html',1,'spdlog::pattern_formatter'],['../classspdlog_1_1pattern__formatter.html#a77d5f83cf0e00029d5796b81de1e1a9e',1,'spdlog::pattern_formatter::pattern_formatter(std::string pattern, pattern_time_type time_type=pattern_time_type::local, std::string eol=spdlog::details::os::default_eol)'],['../classspdlog_1_1pattern__formatter.html#a4c11f41c2e6a62ac10e80170c0958192',1,'spdlog::pattern_formatter::pattern_formatter(pattern_time_type time_type=pattern_time_type::local, std::string eol=spdlog::details::os::default_eol)'],['../classspdlog_1_1pattern__formatter.html#a3c7051314c9422b667e254cb27d81b80',1,'spdlog::pattern_formatter::pattern_formatter(const pattern_formatter &other)=delete']]], - ['pattern_5fformatter_2eh',['pattern_formatter.h',['../pattern__formatter_8h.html',1,'']]], - ['pattern_5ftime_5ftype',['pattern_time_type',['../namespacespdlog.html#ad598fbd8338772e66ae09e8723a07ced',1,'spdlog']]], - ['payload',['payload',['../structspdlog_1_1details_1_1log__msg.html#a33fd07702d73245581fccd8d0d04b82a',1,'spdlog::details::log_msg']]], - ['peach_5fpuff',['peach_puff',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae74648a463c3d18a05e153977cb39855',1,'fmt::v5']]], - ['periodic_5fworker',['periodic_worker',['../classspdlog_1_1details_1_1periodic__worker.html',1,'spdlog::details::periodic_worker'],['../classspdlog_1_1details_1_1periodic__worker.html#a16ae1b1cb27aa85efbc25a2f055d3523',1,'spdlog::details::periodic_worker::periodic_worker(const std::function< void()> &callback_fun, std::chrono::seconds interval)'],['../classspdlog_1_1details_1_1periodic__worker.html#a43b4294bd9a547727864ff18da48b775',1,'spdlog::details::periodic_worker::periodic_worker(const periodic_worker &)=delete']]], - ['periodic_5fworker_2eh',['periodic_worker.h',['../periodic__worker_8h.html',1,'']]], - ['peru',['peru',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a32e8419a7ecb8f918c70fdadf783e3d8',1,'fmt::v5']]], - ['pid',['pid',['../namespacespdlog_1_1details_1_1os.html#afa5e2f0096ec0aa63c2d20143cb18b17',1,'spdlog::details::os']]], - ['pid_5fformatter',['pid_formatter',['../classspdlog_1_1details_1_1pid__formatter.html',1,'spdlog::details::pid_formatter'],['../classspdlog_1_1details_1_1pid__formatter.html#a7a37fa9f0f96483f5552cc55ba4c16da',1,'spdlog::details::pid_formatter::pid_formatter()']]], - ['pink',['pink',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4a0b0dcedd48f780778d1cd1bb8f9877',1,'fmt::v5']]], - ['pipe',['pipe',['../classfmt_1_1v5_1_1file.html#adec2f1ea78f1707216c7de02232d273e',1,'fmt::v5::file']]], - ['pitch',['pitch',['../struct_extrinsic_parameter_request_item.html#a90eac1f729d93943a5ea8da0a174ba59',1,'ExtrinsicParameterRequestItem::pitch()'],['../struct_extrinsic_parameter_response_item.html#a10a52148b1281622da70e95053d4f1ab',1,'ExtrinsicParameterResponseItem::pitch()'],['../struct_lidar_set_extrinsic_parameter_request.html#ac6bdec3885bfe5670389f5b40cd9d9ef',1,'LidarSetExtrinsicParameterRequest::pitch()'],['../struct_lidar_get_extrinsic_parameter_response.html#aee7829f9548f6e897face41560873e7c',1,'LidarGetExtrinsicParameterResponse::pitch()']]], - ['plum',['plum',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a3e042037287d6871eec3dbd48556b0b4',1,'fmt::v5']]], - ['plus_5fflag',['PLUS_FLAG',['../namespacefmt_1_1v5.html#a2afc98455558e211af15ed1ad8c12bfaa972e2caa64b4634539a0e441e76f8148',1,'fmt::v5']]], - ['pointer',['pointer',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a07ebb1da97cc649df20f1f8c6f03e465',1,'fmt::v5::internal::counting_iterator::pointer()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#acfec8964ca97b0ea4a08d2efff4ba6ba',1,'fmt::v5::internal::truncating_iterator_base::pointer()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a42557d330303048247da9fc8f60a6a0c',1,'fmt::v5::internal::null_terminating_iterator::pointer()'],['../classfmt_1_1v5_1_1internal_1_1value.html#aa69a8daba75dfea365755c87b16c1760',1,'fmt::v5::internal::value::pointer()']]], - ['pointer_5ffrom',['pointer_from',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ab9cf4717029a7ee8de81c7232c3fda4c',1,'fmt::v5::internal::null_terminating_iterator::pointer_from()'],['../namespacefmt_1_1v5_1_1internal.html#a91182ac859ac969e4f719d61cad002e1',1,'fmt::v5::internal::pointer_from(null_terminating_iterator< Char > it)'],['../namespacefmt_1_1v5_1_1internal.html#a875ca22a1f2292b1ce663881420906b9',1,'fmt::v5::internal::pointer_from(const T *p)']]], - ['pointer_5ftype',['pointer_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a355d7dd1bc164c3b845d96bb5ba1a5c0',1,'fmt::v5::internal']]], - ['pop_5ffront',['pop_front',['../classspdlog_1_1details_1_1circular__q.html#a6e05a29447127eadabf01175a6b3ddc0',1,'spdlog::details::circular_q']]], - ['portcache',['PortCache',['../structlivox_1_1_port_cache.html',1,'livox']]], - ['posix_2eh',['posix.h',['../posix_8h.html',1,'']]], - ['post_5fflush',['post_flush',['../classspdlog_1_1details_1_1thread__pool.html#aa851092603e816f78dd81bb980232048',1,'spdlog::details::thread_pool']]], - ['post_5flog',['post_log',['../classspdlog_1_1details_1_1thread__pool.html#a70cc09729d82174d84640eaface150e0',1,'spdlog::details::thread_pool']]], - ['postfix',['postfix',['../structfmt_1_1v5_1_1formatting__range.html#a36c05ab14e83d967e53328ea8660e03a',1,'fmt::v5::formatting_range::postfix()'],['../structfmt_1_1v5_1_1formatting__tuple.html#a7dc63730dad2ee965f7d128ebbd8f7c1',1,'fmt::v5::formatting_tuple::postfix()']]], - ['pow10_5fexponents',['POW10_EXPONENTS',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#ae51c63ec91f02e2dad5c1d3eedb7b532',1,'fmt::v5::internal::basic_data']]], - ['pow10_5fsignificands',['POW10_SIGNIFICANDS',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a4984044ce1b065540381b3694eb994b0',1,'fmt::v5::internal::basic_data']]], - ['powder_5fblue',['powder_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a76f258d530f43c55523384b472086771',1,'fmt::v5']]], - ['powers_5fof_5f10_5f32',['POWERS_OF_10_32',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a195c2b45ae9bb0a953156d3ae7eb35ca',1,'fmt::v5::internal::basic_data']]], - ['precision',['precision',['../structfmt_1_1v5_1_1core__format__specs.html#a445855f2d6d7886e1afb26e570618c47',1,'fmt::v5::core_format_specs']]], - ['precision_5fadapter',['precision_adapter',['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html',1,'fmt::v5::internal::precision_adapter< SpecHandler, Char >'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aca2d85b4bd5747fb96a880034a6e4d14',1,'fmt::v5::internal::precision_adapter::precision_adapter()']]], - ['precision_5fchecker',['precision_checker',['../classfmt_1_1v5_1_1internal_1_1precision__checker.html',1,'fmt::v5::internal::precision_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1precision__checker.html#ad03d296cfbb86da629a4d0a2ab7abdd8',1,'fmt::v5::internal::precision_checker::precision_checker()']]], - ['precision_5fref',['precision_ref',['../structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html#a889a59c0e42b1be665f320085fecd117',1,'fmt::v5::internal::dynamic_format_specs']]], - ['prefix',['prefix',['../structfmt_1_1v5_1_1formatting__range.html#aff1b7e3cc3fe6dd0177e0a16bd11d257',1,'fmt::v5::formatting_range::prefix()'],['../structfmt_1_1v5_1_1formatting__tuple.html#a7b02d7eeab87b7ac85178e59ddcd252b',1,'fmt::v5::formatting_tuple::prefix()']]], - ['prettify_5fhandler',['prettify_handler',['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html',1,'fmt::v5::internal::prettify_handler'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a4af3a99f9adb0a32c74ce88f1386b986',1,'fmt::v5::internal::prettify_handler::prettify_handler()']]], - ['prevent_5fchild_5ffd',['prevent_child_fd',['../namespacespdlog_1_1details_1_1os.html#a58e68538bb3667c56f3623bf047093d6',1,'spdlog::details::os']]], - ['print',['print',['../classfmt_1_1v5_1_1buffered__file.html#a52e4076f24c9a64080ef4828329c1cad',1,'fmt::v5::buffered_file::print()'],['../namespacefmt_1_1v5.html#ab1d87084097ae33226e005179e09befd',1,'fmt::v5::print(std::FILE *f, const text_style &ts, const String &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a7373458bc3acf69f580a4ead0ebc159f',1,'fmt::v5::print(const text_style &ts, const String &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#ad7545fdef9670aa6f3a042af78b14554',1,'fmt::v5::print(std::FILE *f, const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a3f6a04fdf140370cbd2b83d8adae100f',1,'fmt::v5::print(const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a2e1e2dadf40c0bdae64332ed12924425',1,'fmt::v5::print(std::basic_ostream< typename char_t< S >::type > &os, const S &format_str, const Args &... args)']]], - ['printf',['printf',['../namespacefmt_1_1v5_1_1internal.html#a16cf20ac8074c751e521b5f93d5c7014',1,'fmt::v5::internal::printf()'],['../namespacefmt_1_1v5.html#a2b685ddfe3ac9548bf7ebff220e2ccd5',1,'fmt::v5::printf()']]], - ['printf_2eh',['printf.h',['../printf_8h.html',1,'']]], - ['printf_5farg_5fformatter',['printf_arg_formatter',['../classfmt_1_1v5_1_1printf__arg__formatter.html',1,'fmt::v5::printf_arg_formatter< Range >'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a1699fc4ff1987dccc2a7958ff3beaf59',1,'fmt::v5::printf_arg_formatter::printf_arg_formatter()']]], - ['printf_5fargs',['printf_args',['../namespacefmt_1_1v5.html#a6689ac15e44b821c97159c1f63fc39f8',1,'fmt::v5']]], - ['printf_5fcontext',['printf_context',['../namespacefmt_1_1v5.html#a64916ff674b5c95f8364940456eb640f',1,'fmt::v5']]], - ['printf_5fformatter',['printf_formatter',['../structfmt_1_1v5_1_1printf__formatter.html',1,'fmt::v5']]], - ['printf_5fprecision_5fhandler',['printf_precision_handler',['../classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html',1,'fmt::v5::internal']]], - ['printf_5fwidth_5fhandler',['printf_width_handler',['../classfmt_1_1v5_1_1internal_1_1printf__width__handler.html',1,'fmt::v5::internal::printf_width_handler< Char >'],['../classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a6ae374d553e7f4b094eff281b6175caa',1,'fmt::v5::internal::printf_width_handler::printf_width_handler()']]], - ['process_5fspecs',['process_specs',['../namespacefmt_1_1v5_1_1internal.html#a63add7333da71960d33855aa1489c2ee',1,'fmt::v5::internal']]], - ['progress',['progress',['../union_status_union.html#aee8bbc3ee1cfcd5eaab54d09b589028f',1,'StatusUnion']]], - ['protocol',['Protocol',['../classlivox_1_1_protocol.html',1,'livox::Protocol'],['../structlivox_1_1_comm_packet.html#a670bd53de47c748164570decdb70c968',1,'livox::CommPacket::protocol()']]], - ['protocol_2eh',['protocol.h',['../protocol_8h.html',1,'']]], - ['protocol_5fversion',['protocol_version',['../structlivox_1_1_comm_packet.html#a7d4df6086cbac3cbaecedfda76d6c11e',1,'livox::CommPacket']]], - ['protocoltype',['ProtocolType',['../namespacelivox.html#ab97b5b082d8b27d02cd14daeb8c9807c',1,'livox']]], - ['ptr',['ptr',['../namespacefmt_1_1v5.html#a19f551b1c3abec2c3d40d85ab3ccee03',1,'fmt::v5']]], - ['purple',['purple',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0abb7aedfa61007447dd6efaf9f37641e3',1,'fmt::v5']]], - ['push_5fback',['push_back',['../classspdlog_1_1details_1_1circular__q.html#aaaab548bb6f5dd362458d6b044e0e950',1,'spdlog::details::circular_q::push_back()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8e3b65c01dadb977b9c2327864db9e15',1,'fmt::v5::internal::basic_buffer::push_back()']]], - ['put_5fdelimiters',['put_delimiters',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#aec694b471eae3bc7d0a1d4487579721c',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]], - ['put_5fnewline',['put_newline',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ae001a71b76b4a56f722a7b91c506e9bf',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]], - ['put_5fnewlines',['put_newlines',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a6f28abac88c19077023abaadd2d3315f',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]], - ['put_5fpositions',['put_positions',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a0997eb476f830eb211f3d17777079d7d',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]] + ['off',['off',['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8ba917591d8c0e89f6e6247c95c67809a1a',1,'spdlog::level']]], + ['old_5flace',['old_lace',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5e84be20fb6dd068f5368e6d245460bd',1,'fmt::v5']]], + ['olive',['olive',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0af431b0eea3c08186ed101e588bfb3a2f',1,'fmt::v5']]], + ['olive_5fdrab',['olive_drab',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a2fe5734b0399752dfa2a0c93b6c75934',1,'fmt::v5']]], + ['on',['on',['../classfmt_1_1v5_1_1internal_1_1decimal__formatter.html#a1a6a63018f8b53729b183608f4baa79a',1,'fmt::v5::internal::decimal_formatter::on()'],['../classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html#aa973d156e8cd5038b4cbaa8ee7c2b021',1,'fmt::v5::internal::decimal_formatter_null::on()']]], + ['on_5f12_5fhour',['on_12_hour',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a95cd0458553c10a26bd580c73d528a2e',1,'fmt::v5::internal::chrono_format_checker::on_12_hour()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a2e3caddf766cdd91f70527ee6b1d5506',1,'fmt::v5::internal::chrono_formatter::on_12_hour()']]], + ['on_5f12_5fhour_5ftime',['on_12_hour_time',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a94a739330ac56034fb9bde5d89c1c2b8',1,'fmt::v5::internal::chrono_format_checker::on_12_hour_time()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#acabd988cd5815af1577389e5576359a5',1,'fmt::v5::internal::chrono_formatter::on_12_hour_time()']]], + ['on_5f24_5fhour',['on_24_hour',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#abc0fa900734b8934699a8705732f4394',1,'fmt::v5::internal::chrono_format_checker::on_24_hour()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#aa0e5243ab84d9be54fbfc85691f93a24',1,'fmt::v5::internal::chrono_formatter::on_24_hour()']]], + ['on_5f24_5fhour_5ftime',['on_24_hour_time',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aecf25d830a00bf920d3e366e946506f0',1,'fmt::v5::internal::chrono_format_checker::on_24_hour_time()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ac752c273d5033c35d1c8bd1aacc7efd4',1,'fmt::v5::internal::chrono_formatter::on_24_hour_time()']]], + ['on_5fabbr_5fmonth',['on_abbr_month',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a1b49b5b3497e4da015a75c0f5ad77f8a',1,'fmt::v5::internal::chrono_format_checker::on_abbr_month()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a8695bfe8c62948476e06fb866f1b5abd',1,'fmt::v5::internal::chrono_formatter::on_abbr_month()']]], + ['on_5fabbr_5fweekday',['on_abbr_weekday',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a75a9ec7180a8977b83bcaaba724f058f',1,'fmt::v5::internal::chrono_format_checker::on_abbr_weekday()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a9f368ece915dc9a49062e497ba8ffd3e',1,'fmt::v5::internal::chrono_formatter::on_abbr_weekday()']]], + ['on_5falign',['on_align',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a1a5c67ffa1e2120fbbb6ce62dd2b0c61',1,'fmt::v5::internal::specs_setter::on_align()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#abce5f587ed4b5a7461b1c2812e7650a7',1,'fmt::v5::internal::specs_checker::on_align()']]], + ['on_5fam_5fpm',['on_am_pm',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a98e676383a1103f987671d3ae77e108c',1,'fmt::v5::internal::chrono_format_checker::on_am_pm()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a1388824f7e836e2bd1158854a8167e16',1,'fmt::v5::internal::chrono_formatter::on_am_pm()']]], + ['on_5farg_5fid',['on_arg_id',['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a8f5842b3b1c1f74fdbfe1a7139166272',1,'fmt::v5::internal::format_string_checker::on_arg_id()'],['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a149ce0957470639d28afc84c3205db79',1,'fmt::v5::internal::format_string_checker::on_arg_id(unsigned id)'],['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a3acec6cf8e16fcae6dd75da1930684f6',1,'fmt::v5::internal::format_string_checker::on_arg_id(basic_string_view< Char >)'],['../structfmt_1_1v5_1_1format__handler.html#af45f0577c38773dae862118b947fd671',1,'fmt::v5::format_handler::on_arg_id()'],['../structfmt_1_1v5_1_1format__handler.html#a988c9b12cdd78f32d51c231134317a9a',1,'fmt::v5::format_handler::on_arg_id(unsigned id)'],['../structfmt_1_1v5_1_1format__handler.html#a32a2f523495547bcd97610b62d01a610',1,'fmt::v5::format_handler::on_arg_id(basic_string_view< Char > id)']]], + ['on_5fbin',['on_bin',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a34213cd8fddd550812e0e3dbc6fba583',1,'fmt::v5::internal::int_type_checker']]], + ['on_5fblack',['on_black',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ac887dfeac8f16dbd96128398333786f5',1,'spdlog::sinks::ansicolor_sink']]], + ['on_5fblue',['on_blue',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a8b4b2900e0db2ed81b1d87531c75db70',1,'spdlog::sinks::ansicolor_sink']]], + ['on_5fchar',['on_char',['../classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#a66e7f01c770f2002fe729864e0e85d7e',1,'fmt::v5::internal::char_specs_checker::on_char()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#ad45d0067f9a6f6edfe1c0f0a7ff50af5',1,'fmt::v5::internal::arg_formatter_base::char_spec_handler::on_char()']]], + ['on_5fcyan',['on_cyan',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a628bbe153b16a66b33566608794b82fc',1,'spdlog::sinks::ansicolor_sink']]], + ['on_5fdatetime',['on_datetime',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a1fb3b5911e2cfa3e99a19f660a4386a3',1,'fmt::v5::internal::chrono_format_checker::on_datetime()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#af3f1770368c80ca2261b51f14c96f0c1',1,'fmt::v5::internal::chrono_formatter::on_datetime()']]], + ['on_5fdec',['on_dec',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a249a93159605bb04c62fdfbd27d31547',1,'fmt::v5::internal::int_type_checker']]], + ['on_5fdec0_5fweekday',['on_dec0_weekday',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aef2fc6d8013c88e2b6589c015e4c826e',1,'fmt::v5::internal::chrono_format_checker::on_dec0_weekday()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a393e3b451800b1933a7c8814cba0035e',1,'fmt::v5::internal::chrono_formatter::on_dec0_weekday()']]], + ['on_5fdec1_5fweekday',['on_dec1_weekday',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a7ec73eba1f9686886b0cd6e73f69c5ed',1,'fmt::v5::internal::chrono_format_checker::on_dec1_weekday()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a6f2ea84fef033aff9e450320bd6c6adc',1,'fmt::v5::internal::chrono_formatter::on_dec1_weekday()']]], + ['on_5fdynamic_5fprecision',['on_dynamic_precision',['../classfmt_1_1v5_1_1internal_1_1specs__handler.html#a1e09219c0d595a59d9271600ecffcc7b',1,'fmt::v5::internal::specs_handler::on_dynamic_precision()'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a308cbb025165a2b6183eb1064919abb7',1,'fmt::v5::internal::dynamic_specs_handler::on_dynamic_precision()']]], + ['on_5fdynamic_5fwidth',['on_dynamic_width',['../classfmt_1_1v5_1_1internal_1_1specs__handler.html#a3577cd82b12c640ecd649dea25c1e4a6',1,'fmt::v5::internal::specs_handler::on_dynamic_width()'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#ad86ceb430a696429d7d9ccb2e295f725',1,'fmt::v5::internal::dynamic_specs_handler::on_dynamic_width()']]], + ['on_5ferror',['on_error',['../structfmt_1_1v5_1_1internal_1_1error__handler.html#af917438f30466b0b8cd4de4f8b549ab9',1,'fmt::v5::internal::error_handler::on_error()'],['../classfmt_1_1v5_1_1basic__parse__context.html#aa5e6f5d821319449d7569d5670b15c8e',1,'fmt::v5::basic_parse_context::on_error()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#a3760d881e55281f49c546d0102cda9f3',1,'fmt::v5::internal::context_base::on_error()'],['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a0006985aadbde8a6ac0234965afac80c',1,'fmt::v5::internal::int_type_checker::on_error()'],['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a6259e777a6b575e11c682d91d0be83ab',1,'fmt::v5::internal::float_type_checker::on_error()'],['../classfmt_1_1v5_1_1internal_1_1specs__handler.html#a4bb79b8a65ceec46b89cdd048abff739',1,'fmt::v5::internal::specs_handler::on_error()'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a884a3f983b8dd92638bdcfc2efa0fef0',1,'fmt::v5::internal::dynamic_specs_handler::on_error()'],['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3d13e902cc03addce9102d21294260a6',1,'fmt::v5::internal::width_adapter::on_error()'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aa5e2b37a4b3cafed33be6fcc69bb8d98',1,'fmt::v5::internal::precision_adapter::on_error()'],['../structfmt_1_1v5_1_1internal_1_1id__adapter.html#a75ba87fda26a74c86407b89b4785fcc0',1,'fmt::v5::internal::id_adapter::on_error()'],['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#aa08622a95cb0dd13bc3295f347f2e5ac',1,'fmt::v5::internal::format_string_checker::on_error()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a44813c139c2754dcf56294433728ca44',1,'fmt::v5::float_spec_handler::on_error()']]], + ['on_5fexp',['on_exp',['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a022d595c17259f8b0df0e10f4397ca67',1,'fmt::v5::internal::float_type_checker::on_exp()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a08c5f4af9e7376bd3e21f6cc89b6b7a6',1,'fmt::v5::float_spec_handler::on_exp()']]], + ['on_5ffill',['on_fill',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a0109570b2d60f43af209bd9f42f81f50',1,'fmt::v5::internal::specs_setter']]], + ['on_5ffixed',['on_fixed',['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a28bc42a672af599e109938f34d58bb30',1,'fmt::v5::internal::float_type_checker::on_fixed()'],['../structfmt_1_1v5_1_1float__spec__handler.html#ace39bc5327e1dfafaff796b1e7cdd3df',1,'fmt::v5::float_spec_handler::on_fixed()']]], + ['on_5fformat_5fspecs',['on_format_specs',['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#af211eec79b6f10bba9828dd5bc486fb8',1,'fmt::v5::internal::format_string_checker::on_format_specs()'],['../structfmt_1_1v5_1_1format__handler.html#a10f0bb03d362ecb21a688778230e2925',1,'fmt::v5::format_handler::on_format_specs()']]], + ['on_5ffull_5fmonth',['on_full_month',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a73341707b4ec25420120be39cb1ad1f3',1,'fmt::v5::internal::chrono_format_checker::on_full_month()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a5219e7d23e107a5b02c3912cce41ba1c',1,'fmt::v5::internal::chrono_formatter::on_full_month()']]], + ['on_5ffull_5fweekday',['on_full_weekday',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a3ea0a9ac1f2f6a92e28fc14bdd9cf044',1,'fmt::v5::internal::chrono_format_checker::on_full_weekday()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a250161d0793ae68087d3d4b7c12c8e9b',1,'fmt::v5::internal::chrono_formatter::on_full_weekday()']]], + ['on_5fgeneral',['on_general',['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a0f7bbace087804f834170962a3751838',1,'fmt::v5::internal::float_type_checker::on_general()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a9ca4fbeb01db2a21cd1ce54a1e7d179c',1,'fmt::v5::float_spec_handler::on_general()']]], + ['on_5fgreen',['on_green',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#addc3addb0060ca767421a4a3149c4747',1,'spdlog::sinks::ansicolor_sink']]], + ['on_5fhash',['on_hash',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a02f2dcb84c84e7b7050cb380ca53f37b',1,'fmt::v5::internal::specs_setter::on_hash()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#a13f99fab9887df8c7e6502787a278bfb',1,'fmt::v5::internal::specs_checker::on_hash()']]], + ['on_5fhex',['on_hex',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a13ed97c71cee805fc3548feea42db5a5',1,'fmt::v5::internal::int_type_checker::on_hex()'],['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a488c1569ecc390390de41642af877cf1',1,'fmt::v5::internal::float_type_checker::on_hex()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a47c600fba7735d313592f3cbf97c5fe8',1,'fmt::v5::float_spec_handler::on_hex()']]], + ['on_5fint',['on_int',['../classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#aaf74a0eb4908b6ac92930c068a39bf4d',1,'fmt::v5::internal::char_specs_checker::on_int()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#aa48913a1f52a97dbba8436cd493810db',1,'fmt::v5::internal::arg_formatter_base::char_spec_handler::on_int()']]], + ['on_5fiso_5fdate',['on_iso_date',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a0eef44f4227621f82efdd96522a34cea',1,'fmt::v5::internal::chrono_format_checker::on_iso_date()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#aa41c3019274a95fe19f1abf2013311a3',1,'fmt::v5::internal::chrono_formatter::on_iso_date()']]], + ['on_5fiso_5ftime',['on_iso_time',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a2e995899ed1678d122629269247a911c',1,'fmt::v5::internal::chrono_format_checker::on_iso_time()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a27ccaaa51fec0226b7b508e9d21f02f7',1,'fmt::v5::internal::chrono_formatter::on_iso_time()']]], + ['on_5floc_5fdate',['on_loc_date',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#af00dab6f03010eb7c0e076f61949aa85',1,'fmt::v5::internal::chrono_format_checker::on_loc_date()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a998f57672158911587892e30b6442034',1,'fmt::v5::internal::chrono_formatter::on_loc_date()']]], + ['on_5floc_5ftime',['on_loc_time',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a5c580fdd162ee92928248fcbe380ced4',1,'fmt::v5::internal::chrono_format_checker::on_loc_time()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad11342e8d7b36dc1fc82aa5e81e5a33c',1,'fmt::v5::internal::chrono_formatter::on_loc_time()']]], + ['on_5fmagenta',['on_magenta',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a0cf149033d141e033f2ffb4b239f84f6',1,'spdlog::sinks::ansicolor_sink']]], + ['on_5fminus',['on_minus',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a8a81bc15ccaed031629365ee8b57104d',1,'fmt::v5::internal::specs_setter::on_minus()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#a8e9c7bb30c9a44f86aaabd956358452b',1,'fmt::v5::internal::specs_checker::on_minus()']]], + ['on_5fminute',['on_minute',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a889e4a54d94853a3674df17d325e2cfc',1,'fmt::v5::internal::chrono_format_checker::on_minute()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a39304fcfe6bd5ba7cbf20d7dc8c25625',1,'fmt::v5::internal::chrono_formatter::on_minute()']]], + ['on_5fnum',['on_num',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a38d3e72fdf277b4f7d431e83e96c943e',1,'fmt::v5::internal::int_type_checker']]], + ['on_5foct',['on_oct',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#af209985f05390106353bc61242343ca7',1,'fmt::v5::internal::int_type_checker']]], + ['on_5fplus',['on_plus',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a1ec03a0f5d574c5dd31b0ebaa810029a',1,'fmt::v5::internal::specs_setter::on_plus()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#aa8f05ebfb4d08764760e94b3ed9d89c3',1,'fmt::v5::internal::specs_checker::on_plus()']]], + ['on_5fpointer',['on_pointer',['../classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#a56ab12958652d01caad11b75747d05d8',1,'fmt::v5::internal::cstring_type_checker::on_pointer()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a4bef3a86933f35c061589933b1fc36a2',1,'fmt::v5::internal::arg_formatter_base::cstring_spec_handler::on_pointer()']]], + ['on_5fprecision',['on_precision',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#aad41fe0a8b8b0f452f866e51d3dbf1b1',1,'fmt::v5::internal::specs_setter']]], + ['on_5fred',['on_red',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#aa66893db05fcfebc131c66b7db30ea49',1,'spdlog::sinks::ansicolor_sink']]], + ['on_5freplacement_5ffield',['on_replacement_field',['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a76c07cc9b08a444f3587b3382250107e',1,'fmt::v5::internal::format_string_checker::on_replacement_field()'],['../structfmt_1_1v5_1_1format__handler.html#ad2e95af5d37c6f9d3e996085c978cad2',1,'fmt::v5::format_handler::on_replacement_field()']]], + ['on_5fsecond',['on_second',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aec0afcb1ea82fb8398061b69483726d1',1,'fmt::v5::internal::chrono_format_checker::on_second()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#abb96cb6058ee5cd88fff52e08951913f',1,'fmt::v5::internal::chrono_formatter::on_second()']]], + ['on_5fspace',['on_space',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a415ee68e15aa5943d16bcc24fecc5596',1,'fmt::v5::internal::specs_setter::on_space()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#af0240aa8eb685e3e6b5350e18fae20b2',1,'fmt::v5::internal::specs_checker::on_space()']]], + ['on_5fstring',['on_string',['../classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#acef9add1fb34d2d175a1dd92afdfe1e5',1,'fmt::v5::internal::cstring_type_checker::on_string()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a519ca34f6bded5481821e4c0ad29a9ba',1,'fmt::v5::internal::arg_formatter_base::cstring_spec_handler::on_string()']]], + ['on_5ftext',['on_text',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#af565f6815eef5198d9d9f792346aa599',1,'fmt::v5::internal::chrono_format_checker::on_text()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a0ed40f7f5d0fb57d145b880699442049',1,'fmt::v5::internal::chrono_formatter::on_text()'],['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a3fbe7d41bebcb3f3a2d29ebe3bf84dd5',1,'fmt::v5::internal::format_string_checker::on_text()'],['../structfmt_1_1v5_1_1format__handler.html#ac8c589250f37514c3fac3a123698ac01',1,'fmt::v5::format_handler::on_text()']]], + ['on_5ftype',['on_type',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#aa11c3c244e8b5343d50a9ba6407b0b24',1,'fmt::v5::internal::specs_setter']]], + ['on_5ftz_5fname',['on_tz_name',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a03ef6dd252f466dc9ef48e61adb97e62',1,'fmt::v5::internal::chrono_format_checker::on_tz_name()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ab8d234f82d65181090cdf1602871e485',1,'fmt::v5::internal::chrono_formatter::on_tz_name()']]], + ['on_5fus_5fdate',['on_us_date',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a5090856f227bd8922edeecf97ea8bc31',1,'fmt::v5::internal::chrono_format_checker::on_us_date()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ae7113c63bfe389915537b985236ea3e2',1,'fmt::v5::internal::chrono_formatter::on_us_date()']]], + ['on_5futc_5foffset',['on_utc_offset',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a401617e182eb83c9dbb3c17fce04029a',1,'fmt::v5::internal::chrono_format_checker::on_utc_offset()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a437caae6cfab224f6f4d5ec7d32939d4',1,'fmt::v5::internal::chrono_formatter::on_utc_offset()']]], + ['on_5fwhite',['on_white',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab42fb978ba2ad9d004bf31903f0d0edc',1,'spdlog::sinks::ansicolor_sink']]], + ['on_5fwidth',['on_width',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a8ec97ee5743a7adb1d27793190004066',1,'fmt::v5::internal::specs_setter']]], + ['on_5fyellow',['on_yellow',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a7450ec0f85ad82c7830b11e1f54f1606',1,'spdlog::sinks::ansicolor_sink']]], + ['on_5fzero',['on_zero',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a5620d3455b48a3110b4b2b2312c9fb5a',1,'fmt::v5::internal::specs_setter::on_zero()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#a548e6a06b4a2d1af66f4acfe575e2a76',1,'fmt::v5::internal::specs_checker::on_zero()']]], + ['open',['open',['../classspdlog_1_1details_1_1file__helper.html#a8612066fd098080cc60e3aefed6a6085',1,'spdlog::details::file_helper']]], + ['open_5finterval',['open_interval',['../classspdlog_1_1details_1_1file__helper.html#aea72ea8d655bb11f19dbe48477e6c8b3',1,'spdlog::details::file_helper']]], + ['open_5ftries',['open_tries',['../classspdlog_1_1details_1_1file__helper.html#a22be952a421d866566eed3a5ce201144',1,'spdlog::details::file_helper']]], + ['operator_20_26',['operator &',['../classfmt_1_1v5_1_1text__style.html#a8f82651b0a8ae904452f333054ea1a64',1,'fmt::v5::text_style']]], + ['operator_20_2a',['operator *',['../structfmt_1_1v5_1_1internal_1_1checked__args.html#a27369b0b9836336f73f4719a2f4e9fa3',1,'fmt::v5::internal::checked_args::operator *()'],['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a79e3e8094b4d91acd6233a2f1bd69add',1,'fmt::v5::internal::counting_iterator::operator *()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a69069d1c78272aa6520fdee9fdd987d6',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::false_type >::operator *()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a390d19340dce95b689844db8c030707a',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::operator *()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a047900de1c609b1b67599b2e87e6be61',1,'fmt::v5::internal::null_terminating_iterator::operator *()'],['../namespacefmt_1_1v5_1_1internal.html#a1fa02ff736934db730c7545b4c840a4c',1,'fmt::v5::internal::operator *()']]], + ['operator_20bool',['operator bool',['../classfmt_1_1v5_1_1basic__format__arg.html#ac4eb1aac92345fa137b08888a2839313',1,'fmt::v5::basic_format_arg']]], + ['operator_20const_20char_20_2a',['operator const Char *',['../structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#ae1694c33443324d13f7b79f17a5f5ad4',1,'fmt::v5::internal::ansi_color_escape']]], + ['operator_20int',['operator int',['../structfmt_1_1v5_1_1internal_1_1dummy__int.html#a9cc59ebeafaa73368d404b3f22de4d43',1,'fmt::v5::internal::dummy_int']]], + ['operator_20value_3c_20context_20_3e',['operator value< Context >',['../structfmt_1_1v5_1_1internal_1_1init.html#a033f79651b7bafcfe24e07f616e5285f',1,'fmt::v5::internal::init']]], + ['operator_21_3d',['operator!=',['../classfmt_1_1v5_1_1basic__string__view.html#a5ceb2a1bfa175c69d7bfda735e901d73',1,'fmt::v5::basic_string_view::operator!=()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a768ecde717e21463fb0a470fdd2db034',1,'fmt::v5::internal::null_terminating_iterator::operator!=()']]], + ['operator_26_3d',['operator&=',['../classfmt_1_1v5_1_1text__style.html#acb1535c94d8cc4d69b19c4170a78f7d0',1,'fmt::v5::text_style']]], + ['operator_28_29',['operator()',['../structfmt_1_1v5_1_1internal_1_1fill.html#a8ac696cf33afd220f17fea77b4fd9df2',1,'fmt::v5::internal::fill::operator()()'],['../structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#ab9fe0f0042a2d6a65a907a58a2a387b2',1,'fmt::v5::internal::no_thousands_sep::operator()()'],['../classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a2b67cdb6e9828877661e6fd9348206f3',1,'fmt::v5::internal::add_thousands_sep::operator()()'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a8ae25aadcb11be0f632537d24bc3ba37',1,'fmt::v5::internal::arg_formatter_base::operator()(monostate)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a05e90e22d2222c1c458d625f8559599a',1,'fmt::v5::internal::arg_formatter_base::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a4c6d77344d1e2c8327965b544adb03fb',1,'fmt::v5::internal::arg_formatter_base::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#ae20e743a85c240feefa62a82cb81d836',1,'fmt::v5::internal::arg_formatter_base::operator()(const char_type *value)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a59b215cea8bf6e89883b58c47d4f0d94',1,'fmt::v5::internal::arg_formatter_base::operator()(basic_string_view< char_type > value)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a793d82c248d310c8b1bdf06b00a9bdf8',1,'fmt::v5::internal::arg_formatter_base::operator()(const void *value)'],['../classfmt_1_1v5_1_1internal_1_1custom__formatter.html#a42116f5a926129d0caee0c8996923458',1,'fmt::v5::internal::custom_formatter::operator()(typename basic_format_arg< Context >::handle h) const'],['../classfmt_1_1v5_1_1internal_1_1custom__formatter.html#a6561dbaebd329e3fcf614224764b860f',1,'fmt::v5::internal::custom_formatter::operator()(T) const'],['../classfmt_1_1v5_1_1internal_1_1width__checker.html#a69ee4d46cb35d94fdc14aeb469781957',1,'fmt::v5::internal::width_checker::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1width__checker.html#a5cbe5b8226dc90636572d2e0d2b30c01',1,'fmt::v5::internal::width_checker::operator()(T)'],['../classfmt_1_1v5_1_1internal_1_1precision__checker.html#aef64950df9269488dea1a8f1c91fc3bc',1,'fmt::v5::internal::precision_checker::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1precision__checker.html#a091ba51843b08d80ef6d332adf95949a',1,'fmt::v5::internal::precision_checker::operator()(T)'],['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3f0b73ae2cec14566f76d0f5977dc32c',1,'fmt::v5::internal::width_adapter::operator()()'],['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#ac02c304cf7b266259fd689c7c336935d',1,'fmt::v5::internal::width_adapter::operator()(unsigned id)'],['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3b64e9078c79528825385b55cbf1e34c',1,'fmt::v5::internal::width_adapter::operator()(basic_string_view< Char > id)'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#a428b2cb22f69719987193e9b49f4bf9d',1,'fmt::v5::internal::precision_adapter::operator()()'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#a36e54d0d8eca245cbb452460373122df',1,'fmt::v5::internal::precision_adapter::operator()(unsigned id)'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aa71ca1e30b68b25348bb19bb2e056869',1,'fmt::v5::internal::precision_adapter::operator()(basic_string_view< Char > id)'],['../structfmt_1_1v5_1_1internal_1_1id__adapter.html#ae84a96563d3159d5749665b00f000758',1,'fmt::v5::internal::id_adapter::operator()()'],['../structfmt_1_1v5_1_1internal_1_1id__adapter.html#a64e5a16f6183b57476f9e15af2aaf866',1,'fmt::v5::internal::id_adapter::operator()(unsigned id)'],['../structfmt_1_1v5_1_1internal_1_1id__adapter.html#a281a7335138c4e7a2bb5f9c7456659e8',1,'fmt::v5::internal::id_adapter::operator()(basic_string_view< Char > id)'],['../classfmt_1_1v5_1_1arg__formatter.html#a093e3203258d2dfa3fa0282cb41c6b4d',1,'fmt::v5::arg_formatter::operator()()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html#a794e755eaf559c53f20a9274c41df923',1,'fmt::v5::basic_writer::int_writer::dec_writer::operator()()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html#a2b4729fa9db4af17aa1a0aa3c047176d',1,'fmt::v5::basic_writer::int_writer::hex_writer::operator()()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html#aaca6095ee92b5ffe5b8a2477667f296d',1,'fmt::v5::basic_writer::int_writer::bin_writer::operator()()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html#a0d63aada88f995eecf3b6a416d5c041f',1,'fmt::v5::basic_writer::int_writer::num_writer::operator()()'],['../classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html#a6220270ad9933076a07d97d5f140d835',1,'fmt::v5::internal::printf_precision_handler::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html#ad5d83f423cc9b8e8913d6f1cbe6a7d3d',1,'fmt::v5::internal::printf_precision_handler::operator()(T)'],['../classfmt_1_1v5_1_1internal_1_1is__zero__int.html#a19ee91e091c76fe269e401b15ea7eff3',1,'fmt::v5::internal::is_zero_int::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1is__zero__int.html#a3af159d2914d8de6ef0516c86da2a481',1,'fmt::v5::internal::is_zero_int::operator()(T)'],['../classfmt_1_1v5_1_1internal_1_1arg__converter.html#ab0794cf47439d7e560916c9b4d565320',1,'fmt::v5::internal::arg_converter::operator()(bool value)'],['../classfmt_1_1v5_1_1internal_1_1arg__converter.html#a84121ff1b1f0533ad51bff04bf0eb77b',1,'fmt::v5::internal::arg_converter::operator()(U value)'],['../classfmt_1_1v5_1_1internal_1_1arg__converter.html#a8405b74eeb4825deead78fd5e508b4ed',1,'fmt::v5::internal::arg_converter::operator()(U)'],['../classfmt_1_1v5_1_1internal_1_1char__converter.html#ad2751b0df568ddd4130d2f5ddc39c29b',1,'fmt::v5::internal::char_converter::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1char__converter.html#a36eebf1fb8156ed284c270b2a7c713bd',1,'fmt::v5::internal::char_converter::operator()(T)'],['../classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a9abe7a6b4e53386ffd7d261dffc38385',1,'fmt::v5::internal::printf_width_handler::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a3a935a65cddc273eb6eceede698c9b1d',1,'fmt::v5::internal::printf_width_handler::operator()(T)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a22240208526549d9d65250ee2d82c118',1,'fmt::v5::printf_arg_formatter::operator()(T value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#af46ac008c63fe91ec5e60ba5ed9fb3ba',1,'fmt::v5::printf_arg_formatter::operator()(T value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a417fd64792fc9869670cc1abbbdb79d0',1,'fmt::v5::printf_arg_formatter::operator()(const char *value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a3cbb7f33e396d8a644a118e4434c5b81',1,'fmt::v5::printf_arg_formatter::operator()(const wchar_t *value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a9060b8f9cef005edf81af5d70d162668',1,'fmt::v5::printf_arg_formatter::operator()(basic_string_view< char_type > value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#ae47a63e9e03c8a3470c0ada1dc351837',1,'fmt::v5::printf_arg_formatter::operator()(monostate value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a8365e0442d0fece054b41d7e2ae7b13f',1,'fmt::v5::printf_arg_formatter::operator()(const void *value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a7a7f1491adb37d14a9083a6bba1cb3c8',1,'fmt::v5::printf_arg_formatter::operator()(typename basic_format_arg< context_type >::handle handle)']]], + ['operator_2b',['operator+',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a65a6dc37670afbdb757175eca7e87ef6',1,'fmt::v5::internal::null_terminating_iterator']]], + ['operator_2b_2b',['operator++',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a5f49bbf0aec176d242443c81811b439c',1,'fmt::v5::internal::counting_iterator::operator++()'],['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#ab92c73e74847673855c24767e21430dd',1,'fmt::v5::internal::counting_iterator::operator++(int)'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a3e3eaa69e1f7a8302cc9be5f0ce76a98',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::false_type >::operator++()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#ab2c94df15db5ebd65b8f4164cc16431d',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::false_type >::operator++(int)'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#adacdaff3cef2aca38eb851d4b2f38cac',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::operator++()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a2314451849f79cbc4c302dc97dff64c7',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::operator++(int)'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a78ee94466140c7d086d3ce3ef87ec79f',1,'fmt::v5::internal::null_terminating_iterator::operator++()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a5ca7f8621af24ad5f3dde243d132fb6d',1,'fmt::v5::internal::null_terminating_iterator::operator++(int)']]], + ['operator_2b_3d',['operator+=',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a5ed8769f6e99acd27c34d5cacfb6ab1d',1,'fmt::v5::internal::null_terminating_iterator']]], + ['operator_2d',['operator-',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a862bae07a99e36fe5017e4ee3cccfefe',1,'fmt::v5::internal::null_terminating_iterator::operator-(difference_type n)'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a3c15e34c777dfd9111db29bfa338ada2',1,'fmt::v5::internal::null_terminating_iterator::operator-(null_terminating_iterator other) const'],['../namespacefmt_1_1v5_1_1internal.html#a96be9ab86d7703a1aace4eda80007e69',1,'fmt::v5::internal::operator-()']]], + ['operator_2d_2d',['operator--',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#af9870396209e1408dafa552aa8c5a867',1,'fmt::v5::internal::null_terminating_iterator']]], + ['operator_3c',['operator<',['../classfmt_1_1v5_1_1basic__string__view.html#a0e53f2258bbcde6cc8426b0a0755029b',1,'fmt::v5::basic_string_view']]], + ['operator_3c_3d',['operator<=',['../classfmt_1_1v5_1_1basic__string__view.html#a9b92d9c7a937c6945253fd8adfba7803',1,'fmt::v5::basic_string_view']]], + ['operator_3d',['operator=',['../classspdlog_1_1details_1_1file__helper.html#a7c7314360e404efa02326feb7aa98442',1,'spdlog::details::file_helper::operator=()'],['../classspdlog_1_1details_1_1z__formatter.html#aea05e7a7a960bb9450b00aa9558e78fe',1,'spdlog::details::z_formatter::operator=()'],['../classspdlog_1_1pattern__formatter.html#a868ba15a181c7a407780aaa84902de31',1,'spdlog::pattern_formatter::operator=()'],['../classspdlog_1_1details_1_1periodic__worker.html#a81c0461ef77f85295b93991749df746b',1,'spdlog::details::periodic_worker::operator=()'],['../classspdlog_1_1details_1_1registry.html#a12da238b4eda17829b194b36f383e8a0',1,'spdlog::details::registry::operator=()'],['../structspdlog_1_1details_1_1async__msg.html#a963cf593d81367843c4347603a18c5f8',1,'spdlog::details::async_msg::operator=()'],['../classspdlog_1_1details_1_1thread__pool.html#a1a62f3ab1474d69cd1e25143664e856d',1,'spdlog::details::thread_pool::operator=()'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#a04e7e682d636a65fa60fb0a5b78fa98d',1,'fmt::v5::basic_memory_buffer::operator=()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a9135efbc2c3a9c304e49eb092c85131d',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::operator=()'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#ae2a99fa912b67cda62fcce7a7c7bc976',1,'fmt::v5::internal::arg_ref::operator=()'],['../classfmt_1_1v5_1_1buffered__file.html#a74bd895df8fc7612ed57b267272d0d6e',1,'fmt::v5::buffered_file::operator=()'],['../classfmt_1_1v5_1_1file.html#ad3bb617d365c213a074264b39a2e1f46',1,'fmt::v5::file::operator=()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ae5c938544e66e266f119f25ec4ab27ca',1,'fmt::v5::internal::null_terminating_iterator::operator=()'],['../classspdlog_1_1logger.html#afd373cd857f49de170d9a23f1dd34bc0',1,'spdlog::logger::operator=()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a7d2fcd5a2f9a3f02e64648a609a45fb1',1,'spdlog::sinks::ansicolor_sink::operator=()'],['../classspdlog_1_1sinks_1_1base__sink.html#a1b99823aeb2513a891bba168639421a9',1,'spdlog::sinks::base_sink::operator=()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a6f91b5522c12fd448ca2fd7cb8fe0097',1,'spdlog::sinks::dist_sink::operator=()'],['../classspdlog_1_1sinks_1_1ostream__sink.html#a727591b2a4ca044848cacccfca4eb3af',1,'spdlog::sinks::ostream_sink::operator=()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#a0bee23de61cbea7c1dfb5e8712a98d74',1,'spdlog::sinks::stdout_sink::operator=()'],['../classspdlog_1_1sinks_1_1syslog__sink.html#a3e2454370f91c3fe2befb3f24e25ede7',1,'spdlog::sinks::syslog_sink::operator=()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a54ca784b8f5e1ee9c2adcda3125c3515',1,'spdlog::sinks::wincolor_sink::operator=()']]], + ['operator_3d_3d',['operator==',['../classfmt_1_1v5_1_1basic__string__view.html#abbcc283ebd35db4ae2d5365a0861a2e2',1,'fmt::v5::basic_string_view']]], + ['operator_3e',['operator>',['../classfmt_1_1v5_1_1basic__string__view.html#a78b8913fe704e33269d9baa6f310b9b8',1,'fmt::v5::basic_string_view']]], + ['operator_3e_3d',['operator>=',['../classfmt_1_1v5_1_1basic__string__view.html#a13611d21d36e30193ebaf50463cbe75e',1,'fmt::v5::basic_string_view::operator>=()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ad164270aa9d019ca4e07c56e8b44d2c3',1,'fmt::v5::internal::null_terminating_iterator::operator>=()']]], + ['operator_5b_5d',['operator[]',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a2f3ec418e47e041ffd5628d10ef80f56',1,'fmt::v5::internal::basic_buffer::operator[](std::size_t index)'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a97721e13c38c6fd4a305067b61004b42',1,'fmt::v5::internal::basic_buffer::operator[](std::size_t index) const']]], + ['operator_7c',['operator|',['../classfmt_1_1v5_1_1text__style.html#ab8ce8b037913d539e5a753d513297f14',1,'fmt::v5::text_style::operator|()'],['../namespacefmt_1_1v5.html#a7e5a3d7f521a367387e1191c7893a240',1,'fmt::v5::operator|()']]], + ['operator_7c_3d',['operator|=',['../classfmt_1_1v5_1_1text__style.html#aab30ce069feb1260eb2f51b92b3c61c4',1,'fmt::v5::text_style']]], + ['orange',['orange',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0afe01d67a002dfa0f3ac084298142eccd',1,'fmt::v5']]], + ['orange_5fred',['orange_red',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae962684214d1c84dbc6a691b6d9eb60c',1,'fmt::v5']]], + ['orchid',['orchid',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a93b1453c8ec5a548389c935052536ccb',1,'fmt::v5']]], + ['os_2eh',['os.h',['../os_8h.html',1,'']]], + ['ostr_2eh',['ostr.h',['../ostr_8h.html',1,'']]], + ['ostream_2eh',['ostream.h',['../ostream_8h.html',1,'']]], + ['ostream_5f',['ostream_',['../classspdlog_1_1sinks_1_1ostream__sink.html#a53db4ea84203737b100365438d1951b4',1,'spdlog::sinks::ostream_sink']]], + ['ostream_5fsink',['ostream_sink',['../classspdlog_1_1sinks_1_1ostream__sink.html',1,'spdlog::sinks::ostream_sink< Mutex >'],['../classspdlog_1_1sinks_1_1ostream__sink.html#aa038c6518dc69c08a1251e7469bc4fd8',1,'spdlog::sinks::ostream_sink::ostream_sink(std::ostream &os, bool force_flush=false)'],['../classspdlog_1_1sinks_1_1ostream__sink.html#a761f1c26210fe42673af4734b38fe167',1,'spdlog::sinks::ostream_sink::ostream_sink(const ostream_sink &)=delete']]], + ['ostream_5fsink_2eh',['ostream_sink.h',['../ostream__sink_8h.html',1,'']]], + ['ostream_5fsink_5fmt',['ostream_sink_mt',['../namespacespdlog_1_1sinks.html#aeef023d4552e1e9be997bec2aa2fb184',1,'spdlog::sinks']]], + ['ostream_5fsink_5fst',['ostream_sink_st',['../namespacespdlog_1_1sinks.html#a7c6131fdceb0975b2700d70994a6b351',1,'spdlog::sinks']]], + ['out',['out',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a269fbfd37ea5e35b04d8ff1fd991138d',1,'fmt::v5::internal::chrono_formatter::out()'],['../structfmt_1_1v5_1_1format__to__n__result.html#a03f23327f9690a2407193ad112a1b65d',1,'fmt::v5::format_to_n_result::out()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#aa8255081d2498a11c4d0db766907709c',1,'fmt::v5::internal::context_base::out()'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a8890ae003e8b00eed900cd18d216cf48',1,'fmt::v5::internal::arg_formatter_base::out()'],['../classfmt_1_1v5_1_1basic__writer.html#a0bad6b95b096ed85f9db16c66c72bec9',1,'fmt::v5::basic_writer::out()']]], + ['out_5f',['out_',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a1549daf80c73bb341ed33dbe97d9c8a5',1,'fmt::v5::internal::truncating_iterator_base']]], + ['output_5frange',['output_range',['../classfmt_1_1v5_1_1output__range.html',1,'fmt::v5::output_range< OutputIt, T >'],['../classfmt_1_1v5_1_1output__range.html#a1c35641258830babeb553b03a6bc802b',1,'fmt::v5::output_range::output_range()']]], + ['output_5frange_3c_20std_3a_3aback_5finsert_5fiterator_3c_20container_20_3e_20_3e',['output_range< std::back_insert_iterator< Container > >',['../classfmt_1_1v5_1_1output__range.html',1,'fmt::v5']]], + ['overflow',['overflow',['../classfmt_1_1v5_1_1internal_1_1formatbuf.html#a9dfaa03638d438c79cd2d3bfa597d077',1,'fmt::v5::internal::formatbuf']]], + ['overrun_5fcounter',['overrun_counter',['../classspdlog_1_1details_1_1circular__q.html#a2f683dc45eca25efad9e415cf73c7ea0',1,'spdlog::details::circular_q::overrun_counter()'],['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#a15e3d12dff953034d5aad5590b8282cd',1,'spdlog::details::mpmc_blocking_queue::overrun_counter()'],['../classspdlog_1_1details_1_1thread__pool.html#adc34920f65797d8f54986dc1894a8804',1,'spdlog::details::thread_pool::overrun_counter()']]], + ['overrun_5foldest',['overrun_oldest',['../namespacespdlog.html#a42e109759a11c9514d3f6313a7709852a6d09cc54ae10145444aa2f43fe46d9f2',1,'spdlog']]] ]; diff --git a/docs/search/all_11.js b/docs/search/all_11.js index 92497d1..ba480dc 100644 --- a/docs/search/all_11.js +++ b/docs/search/all_11.js @@ -1,5 +1,92 @@ var searchData= [ - ['q_5ftype',['q_type',['../classspdlog_1_1details_1_1thread__pool.html#a77d633d56b0b5e1fe37965faa4642df5',1,'spdlog::details::thread_pool']]], - ['querydeviceinformation',['QueryDeviceInformation',['../livox__sdk_8h.html#a735d2136bc146ccc84b1c2d77ef85399',1,'livox_sdk.h']]] + ['p_5fformatter',['p_formatter',['../classspdlog_1_1details_1_1p__formatter.html',1,'spdlog::details::p_formatter'],['../classspdlog_1_1details_1_1p__formatter.html#a8a8cea56b038ed4d7f6cd6a04db4a135',1,'spdlog::details::p_formatter::p_formatter()']]], + ['pack',['Pack',['../classlivox_1_1_comm_port.html#aa06a75c5c7801967271b8925bd734fd1',1,'livox::CommPort::Pack()'],['../classlivox_1_1_protocol.html#a52573a66bbd0f40a624e23ec76465045',1,'livox::Protocol::Pack()']]], + ['packet_5ftype',['packet_type',['../structlivox_1_1_comm_packet.html#a44673e979d10ca9f967fb6a75ffc5612',1,'livox::CommPacket']]], + ['packettype',['PacketType',['../namespacelivox.html#a6941cc71243dd1b067c904fdd91bfb61',1,'livox']]], + ['pad2',['pad2',['../namespacespdlog_1_1details_1_1fmt__helper.html#ae8d7b70c5b54338c0903cf494b06404a',1,'spdlog::details::fmt_helper']]], + ['pad3',['pad3',['../namespacespdlog_1_1details_1_1fmt__helper.html#af739ecce102d47ff08a0f344a96897d9',1,'spdlog::details::fmt_helper']]], + ['pad6',['pad6',['../namespacespdlog_1_1details_1_1fmt__helper.html#aefae60b1ebdae78bc8f11c26b36b2cd6',1,'spdlog::details::fmt_helper']]], + ['pad9',['pad9',['../namespacespdlog_1_1details_1_1fmt__helper.html#aad467c706932b56929dae091b39c23f3',1,'spdlog::details::fmt_helper']]], + ['pad_5fside',['pad_side',['../structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942e',1,'spdlog::details::padding_info']]], + ['pad_5fuint',['pad_uint',['../namespacespdlog_1_1details_1_1fmt__helper.html#a569553750f9f2fa7b16c94a56a398de3',1,'spdlog::details::fmt_helper']]], + ['padding',['padding',['../structlivox_1_1_comm_packet.html#a03bb9a2b86f81a5000369d43ceed043c',1,'livox::CommPacket']]], + ['padding_5finfo',['padding_info',['../structspdlog_1_1details_1_1padding__info.html',1,'spdlog::details::padding_info'],['../structspdlog_1_1details_1_1padding__info.html#a2ebd71cdda444c97eba736828179b573',1,'spdlog::details::padding_info::padding_info()=default'],['../structspdlog_1_1details_1_1padding__info.html#a51160b4df2aeb08f476d78d8af4c3851',1,'spdlog::details::padding_info::padding_info(size_t width, padding_info::pad_side side)']]], + ['padinfo_5f',['padinfo_',['../classspdlog_1_1details_1_1flag__formatter.html#a80f1166212df85f665d87f2826240567',1,'spdlog::details::flag_formatter']]], + ['pale_5fgolden_5frod',['pale_golden_rod',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5841e227ac7407c007c4dea330306f08',1,'fmt::v5']]], + ['pale_5fgreen',['pale_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a573cc0c97e7f05440b7ca67a93e46349',1,'fmt::v5']]], + ['pale_5fturquoise',['pale_turquoise',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a707832f12c57d104ccba9158524e8e69',1,'fmt::v5']]], + ['pale_5fviolet_5fred',['pale_violet_red',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ab5bd346b77f564748d4d2743156ed6e8',1,'fmt::v5']]], + ['papaya_5fwhip',['papaya_whip',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a0ee903fa27ac4513f20d12a86c19e7a2',1,'fmt::v5']]], + ['parameter_5flist',['parameter_list',['../struct_hub_set_extrinsic_parameter_request.html#a9dc2a94df678e4337c83767419e4f734',1,'HubSetExtrinsicParameterRequest::parameter_list()'],['../struct_hub_get_extrinsic_parameter_response.html#abbb3f28dee7df501c191cffb9151beea',1,'HubGetExtrinsicParameterResponse::parameter_list()']]], + ['parse',['parse',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ada366ec2d0f00fa94560551fdbbbb640',1,'fmt::formatter< spdlog::details::bytes_range< T > >::parse()'],['../structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#a12522d59cd6a134c4da248ee27a600bb',1,'fmt::v5::formatter< std::chrono::duration< Rep, Period >, Char >::parse()'],['../structfmt_1_1v5_1_1formatter.html#a4147e797582f75be18645d2b6aef4e57',1,'fmt::v5::formatter::parse()'],['../structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html#a6a4b8134330ce67c7c9e8e7db077b334',1,'fmt::v5::formatter< T, Char, typename std::enable_if< internal::format_type< typename buffer_context< Char >::type, T >::value >::type >::parse()'],['../classfmt_1_1v5_1_1dynamic__formatter.html#a541d33c040cb6d2ff781157fad6d09b1',1,'fmt::v5::dynamic_formatter::parse()'],['../structfmt_1_1v5_1_1printf__formatter.html#af08ea64b651a80ede60aba6ccdd6c72c',1,'fmt::v5::printf_formatter::parse()'],['../structfmt_1_1v5_1_1formatting__base.html#acd8d05ac57daf149ec2d8fffb4ffb106',1,'fmt::v5::formatting_base::parse()'],['../structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#aa9f66948e4a9e80fde6dadcce7cca55a',1,'fmt::v5::formatter< TupleT, Char, typename std::enable_if< fmt::is_tuple_like< TupleT >::value >::type >::parse()'],['../structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#a56962f9c47a1654f91ebdc5244b81f32',1,'fmt::v5::formatter< RangeT, Char, typename std::enable_if< fmt::is_range< RangeT >::value >::type >::parse()'],['../structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#afe698cc1f5147569d954e40bdab35eb7',1,'fmt::v5::formatter< std::tm, Char >::parse()']]], + ['parse_5falign',['parse_align',['../namespacefmt_1_1v5_1_1internal.html#aaee1761c014bc6a5ca7be7fcb48f6a1e',1,'fmt::v5::internal']]], + ['parse_5farg_5fid',['parse_arg_id',['../namespacefmt_1_1v5_1_1internal.html#a2c52eadabf215a00fdc216702dbf0df6',1,'fmt::v5::internal']]], + ['parse_5fchrono_5fformat',['parse_chrono_format',['../namespacefmt_1_1v5_1_1internal.html#ad8194ac1ba523a7a5014c9cb49f3bf8d',1,'fmt::v5::internal']]], + ['parse_5fcontext',['parse_context',['../classfmt_1_1v5_1_1internal_1_1context__base.html#a782e3cda3eec3c7792fddfbbedb0b7d7',1,'fmt::v5::internal::context_base::parse_context()'],['../namespacefmt_1_1v5.html#aa52ab0ebff57aaa2e4cd5ba43ac4d95d',1,'fmt::v5::parse_context()']]], + ['parse_5fformat_5fspecs',['parse_format_specs',['../namespacefmt_1_1v5_1_1internal.html#ac584bbf50f1e0e44628a7a53c4ec9149',1,'fmt::v5::internal::parse_format_specs(const Char *begin, const Char *end, SpecHandler &&handler)'],['../namespacefmt_1_1v5_1_1internal.html#a4df1425f61a6677296a1d61cb29dd2cc',1,'fmt::v5::internal::parse_format_specs(ParseContext &ctx)']]], + ['parse_5fformat_5fstring',['parse_format_string',['../namespacefmt_1_1v5_1_1internal.html#a113eb41a02e482540b90183e4ad7ca27',1,'fmt::v5::internal']]], + ['parse_5fnonnegative_5fint',['parse_nonnegative_int',['../namespacefmt_1_1v5_1_1internal.html#aa163dc10b3f54b87b9f71c768b08250f',1,'fmt::v5::internal::parse_nonnegative_int(const Char *&begin, const Char *end, ErrorHandler &&eh)'],['../namespacefmt_1_1v5_1_1internal.html#a534d02a4b06a68425c00665acd4a0df4',1,'fmt::v5::internal::parse_nonnegative_int(Iterator &it, ErrorHandler &&eh)']]], + ['parse_5fwidth',['parse_width',['../namespacefmt_1_1v5_1_1internal.html#a7ac857188cb657852d3dd2fcb223a331',1,'fmt::v5::internal']]], + ['parsecommstream',['ParseCommStream',['../classlivox_1_1_comm_port.html#a0747279cfee5e49d6abe399adbe81e2a',1,'livox::CommPort']]], + ['parsepacket',['ParsePacket',['../classlivox_1_1_protocol.html#a0327374f8c1e7008805b8d87732fe4b8',1,'livox::Protocol']]], + ['parseresult',['ParseResult',['../namespacelivox.html#aa0c7b20b2866108c5e232ff70bea4820',1,'livox']]], + ['patch',['patch',['../struct_livox_sdk_version.html#a93dd2938e447a72dfb71e454c97cdaa6',1,'LivoxSdkVersion']]], + ['pattern_5fformatter',['pattern_formatter',['../classspdlog_1_1pattern__formatter.html',1,'spdlog::pattern_formatter'],['../classspdlog_1_1pattern__formatter.html#a77d5f83cf0e00029d5796b81de1e1a9e',1,'spdlog::pattern_formatter::pattern_formatter(std::string pattern, pattern_time_type time_type=pattern_time_type::local, std::string eol=spdlog::details::os::default_eol)'],['../classspdlog_1_1pattern__formatter.html#a4c11f41c2e6a62ac10e80170c0958192',1,'spdlog::pattern_formatter::pattern_formatter(pattern_time_type time_type=pattern_time_type::local, std::string eol=spdlog::details::os::default_eol)'],['../classspdlog_1_1pattern__formatter.html#a3c7051314c9422b667e254cb27d81b80',1,'spdlog::pattern_formatter::pattern_formatter(const pattern_formatter &other)=delete']]], + ['pattern_5fformatter_2eh',['pattern_formatter.h',['../pattern__formatter_8h.html',1,'']]], + ['pattern_5ftime_5ftype',['pattern_time_type',['../namespacespdlog.html#ad598fbd8338772e66ae09e8723a07ced',1,'spdlog']]], + ['payload',['payload',['../structspdlog_1_1details_1_1log__msg.html#a33fd07702d73245581fccd8d0d04b82a',1,'spdlog::details::log_msg']]], + ['peach_5fpuff',['peach_puff',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae74648a463c3d18a05e153977cb39855',1,'fmt::v5']]], + ['periodic_5fworker',['periodic_worker',['../classspdlog_1_1details_1_1periodic__worker.html',1,'spdlog::details::periodic_worker'],['../classspdlog_1_1details_1_1periodic__worker.html#a16ae1b1cb27aa85efbc25a2f055d3523',1,'spdlog::details::periodic_worker::periodic_worker(const std::function< void()> &callback_fun, std::chrono::seconds interval)'],['../classspdlog_1_1details_1_1periodic__worker.html#a43b4294bd9a547727864ff18da48b775',1,'spdlog::details::periodic_worker::periodic_worker(const periodic_worker &)=delete']]], + ['periodic_5fworker_2eh',['periodic_worker.h',['../periodic__worker_8h.html',1,'']]], + ['peru',['peru',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a32e8419a7ecb8f918c70fdadf783e3d8',1,'fmt::v5']]], + ['pid',['pid',['../namespacespdlog_1_1details_1_1os.html#afa5e2f0096ec0aa63c2d20143cb18b17',1,'spdlog::details::os']]], + ['pid_5fformatter',['pid_formatter',['../classspdlog_1_1details_1_1pid__formatter.html',1,'spdlog::details::pid_formatter'],['../classspdlog_1_1details_1_1pid__formatter.html#a7a37fa9f0f96483f5552cc55ba4c16da',1,'spdlog::details::pid_formatter::pid_formatter()']]], + ['pink',['pink',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4a0b0dcedd48f780778d1cd1bb8f9877',1,'fmt::v5']]], + ['pipe',['pipe',['../classfmt_1_1v5_1_1file.html#adec2f1ea78f1707216c7de02232d273e',1,'fmt::v5::file']]], + ['pitch',['pitch',['../struct_extrinsic_parameter_request_item.html#a90eac1f729d93943a5ea8da0a174ba59',1,'ExtrinsicParameterRequestItem::pitch()'],['../struct_extrinsic_parameter_response_item.html#a10a52148b1281622da70e95053d4f1ab',1,'ExtrinsicParameterResponseItem::pitch()'],['../struct_lidar_set_extrinsic_parameter_request.html#ac6bdec3885bfe5670389f5b40cd9d9ef',1,'LidarSetExtrinsicParameterRequest::pitch()'],['../struct_lidar_get_extrinsic_parameter_response.html#aee7829f9548f6e897face41560873e7c',1,'LidarGetExtrinsicParameterResponse::pitch()']]], + ['plum',['plum',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a3e042037287d6871eec3dbd48556b0b4',1,'fmt::v5']]], + ['plus_5fflag',['PLUS_FLAG',['../namespacefmt_1_1v5.html#a2afc98455558e211af15ed1ad8c12bfaa972e2caa64b4634539a0e441e76f8148',1,'fmt::v5']]], + ['pointer',['pointer',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a07ebb1da97cc649df20f1f8c6f03e465',1,'fmt::v5::internal::counting_iterator::pointer()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#acfec8964ca97b0ea4a08d2efff4ba6ba',1,'fmt::v5::internal::truncating_iterator_base::pointer()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a42557d330303048247da9fc8f60a6a0c',1,'fmt::v5::internal::null_terminating_iterator::pointer()'],['../classfmt_1_1v5_1_1internal_1_1value.html#aa69a8daba75dfea365755c87b16c1760',1,'fmt::v5::internal::value::pointer()']]], + ['pointer_5ffrom',['pointer_from',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ab9cf4717029a7ee8de81c7232c3fda4c',1,'fmt::v5::internal::null_terminating_iterator::pointer_from()'],['../namespacefmt_1_1v5_1_1internal.html#a91182ac859ac969e4f719d61cad002e1',1,'fmt::v5::internal::pointer_from(null_terminating_iterator< Char > it)'],['../namespacefmt_1_1v5_1_1internal.html#a875ca22a1f2292b1ce663881420906b9',1,'fmt::v5::internal::pointer_from(const T *p)']]], + ['pointer_5ftype',['pointer_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a355d7dd1bc164c3b845d96bb5ba1a5c0',1,'fmt::v5::internal']]], + ['pop_5ffront',['pop_front',['../classspdlog_1_1details_1_1circular__q.html#a6e05a29447127eadabf01175a6b3ddc0',1,'spdlog::details::circular_q']]], + ['portcache',['PortCache',['../structlivox_1_1_port_cache.html',1,'livox']]], + ['posix_2eh',['posix.h',['../posix_8h.html',1,'']]], + ['post_5fflush',['post_flush',['../classspdlog_1_1details_1_1thread__pool.html#aa851092603e816f78dd81bb980232048',1,'spdlog::details::thread_pool']]], + ['post_5flog',['post_log',['../classspdlog_1_1details_1_1thread__pool.html#a70cc09729d82174d84640eaface150e0',1,'spdlog::details::thread_pool']]], + ['postfix',['postfix',['../structfmt_1_1v5_1_1formatting__range.html#a36c05ab14e83d967e53328ea8660e03a',1,'fmt::v5::formatting_range::postfix()'],['../structfmt_1_1v5_1_1formatting__tuple.html#a7dc63730dad2ee965f7d128ebbd8f7c1',1,'fmt::v5::formatting_tuple::postfix()']]], + ['pow10_5fexponents',['POW10_EXPONENTS',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#ae51c63ec91f02e2dad5c1d3eedb7b532',1,'fmt::v5::internal::basic_data']]], + ['pow10_5fsignificands',['POW10_SIGNIFICANDS',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a4984044ce1b065540381b3694eb994b0',1,'fmt::v5::internal::basic_data']]], + ['powder_5fblue',['powder_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a76f258d530f43c55523384b472086771',1,'fmt::v5']]], + ['powers_5fof_5f10_5f32',['POWERS_OF_10_32',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a195c2b45ae9bb0a953156d3ae7eb35ca',1,'fmt::v5::internal::basic_data']]], + ['precision',['precision',['../structfmt_1_1v5_1_1core__format__specs.html#a445855f2d6d7886e1afb26e570618c47',1,'fmt::v5::core_format_specs']]], + ['precision_5fadapter',['precision_adapter',['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html',1,'fmt::v5::internal::precision_adapter< SpecHandler, Char >'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aca2d85b4bd5747fb96a880034a6e4d14',1,'fmt::v5::internal::precision_adapter::precision_adapter()']]], + ['precision_5fchecker',['precision_checker',['../classfmt_1_1v5_1_1internal_1_1precision__checker.html',1,'fmt::v5::internal::precision_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1precision__checker.html#ad03d296cfbb86da629a4d0a2ab7abdd8',1,'fmt::v5::internal::precision_checker::precision_checker()']]], + ['precision_5fref',['precision_ref',['../structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html#a889a59c0e42b1be665f320085fecd117',1,'fmt::v5::internal::dynamic_format_specs']]], + ['prefix',['prefix',['../structfmt_1_1v5_1_1formatting__range.html#aff1b7e3cc3fe6dd0177e0a16bd11d257',1,'fmt::v5::formatting_range::prefix()'],['../structfmt_1_1v5_1_1formatting__tuple.html#a7b02d7eeab87b7ac85178e59ddcd252b',1,'fmt::v5::formatting_tuple::prefix()']]], + ['prettify_5fhandler',['prettify_handler',['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html',1,'fmt::v5::internal::prettify_handler'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a4af3a99f9adb0a32c74ce88f1386b986',1,'fmt::v5::internal::prettify_handler::prettify_handler()']]], + ['prevent_5fchild_5ffd',['prevent_child_fd',['../namespacespdlog_1_1details_1_1os.html#a58e68538bb3667c56f3623bf047093d6',1,'spdlog::details::os']]], + ['print',['print',['../classfmt_1_1v5_1_1buffered__file.html#a52e4076f24c9a64080ef4828329c1cad',1,'fmt::v5::buffered_file::print()'],['../namespacefmt_1_1v5.html#ab1d87084097ae33226e005179e09befd',1,'fmt::v5::print(std::FILE *f, const text_style &ts, const String &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a7373458bc3acf69f580a4ead0ebc159f',1,'fmt::v5::print(const text_style &ts, const String &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#ad7545fdef9670aa6f3a042af78b14554',1,'fmt::v5::print(std::FILE *f, const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a3f6a04fdf140370cbd2b83d8adae100f',1,'fmt::v5::print(const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a2e1e2dadf40c0bdae64332ed12924425',1,'fmt::v5::print(std::basic_ostream< typename char_t< S >::type > &os, const S &format_str, const Args &... args)']]], + ['printf',['printf',['../namespacefmt_1_1v5_1_1internal.html#a16cf20ac8074c751e521b5f93d5c7014',1,'fmt::v5::internal::printf()'],['../namespacefmt_1_1v5.html#a2b685ddfe3ac9548bf7ebff220e2ccd5',1,'fmt::v5::printf()']]], + ['printf_2eh',['printf.h',['../printf_8h.html',1,'']]], + ['printf_5farg_5fformatter',['printf_arg_formatter',['../classfmt_1_1v5_1_1printf__arg__formatter.html',1,'fmt::v5::printf_arg_formatter< Range >'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a1699fc4ff1987dccc2a7958ff3beaf59',1,'fmt::v5::printf_arg_formatter::printf_arg_formatter()']]], + ['printf_5fargs',['printf_args',['../namespacefmt_1_1v5.html#a6689ac15e44b821c97159c1f63fc39f8',1,'fmt::v5']]], + ['printf_5fcontext',['printf_context',['../namespacefmt_1_1v5.html#a64916ff674b5c95f8364940456eb640f',1,'fmt::v5']]], + ['printf_5fformatter',['printf_formatter',['../structfmt_1_1v5_1_1printf__formatter.html',1,'fmt::v5']]], + ['printf_5fprecision_5fhandler',['printf_precision_handler',['../classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html',1,'fmt::v5::internal']]], + ['printf_5fwidth_5fhandler',['printf_width_handler',['../classfmt_1_1v5_1_1internal_1_1printf__width__handler.html',1,'fmt::v5::internal::printf_width_handler< Char >'],['../classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a6ae374d553e7f4b094eff281b6175caa',1,'fmt::v5::internal::printf_width_handler::printf_width_handler()']]], + ['process_5fspecs',['process_specs',['../namespacefmt_1_1v5_1_1internal.html#a63add7333da71960d33855aa1489c2ee',1,'fmt::v5::internal']]], + ['progress',['progress',['../union_status_union.html#aee8bbc3ee1cfcd5eaab54d09b589028f',1,'StatusUnion']]], + ['protocol',['Protocol',['../classlivox_1_1_protocol.html',1,'livox::Protocol'],['../structlivox_1_1_comm_packet.html#a670bd53de47c748164570decdb70c968',1,'livox::CommPacket::protocol()']]], + ['protocol_2eh',['protocol.h',['../protocol_8h.html',1,'']]], + ['protocol_5fversion',['protocol_version',['../structlivox_1_1_comm_packet.html#a7d4df6086cbac3cbaecedfda76d6c11e',1,'livox::CommPacket']]], + ['protocoltype',['ProtocolType',['../namespacelivox.html#ab97b5b082d8b27d02cd14daeb8c9807c',1,'livox']]], + ['ptr',['ptr',['../namespacefmt_1_1v5.html#a19f551b1c3abec2c3d40d85ab3ccee03',1,'fmt::v5']]], + ['purple',['purple',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0abb7aedfa61007447dd6efaf9f37641e3',1,'fmt::v5']]], + ['push_5fback',['push_back',['../classspdlog_1_1details_1_1circular__q.html#aaaab548bb6f5dd362458d6b044e0e950',1,'spdlog::details::circular_q::push_back()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8e3b65c01dadb977b9c2327864db9e15',1,'fmt::v5::internal::basic_buffer::push_back()']]], + ['put_5fdelimiters',['put_delimiters',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#aec694b471eae3bc7d0a1d4487579721c',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]], + ['put_5fnewline',['put_newline',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ae001a71b76b4a56f722a7b91c506e9bf',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]], + ['put_5fnewlines',['put_newlines',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a6f28abac88c19077023abaadd2d3315f',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]], + ['put_5fpositions',['put_positions',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a0997eb476f830eb211f3d17777079d7d',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]] ]; diff --git a/docs/search/all_12.js b/docs/search/all_12.js index 72ec79a..92497d1 100644 --- a/docs/search/all_12.js +++ b/docs/search/all_12.js @@ -1,59 +1,5 @@ var searchData= [ - ['r',['r',['../structfmt_1_1v5_1_1rgb.html#ac95ca52f2a8db235cd652813193f8ca5',1,'fmt::v5::rgb']]], - ['r_5fformatter',['R_formatter',['../classspdlog_1_1details_1_1_r__formatter.html',1,'spdlog::details::R_formatter'],['../classspdlog_1_1details_1_1r__formatter.html',1,'spdlog::details::r_formatter'],['../classspdlog_1_1details_1_1r__formatter.html#ac3be2e36215d0335d859af35a35e2810',1,'spdlog::details::r_formatter::r_formatter()'],['../classspdlog_1_1details_1_1_r__formatter.html#a712095b0b26244817d78963d98a9a6fb',1,'spdlog::details::R_formatter::R_formatter()']]], - ['rainfogsuppressrequestitem',['RainFogSuppressRequestItem',['../struct_rain_fog_suppress_request_item.html',1,'']]], - ['range',['range',['../classfmt_1_1v5_1_1arg__formatter.html#a332fb38fd91d73717f0f3e0b2b09d3b7',1,'fmt::v5::arg_formatter::range()'],['../structfmt_1_1v5_1_1format__handler.html#a717e330f9b9cfa519cbf97e5e2a81add',1,'fmt::v5::format_handler::range()']]], - ['range_5flength_5flimit',['range_length_limit',['../structfmt_1_1v5_1_1formatting__range.html#aecf071a5da5a8aa12b872e66c12c0f03',1,'fmt::v5::formatting_range']]], - ['ranges_2eh',['ranges.h',['../ranges_8h.html',1,'']]], - ['raw',['raw',['../structspdlog_1_1details_1_1async__msg.html#a0c3ac027c1ca0c1380210c32219a0370',1,'spdlog::details::async_msg']]], - ['rd_5fidx',['rd_idx',['../structlivox_1_1_port_cache.html#a307ffa61497df31d0d8b50eb3294ce28',1,'livox::PortCache']]], - ['rdonly',['RDONLY',['../classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1a51c67cb8c6aa3d8dbdfdf87561746169',1,'fmt::v5::file']]], - ['rdwr',['RDWR',['../classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1afc29ebeb23bb8aac58bc3911f67a7e18',1,'fmt::v5::file']]], - ['read',['read',['../classfmt_1_1v5_1_1file.html#a37037657920e57b50756d59259cff494',1,'fmt::v5::file']]], - ['rebecca_5fpurple',['rebecca_purple',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a7087c7ffb872fac6aba0c893b8bbee42',1,'fmt::v5']]], - ['receiver',['receiver',['../structlivox_1_1_comm_packet.html#abd2c32ceba40ea285a0ca2990a7f345d',1,'livox::CommPacket']]], - ['red',['red',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab5c0ce75c9457f5125a441555287b8d2',1,'spdlog::sinks::ansicolor_sink::red()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a8635f904f1dad9e60aaefe307e076f1d',1,'spdlog::sinks::wincolor_sink::RED()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0abda9643ac6601722a28f238714274da4',1,'fmt::v5::red()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaabda9643ac6601722a28f238714274da4',1,'fmt::v5::red()']]], - ['reference',['reference',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a81db3ee5c66069e844af366c6ffb1dce',1,'fmt::v5::internal::counting_iterator::reference()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#aa891dd373534efdbf8a03c9b1b5a77fa',1,'fmt::v5::internal::truncating_iterator_base::reference()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a1ac6b94c99323d58886943b1032be0b6',1,'fmt::v5::internal::null_terminating_iterator::reference()']]], - ['reflectivity',['reflectivity',['../struct_livox_raw_point.html#a1c58c82c33e06f4d80490ddd1285d926',1,'LivoxRawPoint::reflectivity()'],['../struct_livox_point.html#a6a29cf468c61e20cb34e8b46687b9092',1,'LivoxPoint::reflectivity()']]], - ['register_5flogger',['register_logger',['../classspdlog_1_1details_1_1registry.html#ab77fb7513b2e3e6442a83f037543e391',1,'spdlog::details::registry::register_logger()'],['../namespacespdlog.html#a306f1c2ef42ba046620bd84266ee5b24',1,'spdlog::register_logger()']]], - ['registry',['registry',['../classspdlog_1_1details_1_1registry.html',1,'spdlog::details::registry'],['../classspdlog_1_1details_1_1registry.html#ab5c1a2f7b8e2e9eec4e0fa75d9167f3b',1,'spdlog::details::registry::registry()']]], - ['registry_2eh',['registry.h',['../registry_8h.html',1,'']]], - ['remove',['remove',['../namespacespdlog_1_1details_1_1os.html#a6026b23c139f733601c1a5fa9f4d555f',1,'spdlog::details::os']]], - ['remove_5fprefix',['remove_prefix',['../classfmt_1_1v5_1_1basic__string__view.html#a6fed916b8264a1f8c2d69359062b00aa',1,'fmt::v5::basic_string_view']]], - ['remove_5fsink',['remove_sink',['../classspdlog_1_1sinks_1_1dist__sink.html#ac1537fdc6225fd57cc819e1fb9c5f8c7',1,'spdlog::sinks::dist_sink']]], - ['remove_5ftrailing',['remove_trailing',['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#ab939ca54a7a5ba0a79c2232a5b3aff46',1,'fmt::v5::internal::prettify_handler::remove_trailing()'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#a19a71ff0f2ccc8895dcc5f2977b0c2cd',1,'fmt::v5::internal::char_counter::remove_trailing()']]], - ['rename',['rename',['../namespacespdlog_1_1details_1_1os.html#a8603bb3ec0aab28cf4fd6a0ef7cc78b9',1,'spdlog::details::os']]], - ['reopen',['reopen',['../classspdlog_1_1details_1_1file__helper.html#a21c688da7f241c53871b462c3a5c2c94',1,'spdlog::details::file_helper']]], - ['report_5fno_5fdate',['report_no_date',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a477b82b9af3dab4475588b9f4a6d3070',1,'fmt::v5::internal::chrono_format_checker']]], - ['report_5fsystem_5ferror',['report_system_error',['../namespacefmt_1_1v5.html#aede03e1a36d834c65a48c9349a085fc8',1,'fmt::v5']]], - ['requestpackcb',['RequestPackCb',['../namespacelivox.html#ad7370a98d65fd20693ed58a470ec9439',1,'livox']]], - ['reserve',['reserve',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ab306d6d55956332b1083e967393a59f1',1,'fmt::v5::internal::basic_buffer::reserve()'],['../namespacefmt_1_1v5_1_1internal.html#a9eee3495bac20bffa3ab73cedf950d75',1,'fmt::v5::internal::reserve(std::back_insert_iterator< Container > &it, std::size_t n)'],['../namespacefmt_1_1v5_1_1internal.html#a5f7253ee05af521286206b1ab24ad368',1,'fmt::v5::internal::reserve(Iterator &it, std::size_t)']]], - ['reserved',['reserved',['../struct_broadcast_device_info.html#abc9a813e11ebeebeaf937b34090f3620',1,'BroadcastDeviceInfo']]], - ['reset',['reset',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a7a232ef41d85a03d99053ee931fb11a4',1,'spdlog::sinks::ansicolor_sink']]], - ['reset_5fcolor',['RESET_COLOR',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a6da82443fd09335fe5cbe3fe39cbc97b',1,'fmt::v5::internal::basic_data::RESET_COLOR()'],['../namespacefmt_1_1v5_1_1internal.html#a3c469199b831e4d4d2b3728bb8e99b1f',1,'fmt::v5::internal::reset_color()']]], - ['reset_5fcolor_3c_20wchar_5ft_20_3e',['reset_color< wchar_t >',['../namespacefmt_1_1v5_1_1internal.html#acba41814a0db9856bd9785841f7aa4a0',1,'fmt::v5::internal']]], - ['resize',['resize',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#af20fa1cd5e5bd230ab1d4e89c6aead38',1,'fmt::v5::internal::basic_buffer']]], - ['responsestatus',['ResponseStatus',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6',1,'livox_def.h']]], - ['result',['result',['../structfmt_1_1v5_1_1internal_1_1function_1_1result.html',1,'fmt::v5::internal::function< Result >::result< T >'],['../structfmt_1_1v5_1_1internal_1_1char__t.html#ac83141e2510982ccc56eea9c9cc74ccc',1,'fmt::v5::internal::char_t::result()']]], - ['result_5fof',['result_of',['../structfmt_1_1v5_1_1internal_1_1result__of.html',1,'fmt::v5::internal']]], - ['result_5fof_3c_20f_28args_2e_2e_2e_29_3e',['result_of< F(Args...)>',['../structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html',1,'fmt::v5::internal']]], - ['ret_5fcode',['ret_code',['../struct_return_code.html#abda96609396b9cf80e4449efb974e920',1,'ReturnCode::ret_code()'],['../struct_extrinsic_parameter_response_item.html#a0651e41de730be277c4cc29902a0d711',1,'ExtrinsicParameterResponseItem::ret_code()'],['../struct_device_information_response.html#a9e625ec596c65c24d3c1d229a9785c72',1,'DeviceInformationResponse::ret_code()'],['../struct_get_device_i_p_mode_response.html#a3eff4056a851a546b2185ce750b5bb30',1,'GetDeviceIPModeResponse::ret_code()'],['../struct_heartbeat_response.html#a7a0d09ada36c1e0c785920017211eada',1,'HeartbeatResponse::ret_code()'],['../struct_lidar_get_extrinsic_parameter_response.html#aa8637fe0f80e9c8976100458249e72be',1,'LidarGetExtrinsicParameterResponse::ret_code()'],['../struct_hub_query_lidar_information_response.html#a914cc326363ded18efb18a0b321a97b4',1,'HubQueryLidarInformationResponse::ret_code()'],['../struct_hub_set_mode_response.html#a8f39d0bb5b2950409fd760471ea14806',1,'HubSetModeResponse::ret_code()'],['../struct_hub_set_extrinsic_parameter_response.html#a4f887dc5ff42061da54bb8f56f06eabe',1,'HubSetExtrinsicParameterResponse::ret_code()'],['../struct_hub_get_extrinsic_parameter_response.html#a07b82bb424aed94e3d0e0d8be1adf085',1,'HubGetExtrinsicParameterResponse::ret_code()'],['../struct_hub_query_lidar_status_response.html#a28cda59b09ddbb0adeeb82ba59e8043b',1,'HubQueryLidarStatusResponse::ret_code()'],['../struct_hub_rain_fog_suppress_response.html#a189ce6c8031a2d326f6317108c2c8269',1,'HubRainFogSuppressResponse::ret_code()']]], - ['ret_5fcode_5flist',['ret_code_list',['../struct_hub_set_extrinsic_parameter_response.html#aefd242daf07ddff079b88119e809252e',1,'HubSetExtrinsicParameterResponse']]], - ['ret_5fstate_5flist',['ret_state_list',['../struct_hub_set_mode_response.html#a1fc69cbcf14b212987fc3a6408f5515f',1,'HubSetModeResponse::ret_state_list()'],['../struct_hub_rain_fog_suppress_response.html#ad95528d299ac14e975932752d27fe59a',1,'HubRainFogSuppressResponse::ret_state_list()']]], - ['returncode',['ReturnCode',['../struct_return_code.html',1,'']]], - ['reverse',['reverse',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ac755cd237351fa5cdf4910e491ddbf97',1,'spdlog::sinks::ansicolor_sink']]], - ['rgb',['rgb',['../structfmt_1_1v5_1_1rgb.html',1,'fmt::v5::rgb'],['../structfmt_1_1v5_1_1rgb.html#a62ff2701862b5856f1f44b4665665b32',1,'fmt::v5::rgb::rgb()'],['../structfmt_1_1v5_1_1rgb.html#a1daecef7516f5a12c165ac69d93e34c2',1,'fmt::v5::rgb::rgb(uint8_t r_, uint8_t g_, uint8_t b_)'],['../structfmt_1_1v5_1_1rgb.html#a09431a5576c128fa040c35f390852b14',1,'fmt::v5::rgb::rgb(uint32_t hex)'],['../structfmt_1_1v5_1_1rgb.html#ae26aa08687996b7f191f73a6e4d1b626',1,'fmt::v5::rgb::rgb(color hex)']]], - ['rgb_5fcolor',['rgb_color',['../unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html#abc101e3949ceadb82b39a89c0e7ff92c',1,'fmt::v5::internal::color_type::color_union']]], - ['right',['right',['../structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942ea9c57d63e3303865488819d4b5679cf09',1,'spdlog::details::padding_info']]], - ['roll',['roll',['../struct_extrinsic_parameter_request_item.html#af5d441ccf6ec53035b7ef76a37a012bc',1,'ExtrinsicParameterRequestItem::roll()'],['../struct_extrinsic_parameter_response_item.html#a2d44941ee40e4b84dab880d8a23fb3a6',1,'ExtrinsicParameterResponseItem::roll()'],['../struct_lidar_set_extrinsic_parameter_request.html#aa2719d36a514d8f97c39f0da3f0449d0',1,'LidarSetExtrinsicParameterRequest::roll()'],['../struct_lidar_get_extrinsic_parameter_response.html#a452bec545768ac85c3a3276d553fd538',1,'LidarGetExtrinsicParameterResponse::roll()']]], - ['rosy_5fbrown',['rosy_brown',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a6f6922bd3e51b8d19b4f78df8dec7a52',1,'fmt::v5']]], - ['rotating_5ffile_5fsink',['rotating_file_sink',['../classspdlog_1_1sinks_1_1rotating__file__sink.html',1,'spdlog::sinks::rotating_file_sink< Mutex >'],['../classspdlog_1_1sinks_1_1rotating__file__sink.html#a1dcebdde175de15bee24da6e9ec70990',1,'spdlog::sinks::rotating_file_sink::rotating_file_sink()']]], - ['rotating_5ffile_5fsink_2eh',['rotating_file_sink.h',['../rotating__file__sink_8h.html',1,'']]], - ['rotating_5ffile_5fsink_5fmt',['rotating_file_sink_mt',['../namespacespdlog_1_1sinks.html#a70b4fab83ca180ef19c4124f4823aeaa',1,'spdlog::sinks']]], - ['rotating_5ffile_5fsink_5fst',['rotating_file_sink_st',['../namespacespdlog_1_1sinks.html#a694eff66a11012e2fbe3fa3a1c963c96',1,'spdlog::sinks']]], - ['rotating_5flogger_5fmt',['rotating_logger_mt',['../namespacespdlog.html#a22f7ba52bed824030a97583cf1628af9',1,'spdlog']]], - ['rotating_5flogger_5fst',['rotating_logger_st',['../namespacespdlog.html#a8f8f238ddac5a799696cf25e98b382e7',1,'spdlog']]], - ['royal_5fblue',['royal_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4108cee2c1205de0bba7a8f3f55ba48b',1,'fmt::v5']]], - ['rsvd',['rsvd',['../struct_livox_eth_packet.html#ae786d26c1650fd52f245795cabe659e1',1,'LivoxEthPacket']]] + ['q_5ftype',['q_type',['../classspdlog_1_1details_1_1thread__pool.html#a77d633d56b0b5e1fe37965faa4642df5',1,'spdlog::details::thread_pool']]], + ['querydeviceinformation',['QueryDeviceInformation',['../livox__sdk_8h.html#a735d2136bc146ccc84b1c2d77ef85399',1,'livox_sdk.h']]] ]; diff --git a/docs/search/all_13.js b/docs/search/all_13.js index b784e49..10c4b0a 100644 --- a/docs/search/all_13.js +++ b/docs/search/all_13.js @@ -1,179 +1,60 @@ var searchData= [ - ['details',['details',['../namespacespdlog_1_1details.html',1,'spdlog']]], - ['fmt_5fhelper',['fmt_helper',['../namespacespdlog_1_1details_1_1fmt__helper.html',1,'spdlog::details']]], - ['level',['level',['../namespacespdlog_1_1level.html',1,'spdlog']]], - ['os',['os',['../namespacespdlog_1_1details_1_1os.html',1,'spdlog::details']]], - ['s',['s',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad5e36628d12c268b31c170ae1f41de17',1,'fmt::v5::internal::chrono_formatter']]], - ['s_5fformatter',['S_formatter',['../classspdlog_1_1details_1_1_s__formatter.html',1,'spdlog::details::S_formatter'],['../classspdlog_1_1details_1_1_s__formatter.html#a8e9ddad945ae1f9bfc79adb0286723a6',1,'spdlog::details::S_formatter::S_formatter()']]], - ['saddle_5fbrown',['saddle_brown',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a0b1ae0e5580eaa0e6968ec6c8143ecac',1,'fmt::v5']]], - ['salmon',['salmon',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a180fd182f9a0742f483619781ccc36c4',1,'fmt::v5']]], - ['sandy_5fbrown',['sandy_brown',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9a19a83d0097df35f7ba7af753f0537d',1,'fmt::v5']]], - ['saveloggerfile',['SaveLoggerFile',['../livox__sdk_8h.html#a07da2c37e72a9f9c6537cc49e2b1d0c8',1,'livox_sdk.h']]], - ['scoped_5fpad',['scoped_pad',['../classspdlog_1_1details_1_1scoped__pad.html',1,'spdlog::details::scoped_pad'],['../classspdlog_1_1details_1_1scoped__pad.html#a1da16eb464801b04d397174e7338d990',1,'spdlog::details::scoped_pad::scoped_pad(size_t wrapped_size, padding_info &padinfo, fmt::memory_buffer &dest)'],['../classspdlog_1_1details_1_1scoped__pad.html#a945477b9e2c1ee236238bb63129a767d',1,'spdlog::details::scoped_pad::scoped_pad(spdlog::string_view_t txt, padding_info &padinfo, fmt::memory_buffer &dest)']]], - ['sea_5fgreen',['sea_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a2e1e305a440fcfc9109858a7b2e20ca7',1,'fmt::v5']]], - ['sea_5fshell',['sea_shell',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aefe66dd5675ff42810bbc04512d44c4b',1,'fmt::v5']]], - ['second',['second',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad518a05301185cec644e0a2aa55981f8',1,'fmt::v5::internal::chrono_formatter']]], - ['self',['self',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html#a5bf0a3bd718d02c9b794ccb4ebe68948',1,'fmt::v5::basic_writer::int_writer::hex_writer']]], - ['sender',['sender',['../structlivox_1_1_comm_packet.html#aae14b486474c57d0f82ed5c3c9e3e807',1,'livox::CommPacket']]], - ['sep',['sep',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html#adbb384826111ef8dcca2de5656fd8bfa',1,'fmt::v5::basic_writer::int_writer::num_writer::sep()'],['../structfmt_1_1v5_1_1arg__join.html#a547d8479ecf6206c1931419886574729',1,'fmt::v5::arg_join::sep()']]], - ['seq_5fnum',['seq_num',['../structlivox_1_1_comm_packet.html#a8723e87d47e47da53e6741f82cc59faf',1,'livox::CommPacket']]], - ['set',['set',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#aeadf1e58eae72ef94f9e2c01ad7921c6',1,'fmt::v5::internal::basic_buffer']]], - ['set_5fautomatic_5fregistration',['set_automatic_registration',['../classspdlog_1_1details_1_1registry.html#a0cfc3780c18f5331ad31ea1d40248952',1,'spdlog::details::registry::set_automatic_registration()'],['../namespacespdlog.html#a95b9f066c4e8ad65454049bdd7f6b956',1,'spdlog::set_automatic_registration()']]], - ['set_5fcolor',['set_color',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ad19df81408ed6dbbe62fe4a1e5a7fca8',1,'spdlog::sinks::ansicolor_sink::set_color()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a914a0d9aed02627be8cd287a2dee9916',1,'spdlog::sinks::wincolor_sink::set_color()']]], - ['set_5fdefault_5flogger',['set_default_logger',['../classspdlog_1_1details_1_1registry.html#ae2a45628046a1d0cd3f8de81a5556acb',1,'spdlog::details::registry::set_default_logger()'],['../namespacespdlog.html#ab8a13bd805e706298e1e396ee5ac93bb',1,'spdlog::set_default_logger()']]], - ['set_5fdynamic_5fspec',['set_dynamic_spec',['../namespacefmt_1_1v5_1_1internal.html#aa59e73ee062ec382675c0e65d9123b5c',1,'fmt::v5::internal']]], - ['set_5ferror_5fhandler',['set_error_handler',['../classspdlog_1_1details_1_1registry.html#a47543b9b7ebe0dc3664cfd5f3e385905',1,'spdlog::details::registry::set_error_handler()'],['../classspdlog_1_1logger.html#aeeb9d71caa8f357f4255447fb72135d3',1,'spdlog::logger::set_error_handler()'],['../namespacespdlog.html#aff4886a7bf8585815d8fd1f819f91be0',1,'spdlog::set_error_handler()']]], - ['set_5fformatter',['set_formatter',['../classspdlog_1_1details_1_1registry.html#a8f8dcb7f6b7987716cfbcb92bbe96517',1,'spdlog::details::registry::set_formatter()'],['../classspdlog_1_1logger.html#a9c5b880ddf9a9c86ec9893364e57071d',1,'spdlog::logger::set_formatter()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a030c3495398d4f320ad444ca940b4731',1,'spdlog::sinks::ansicolor_sink::set_formatter()'],['../classspdlog_1_1sinks_1_1base__sink.html#ad66435c2e9e0adb06ee279dde88a2243',1,'spdlog::sinks::base_sink::set_formatter()'],['../classspdlog_1_1sinks_1_1sink.html#ac410f2229e583a75337a5fdf45d020be',1,'spdlog::sinks::sink::set_formatter()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#ada2b3ef5a7821873df46ebda72b77e6c',1,'spdlog::sinks::stdout_sink::set_formatter()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a48cc1a252565bdbb66b12ba2a40e62f9',1,'spdlog::sinks::wincolor_sink::set_formatter()'],['../namespacespdlog.html#a83007016a4f374c8efcc738eee5b7290',1,'spdlog::set_formatter()']]], - ['set_5fformatter_5f',['set_formatter_',['../classspdlog_1_1sinks_1_1base__sink.html#aed93aabfba62b684e603eb525671c864',1,'spdlog::sinks::base_sink::set_formatter_()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a5e83e285fcceaab7ee4c4736c2decef0',1,'spdlog::sinks::dist_sink::set_formatter_()']]], - ['set_5flevel',['set_level',['../classspdlog_1_1details_1_1registry.html#a4b8494e781ed3151586b307cca63edb7',1,'spdlog::details::registry::set_level()'],['../classspdlog_1_1logger.html#a403ccd4cd1bc85c6ba6b1517c37726c7',1,'spdlog::logger::set_level()'],['../classspdlog_1_1sinks_1_1sink.html#a038a91409395dca18a7ccca81622fd83',1,'spdlog::sinks::sink::set_level()'],['../namespacespdlog.html#a9f952c6a1e1114b474aff89965261a1b',1,'spdlog::set_level()']]], - ['set_5fpattern',['set_pattern',['../classspdlog_1_1logger.html#a0f61c15b955775652da9b2b813d9f3cd',1,'spdlog::logger::set_pattern()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab84f8a9299e060e55dcfbe333806aedc',1,'spdlog::sinks::ansicolor_sink::set_pattern()'],['../classspdlog_1_1sinks_1_1base__sink.html#a2b0a0b95f1e7272b443de67b46914152',1,'spdlog::sinks::base_sink::set_pattern()'],['../classspdlog_1_1sinks_1_1sink.html#a7e5cfd4b683c8bfa8fbd602d7f409632',1,'spdlog::sinks::sink::set_pattern()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#a5b8759dab80ca44e9d185e21aa797d2a',1,'spdlog::sinks::stdout_sink::set_pattern()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a5032da6fc760507134a7d1eff1a20b0a',1,'spdlog::sinks::wincolor_sink::set_pattern()'],['../namespacespdlog.html#a638029f343e8dd2393d62288b1eb095e',1,'spdlog::set_pattern()']]], - ['set_5fpattern_5f',['set_pattern_',['../classspdlog_1_1sinks_1_1base__sink.html#a56bc5fc8e03dc0aeb6679856ffee7fb4',1,'spdlog::sinks::base_sink::set_pattern_()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a6f77a1e2f45ed85ee8ed554cf7442d4e',1,'spdlog::sinks::dist_sink::set_pattern_()']]], - ['set_5fsinks',['set_sinks',['../classspdlog_1_1sinks_1_1dist__sink.html#aa0e154cef03e368fefaa7bc845d682a1',1,'spdlog::sinks::dist_sink']]], - ['set_5ftp',['set_tp',['../classspdlog_1_1details_1_1registry.html#aa5503db04a70a06f97e7c1218aa8cbe2',1,'spdlog::details::registry']]], - ['setbroadcastcallback',['SetBroadcastCallback',['../livox__sdk_8h.html#a607c2ba4c70935ac52a5e52034a91ce3',1,'livox_sdk.h']]], - ['setcartesiancoordinate',['SetCartesianCoordinate',['../livox__sdk_8h.html#a736b3b08f9015fda09ae1ac602d2746c',1,'livox_sdk.h']]], - ['setdatacallback',['SetDataCallback',['../livox__sdk_8h.html#a51d3dfd8bc4e285a6551fbfe59c8207e',1,'livox_sdk.h']]], - ['setdeviceipmoderequest',['SetDeviceIPModeRequest',['../struct_set_device_i_p_mode_request.html',1,'']]], - ['setdevicestateupdatecallback',['SetDeviceStateUpdateCallback',['../livox__sdk_8h.html#a92a17d7becdf1affb290aef2cf57617a',1,'livox_sdk.h']]], - ['seterrormessagecallback',['SetErrorMessageCallback',['../livox__sdk_8h.html#aac000c456531f39d44d38277d7593071',1,'livox_sdk.h']]], - ['setsphericalcoordinate',['SetSphericalCoordinate',['../livox__sdk_8h.html#acdd757ddd274570aae88c25fd65fa5bf',1,'livox_sdk.h']]], - ['setstaticdynamicip',['SetStaticDynamicIP',['../livox__sdk_8h.html#a3e68d21590fe0c7c3e20d720f9a7bf53',1,'livox_sdk.h']]], - ['short_5flevel_5fformatter',['short_level_formatter',['../classspdlog_1_1details_1_1short__level__formatter.html',1,'spdlog::details::short_level_formatter'],['../classspdlog_1_1details_1_1short__level__formatter.html#adcc003358c5cea986bb25ae092df0f70',1,'spdlog::details::short_level_formatter::short_level_formatter()']]], - ['short_5flevel_5fnames',['short_level_names',['../namespacespdlog_1_1level.html#a70535c68de0c12e9854e31928fb2d671',1,'spdlog::level']]], - ['should_5fcolor',['should_color',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a9618b1494bbc280913755f76abde2ed4',1,'spdlog::sinks::ansicolor_sink']]], - ['should_5fflush_5f',['should_flush_',['../classspdlog_1_1logger.html#aa1bbe703cdeed2aef722a97a2bc1a800',1,'spdlog::logger']]], - ['should_5flog',['should_log',['../classspdlog_1_1logger.html#a94c77395570c462953ded4188aaaf655',1,'spdlog::logger::should_log()'],['../classspdlog_1_1sinks_1_1sink.html#a1c932f19f67057fbe7518999bdd5c422',1,'spdlog::sinks::sink::should_log()']]], - ['shutdown',['shutdown',['../classspdlog_1_1details_1_1registry.html#ac93f888f316b0488414771ad6533b6a9',1,'spdlog::details::registry::shutdown()'],['../namespacespdlog.html#a38b5c05a859763c5e350e8ec3da9e328',1,'spdlog::shutdown()']]], - ['side_5f',['side_',['../structspdlog_1_1details_1_1padding__info.html#af03346e385de821038e0aec989741d14',1,'spdlog::details::padding_info']]], - ['sienna',['sienna',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a91c001e5547439063fefe550d83533b6',1,'fmt::v5']]], - ['sign_5fflag',['SIGN_FLAG',['../namespacefmt_1_1v5.html#a2afc98455558e211af15ed1ad8c12bfaadd34df58da973a9740e39d7b83e7b890',1,'fmt::v5']]], - ['significand_5fsize',['significand_size',['../classfmt_1_1v5_1_1internal_1_1fp.html#ad0175b9acfb79c562984ed002fe09c53',1,'fmt::v5::internal::fp']]], - ['silver',['silver',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a97f014516561ef487ec368d6158eb3f4',1,'fmt::v5']]], - ['sink',['sink',['../classspdlog_1_1sinks_1_1sink.html',1,'spdlog::sinks::sink'],['../classspdlog_1_1sinks_1_1sink.html#ae32182a47ebea9c66c02e6a9822ffdcd',1,'spdlog::sinks::sink::sink()=default'],['../classspdlog_1_1sinks_1_1sink.html#aea8106cba54ae87840fc1cf33cdfd2c1',1,'spdlog::sinks::sink::sink(std::unique_ptr< spdlog::formatter > formatter)']]], - ['sink_2eh',['sink.h',['../sink_8h.html',1,'']]], - ['sink_5fit_5f',['sink_it_',['../classspdlog_1_1async__logger.html#aefd367c3266773bfe756d34150705329',1,'spdlog::async_logger::sink_it_()'],['../classspdlog_1_1logger.html#a43ac8d73671a109cba253eadb0b049e2',1,'spdlog::logger::sink_it_()'],['../classspdlog_1_1sinks_1_1android__sink.html#ab91c7aabd013d009ff811e6d34324128',1,'spdlog::sinks::android_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1base__sink.html#ad698d300cb7f5e58b2aa1b9907cdbd87',1,'spdlog::sinks::base_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1basic__file__sink.html#a8d9239f225478ade4e879dc643f577ba',1,'spdlog::sinks::basic_file_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1daily__file__sink.html#ac82447cddb7a2ddb45ab81f97b74286d',1,'spdlog::sinks::daily_file_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a516ef929a8cd73df2ead2e0086e04607',1,'spdlog::sinks::dist_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1null__sink.html#a158c702167f6a46609de2c561f82973c',1,'spdlog::sinks::null_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1ostream__sink.html#a77f36cef81daf668ec55a07fa191d1e7',1,'spdlog::sinks::ostream_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1rotating__file__sink.html#a3cf93e445ad92380c7d352f971cd76a4',1,'spdlog::sinks::rotating_file_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1syslog__sink.html#a303bccf40cd03356510391c493078005',1,'spdlog::sinks::syslog_sink::sink_it_()']]], - ['sink_5fptr',['sink_ptr',['../namespacespdlog.html#a422c57d3088160b517e5a74e5f318253',1,'spdlog']]], - ['sinks',['sinks',['../namespacespdlog_1_1sinks.html',1,'spdlog::sinks'],['../classspdlog_1_1logger.html#a00c27f251b795caf028718b605572e1f',1,'spdlog::logger::sinks() const'],['../classspdlog_1_1logger.html#a7d93aa2653b924f2c9981d026aea9822',1,'spdlog::logger::sinks()']]], - ['sinks_5f',['sinks_',['../classspdlog_1_1logger.html#a24a3b3250f3fe52fa7c3053e77076f07',1,'spdlog::logger::sinks_()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a3d9d8c330d7d6455f45db77d4e6977f4',1,'spdlog::sinks::dist_sink::sinks_()']]], - ['sinks_5finit_5flist',['sinks_init_list',['../namespacespdlog.html#aa9b5c2298bf713fbe02b7e538d797ecd',1,'spdlog']]], - ['size',['size',['../structlivox_1_1_port_cache.html#a2c92155bd2db69e7368a1be11c384cb8',1,'livox::PortCache::size()'],['../structfmt_1_1v5_1_1internal_1_1string__value.html#a0138fc9479b4f37a74d3f32ff62e10bc',1,'fmt::v5::internal::string_value::size()'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aeefd7bd2fef0e07643645f824d347ee2',1,'fmt::v5::internal::prettify_handler::size()'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#a100c9c7d1618245f315f83af27110d2b',1,'fmt::v5::internal::char_counter::size()'],['../structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#a5f9285e4a5faac1e077ba9d24376141aad8c1eac7d2740563f5dd89c7712ce987',1,'fmt::v5::internal::no_thousands_sep::size()'],['../classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a5f8e41561ce9cdf40e12fcff6431e4b1a2766626dccbf822fd55f5ab488d11932',1,'fmt::v5::internal::add_thousands_sep::size()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html#acbde78e0af19b045db0789256d0e4391',1,'fmt::v5::basic_writer::int_writer::num_writer::size()'],['../structfmt_1_1v5_1_1format__to__n__result.html#a2c99d057867cf7e981ef53845a398f42',1,'fmt::v5::format_to_n_result::size()'],['../classspdlog_1_1details_1_1file__helper.html#ae945d9701134218c2d0558958e9d1cf2',1,'spdlog::details::file_helper::size()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ac4761deba75a7238ae29243b159b9943',1,'fmt::v5::internal::basic_buffer::size()'],['../classfmt_1_1v5_1_1basic__string__view.html#abd82d74b110d5d4f52e0282e4d11fc99',1,'fmt::v5::basic_string_view::size()'],['../classfmt_1_1v5_1_1format__int.html#abe5d90acec7245e6cd0c5d49b4e57f3e',1,'fmt::v5::format_int::size()'],['../classfmt_1_1v5_1_1file.html#a643bffe083c4a257b8752590c70a0539',1,'fmt::v5::file::size()'],['../structfmt_1_1v5_1_1internal_1_1integer__sequence.html#a30390c74b90c382607d05dde0e88da0a',1,'fmt::v5::internal::integer_sequence::size()']]], - ['size_5ftype',['size_type',['../classfmt_1_1v5_1_1basic__format__args.html#a1625ea02e9400218dedfcabfcb924492',1,'fmt::v5::basic_format_args']]], - ['sky_5fblue',['sky_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad06424e64af2d470476a234e12a48a40',1,'fmt::v5']]], - ['slate_5fblue',['slate_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a8f72f2a45cee9a5f2e0afe5d2bb9d4b1',1,'fmt::v5']]], - ['slate_5fgray',['slate_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0af664bac577c1c520c4a98e63457d2f22',1,'fmt::v5']]], - ['sleep_5ffor_5fmillis',['sleep_for_millis',['../namespacespdlog_1_1details_1_1os.html#a56a474fcf965264674346ffdefac0759',1,'spdlog::details::os']]], - ['slot',['slot',['../struct_livox_eth_packet.html#ae37415fbbf43c6ded2b4c03179fcc326',1,'LivoxEthPacket::slot()'],['../struct_device_info.html#a173c3d6efff370751f0027749c253b68',1,'DeviceInfo::slot()'],['../struct_connected_lidar_info.html#a0d7bbe9083fbb2746eca67d6d9eddf9a',1,'ConnectedLidarInfo::slot()'],['../struct_hub_control_slot_power_request.html#a459b32034785ea441ec930f14e696bcd',1,'HubControlSlotPowerRequest::slot()']]], - ['snow',['snow',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a2b93fbdf27d43547bec8794054c28e00',1,'fmt::v5']]], - ['source',['source',['../structspdlog_1_1details_1_1log__msg.html#a607e0014c79c1d39e28b515662ca2ca1',1,'spdlog::details::log_msg::source()'],['../structspdlog_1_1details_1_1async__msg.html#a017a4b18324181e93c1b1606b0158999',1,'spdlog::details::async_msg::source()']]], - ['source_5ffilename_5fformatter',['source_filename_formatter',['../classspdlog_1_1details_1_1source__filename__formatter.html',1,'spdlog::details::source_filename_formatter'],['../classspdlog_1_1details_1_1source__filename__formatter.html#a9feacaecd2eaa3aee5eb992c7334dc9d',1,'spdlog::details::source_filename_formatter::source_filename_formatter()']]], - ['source_5ffuncname_5fformatter',['source_funcname_formatter',['../classspdlog_1_1details_1_1source__funcname__formatter.html',1,'spdlog::details::source_funcname_formatter'],['../classspdlog_1_1details_1_1source__funcname__formatter.html#a1f20c622f780c9f9e8696e9c5960dcb8',1,'spdlog::details::source_funcname_formatter::source_funcname_formatter()']]], - ['source_5flinenum_5fformatter',['source_linenum_formatter',['../classspdlog_1_1details_1_1source__linenum__formatter.html',1,'spdlog::details::source_linenum_formatter'],['../classspdlog_1_1details_1_1source__linenum__formatter.html#ac8899bb5c6919498b71f2575f40ca504',1,'spdlog::details::source_linenum_formatter::source_linenum_formatter()']]], - ['source_5floc',['source_loc',['../structspdlog_1_1source__loc.html',1,'spdlog::source_loc'],['../structspdlog_1_1source__loc.html#a31c69d0d790b00c6f7102b4f8ef826ee',1,'spdlog::source_loc::source_loc()'],['../structspdlog_1_1source__loc.html#abf62ea25b5345f1d9003a50fde8e09d8',1,'spdlog::source_loc::source_loc(const char *filename_in, int line_in, const char *funcname_in)']]], - ['source_5flocation_5fformatter',['source_location_formatter',['../classspdlog_1_1details_1_1source__location__formatter.html',1,'spdlog::details::source_location_formatter'],['../classspdlog_1_1details_1_1source__location__formatter.html#a045946c595dd299307511d89b404fe31',1,'spdlog::details::source_location_formatter::source_location_formatter()']]], - ['spdlog',['spdlog',['../namespacespdlog.html',1,'']]], - ['spdlog_2eh',['spdlog.h',['../spdlog_8h.html',1,'']]], - ['spdlog_5factive_5flevel',['SPDLOG_ACTIVE_LEVEL',['../common_8h.html#ae4fda6f71f35120e2ff48157fca961b5',1,'common.h']]], - ['spdlog_5fandroid_5fretries',['SPDLOG_ANDROID_RETRIES',['../android__sink_8h.html#a8e65ae8a75f7a37ede8942a4311cee5e',1,'android_sink.h']]], - ['spdlog_5fcatch_5fand_5fhandle',['SPDLOG_CATCH_AND_HANDLE',['../logger__impl_8h.html#abeca270216d992ce38ca429b9d66f91b',1,'logger_impl.h']]], - ['spdlog_5fconstexpr',['SPDLOG_CONSTEXPR',['../common_8h.html#a8747e6feba8bf2d3f204cb76bfd4607a',1,'common.h']]], - ['spdlog_5fcritical',['SPDLOG_CRITICAL',['../spdlog_8h.html#ae91dad63ce8e0f912ff58cdd62f60981',1,'spdlog.h']]], - ['spdlog_5fdebug',['SPDLOG_DEBUG',['../spdlog_8h.html#a10a205c2dfdb91688e85c3f49bc671cd',1,'spdlog.h']]], - ['spdlog_5fdeprecated',['SPDLOG_DEPRECATED',['../common_8h.html#a9ad12194a0d42daffd44df91f9854f29',1,'common.h']]], - ['spdlog_5feol',['SPDLOG_EOL',['../os_8h.html#a3c16021694c04b9b7341a9348b6d8dd4',1,'os.h']]], - ['spdlog_5ferror',['SPDLOG_ERROR',['../spdlog_8h.html#a80b7c8b92e366f68d13143165b6ce271',1,'spdlog.h']]], - ['spdlog_5fex',['spdlog_ex',['../classspdlog_1_1spdlog__ex.html',1,'spdlog::spdlog_ex'],['../classspdlog_1_1spdlog__ex.html#a95052672da1a71145ac56d143b751b3f',1,'spdlog::spdlog_ex::spdlog_ex(std::string msg)'],['../classspdlog_1_1spdlog__ex.html#a0758933dd1e6c4c8e76bb8e7134f7d9b',1,'spdlog::spdlog_ex::spdlog_ex(const std::string &msg, int last_errno)']]], - ['spdlog_5ffile_5fbasename',['SPDLOG_FILE_BASENAME',['../common_8h.html#a2cf36a7836e979b59b20edea26135766',1,'common.h']]], - ['spdlog_5ffilename_5ft',['SPDLOG_FILENAME_T',['../os_8h.html#a63d60ea1c1a925d3db13864d37bd2da2',1,'os.h']]], - ['spdlog_5ffunction',['SPDLOG_FUNCTION',['../common_8h.html#a1f0ef27d8fc022078352c93ef310cdb4',1,'common.h']]], - ['spdlog_5finfo',['SPDLOG_INFO',['../spdlog_8h.html#ac123bf94c2532584c1f53a4cde7a27e2',1,'spdlog.h']]], - ['spdlog_5flevel_5fcritical',['SPDLOG_LEVEL_CRITICAL',['../common_8h.html#ac7313aeac75b2d8521f04ba9508b9695',1,'common.h']]], - ['spdlog_5flevel_5fdebug',['SPDLOG_LEVEL_DEBUG',['../common_8h.html#a3966e2839945ed2b8adf9373b7bdd56e',1,'common.h']]], - ['spdlog_5flevel_5ferror',['SPDLOG_LEVEL_ERROR',['../common_8h.html#a6ffd317d15c017cf593212e5441ad70a',1,'common.h']]], - ['spdlog_5flevel_5finfo',['SPDLOG_LEVEL_INFO',['../common_8h.html#a33c73f3639c48dd378b33fabbfd27b7f',1,'common.h']]], - ['spdlog_5flevel_5fnames',['SPDLOG_LEVEL_NAMES',['../common_8h.html#afe938b48c2a5e8816892fbc1841f9694',1,'common.h']]], - ['spdlog_5flevel_5foff',['SPDLOG_LEVEL_OFF',['../common_8h.html#a8f7ec3c49f83b525b8c15d459b1136d0',1,'common.h']]], - ['spdlog_5flevel_5ftrace',['SPDLOG_LEVEL_TRACE',['../common_8h.html#a57ad66f77dc01b41a51f7e884dd460dd',1,'common.h']]], - ['spdlog_5flevel_5fwarn',['SPDLOG_LEVEL_WARN',['../common_8h.html#acff159db380f787b46d9d51d7f9cc69c',1,'common.h']]], - ['spdlog_5flogger_5fcall',['SPDLOG_LOGGER_CALL',['../spdlog_8h.html#af73a1f32ac61071d1e792ca26ec83e4b',1,'spdlog.h']]], - ['spdlog_5flogger_5fcritical',['SPDLOG_LOGGER_CRITICAL',['../spdlog_8h.html#a752190d33981bd64c8a7706d3ba1bc29',1,'spdlog.h']]], - ['spdlog_5flogger_5fdebug',['SPDLOG_LOGGER_DEBUG',['../spdlog_8h.html#ab508bba15a80b3e7a909ed867d3b9320',1,'spdlog.h']]], - ['spdlog_5flogger_5ferror',['SPDLOG_LOGGER_ERROR',['../spdlog_8h.html#a006a17817b05bda3778be8b78348b079',1,'spdlog.h']]], - ['spdlog_5flogger_5finfo',['SPDLOG_LOGGER_INFO',['../spdlog_8h.html#a34ab135d5bc3040c9b60e068c4f33726',1,'spdlog.h']]], - ['spdlog_5flogger_5ftrace',['SPDLOG_LOGGER_TRACE',['../spdlog_8h.html#aadd8d6a6bdd11a1c989346d4777d6c03',1,'spdlog.h']]], - ['spdlog_5flogger_5fwarn',['SPDLOG_LOGGER_WARN',['../spdlog_8h.html#a438c8e890e90f85ad3d832496b8a9493',1,'spdlog.h']]], - ['spdlog_5fnoexcept',['SPDLOG_NOEXCEPT',['../common_8h.html#a15d2dc432e6bb83beb5130be9a4ca8d6',1,'common.h']]], - ['spdlog_5fshort_5flevel_5fnames',['SPDLOG_SHORT_LEVEL_NAMES',['../common_8h.html#ab2ea0d29ee3c1ccb1f9484a8198c59b0',1,'common.h']]], - ['spdlog_5fstrrchr',['SPDLOG_STRRCHR',['../common_8h.html#a30f621e51aba2dfe9f905fd9e2dee918',1,'common.h']]], - ['spdlog_5ftrace',['SPDLOG_TRACE',['../spdlog_8h.html#aac4c18fd6ad8f9a6d9b9793220ab9e92',1,'spdlog.h']]], - ['spdlog_5fver_5fmajor',['SPDLOG_VER_MAJOR',['../version_8h.html#a85b8c2495e0596c728553bff9ea7d3d0',1,'version.h']]], - ['spdlog_5fver_5fminor',['SPDLOG_VER_MINOR',['../version_8h.html#a59fb941b34bcda4ede06be812f0452e9',1,'version.h']]], - ['spdlog_5fver_5fpatch',['SPDLOG_VER_PATCH',['../version_8h.html#a478ac3dbba9c7722f4b5c91f128b6884',1,'version.h']]], - ['spdlog_5fversion',['SPDLOG_VERSION',['../version_8h.html#ad8216958bcd014d9cf2b7b2c1c4c01ac',1,'version.h']]], - ['spdlog_5fwarn',['SPDLOG_WARN',['../spdlog_8h.html#a4bf5ff0686233c37d6bf2233d766d3c8',1,'spdlog.h']]], - ['spec',['spec',['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#ab2e59146a8b73543a67737f28d7eb176',1,'fmt::v5::internal::arg_formatter_base']]], - ['specs_5f',['specs_',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#adc8b8640bbe954506ebf019a8c8ac3e5',1,'fmt::v5::internal::specs_setter']]], - ['specs_5fchecker',['specs_checker',['../classfmt_1_1v5_1_1internal_1_1specs__checker.html',1,'fmt::v5::internal::specs_checker< Handler >'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#afa76923c1c5c5315391d2fd5888cea92',1,'fmt::v5::internal::specs_checker::specs_checker(const Handler &handler, internal::type arg_type)'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#aeca1b02a34ced815eb453609e3906752',1,'fmt::v5::internal::specs_checker::specs_checker(const specs_checker &other)']]], - ['specs_5fhandler',['specs_handler',['../classfmt_1_1v5_1_1internal_1_1specs__handler.html',1,'fmt::v5::internal::specs_handler< Context >'],['../classfmt_1_1v5_1_1internal_1_1specs__handler.html#a932e093eb37337b0985205de75f43ab4',1,'fmt::v5::internal::specs_handler::specs_handler()']]], - ['specs_5fsetter',['specs_setter',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html',1,'fmt::v5::internal::specs_setter< Char >'],['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a21d719b2dfe968433047cb65d91f1bc5',1,'fmt::v5::internal::specs_setter::specs_setter(basic_format_specs< Char > &specs)'],['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#aebafbc2312741d5dd5290df3afadcfe5',1,'fmt::v5::internal::specs_setter::specs_setter(const specs_setter &other)']]], - ['specs_5fsetter_3c_20context_3a_3achar_5ftype_20_3e',['specs_setter< Context::char_type >',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html',1,'fmt::v5::internal']]], - ['specs_5fsetter_3c_20parsecontext_3a_3achar_5ftype_20_3e',['specs_setter< ParseContext::char_type >',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html',1,'fmt::v5::internal']]], - ['split_5fby_5fextension',['split_by_extension',['../classspdlog_1_1details_1_1file__helper.html#a28d87e3f42c52a12c95af0558aca66f2',1,'spdlog::details::file_helper']]], - ['spring_5fgreen',['spring_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a67485a137fce2085007d93aa115cd093',1,'fmt::v5']]], - ['sprintf',['sprintf',['../namespacefmt_1_1v5.html#a6047019507a20aa205cce7a558dcb325',1,'fmt::v5']]], - ['sprintf_5fformat',['sprintf_format',['../namespacefmt_1_1v5_1_1internal.html#a37f320718a8fbb4cf326d075f6332e93',1,'fmt::v5::internal']]], - ['sstring',['sstring',['../classfmt_1_1v5_1_1internal_1_1value.html#a96fdd21add279317263cff9e835c5a97',1,'fmt::v5::internal::value']]], - ['standard',['standard',['../namespacefmt_1_1v5_1_1internal.html#a8217980ba3189c7d8c3ce93f7d8e4c74ac00f0c4675b91fb8b918e4079a0b1bac',1,'fmt::v5::internal']]], - ['start',['Start',['../livox__sdk_8h.html#aa70efaa4751ac6d5d54dce88fe725e0a',1,'livox_sdk.h']]], - ['state',['state',['../struct_device_info.html#a357578f75cb2efc7cac146ea807810dd',1,'DeviceInfo::state()'],['../struct_lidar_mode_request_item.html#a083aff14314c3edf21066dc6eff69c05',1,'LidarModeRequestItem::state()'],['../struct_lidar_state_item.html#a2faf99b3e6f31c613fd7d5c1d76444f7',1,'LidarStateItem::state()'],['../struct_heartbeat_response.html#a9bd7edacb896d6e2a5419ff536ab1ed3',1,'HeartbeatResponse::state()'],['../struct_hub_control_slot_power_request.html#ae682b9d8763fa13bb5b8c85a44b6265f',1,'HubControlSlotPowerRequest::state()']]], - ['state_5flist',['state_list',['../struct_hub_query_lidar_status_response.html#a2f4895d58ae7d62f62eabbe710ee6f57',1,'HubQueryLidarStatusResponse']]], - ['status',['status',['../struct_device_info.html#a1b37aee8b847070b66924d772d1d7edf',1,'DeviceInfo']]], - ['status_5fcode',['status_code',['../union_status_union.html#a75f0636ce9a1b631a2a1e4cc189312a8',1,'StatusUnion']]], - ['statusunion',['StatusUnion',['../union_status_union.html',1,'']]], - ['std',['std',['../namespacestd.html',1,'']]], - ['stderr_5fcolor_5fmt',['stderr_color_mt',['../namespacespdlog.html#ab4647f73157c2a5647097e993eb648f5',1,'spdlog']]], - ['stderr_5fcolor_5fsink_5fmt',['stderr_color_sink_mt',['../namespacespdlog_1_1sinks.html#a58091bb55dd96f7e29ccc044338c054c',1,'spdlog::sinks']]], - ['stderr_5fcolor_5fsink_5fst',['stderr_color_sink_st',['../namespacespdlog_1_1sinks.html#adf8d38fe4201bc8f4b5255c4fbea7aae',1,'spdlog::sinks']]], - ['stderr_5fcolor_5fst',['stderr_color_st',['../namespacespdlog.html#a5564a799e789be1856d238b0d91ecadb',1,'spdlog']]], - ['stderr_5flogger_5fmt',['stderr_logger_mt',['../namespacespdlog.html#a93e154fd1e2eb0dc5a82fb25ce7f11d1',1,'spdlog']]], - ['stderr_5flogger_5fst',['stderr_logger_st',['../namespacespdlog.html#ad2b234c875e76840785f02b189c0d514',1,'spdlog']]], - ['stderr_5fsink_5fmt',['stderr_sink_mt',['../namespacespdlog_1_1sinks.html#afa13b9dbe3db99f4112b17a310dc26de',1,'spdlog::sinks']]], - ['stderr_5fsink_5fst',['stderr_sink_st',['../namespacespdlog_1_1sinks.html#ac7f13feb3827330eb5b5c1998356c798',1,'spdlog::sinks']]], - ['stdout_5fcolor_5fmt',['stdout_color_mt',['../namespacespdlog.html#a903467b7174af13d10f2f29ae9bd4a6e',1,'spdlog']]], - ['stdout_5fcolor_5fsink_5fmt',['stdout_color_sink_mt',['../namespacespdlog_1_1sinks.html#af5b53d274a7f3e3528ef994035cc7204',1,'spdlog::sinks']]], - ['stdout_5fcolor_5fsink_5fst',['stdout_color_sink_st',['../namespacespdlog_1_1sinks.html#ae3eb6549df72c3c46dea34fd35fee93e',1,'spdlog::sinks']]], - ['stdout_5fcolor_5fsinks_2eh',['stdout_color_sinks.h',['../stdout__color__sinks_8h.html',1,'']]], - ['stdout_5fcolor_5fst',['stdout_color_st',['../namespacespdlog.html#a1d20b70d425e5402b3fa6a1b075d1c6d',1,'spdlog']]], - ['stdout_5flogger_5fmt',['stdout_logger_mt',['../namespacespdlog.html#a9a6a99d3309b166a585fe918bd83a442',1,'spdlog']]], - ['stdout_5flogger_5fst',['stdout_logger_st',['../namespacespdlog.html#a5b0d86b010b11ceb3941265779c7998e',1,'spdlog']]], - ['stdout_5fsink',['stdout_sink',['../classspdlog_1_1sinks_1_1stdout__sink.html',1,'spdlog::sinks::stdout_sink< TargetStream, ConsoleMutex >'],['../classspdlog_1_1sinks_1_1stdout__sink.html#aadb52e8ba9e2992f847c46ec521b4407',1,'spdlog::sinks::stdout_sink::stdout_sink()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#ab7761f533c069ef52a256573de29077d',1,'spdlog::sinks::stdout_sink::stdout_sink(const stdout_sink &other)=delete']]], - ['stdout_5fsink_5fmt',['stdout_sink_mt',['../namespacespdlog_1_1sinks.html#a029d085d53a8f4ee99ba223f34bcfb28',1,'spdlog::sinks']]], - ['stdout_5fsink_5fst',['stdout_sink_st',['../namespacespdlog_1_1sinks.html#a98a1a892c6c8f44d89f2ec13e8a7f2c4',1,'spdlog::sinks']]], - ['stdout_5fsinks_2eh',['stdout_sinks.h',['../stdout__sinks_8h.html',1,'']]], - ['steel_5fblue',['steel_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a00885bc107cec87940dfe4beadbab382',1,'fmt::v5']]], - ['store',['store',['../structspdlog_1_1details_1_1null__atomic__int.html#a75c74956220ca5cc82a4eedcd9aa854f',1,'spdlog::details::null_atomic_int']]], - ['str',['str',['../classfmt_1_1v5_1_1format__int.html#a0266f0b79afac987c1cbdf41bc1a5413',1,'fmt::v5::format_int']]], - ['stream',['stream',['../structspdlog_1_1details_1_1console__stdout.html#a949fac14432044c2b3f5186a0693b306',1,'spdlog::details::console_stdout::stream()'],['../structspdlog_1_1details_1_1console__stderr.html#a7e5e8197fac999d0e215e56a3116d1fc',1,'spdlog::details::console_stderr::stream()']]], - ['strerror_5fr',['strerror_r',['../format-inl_8h.html#a8307cb500850a7c5033cf64702e15990',1,'format-inl.h']]], - ['strerror_5fs',['strerror_s',['../format-inl_8h.html#a3bbfb7ce6b764966d8cf5d018589375e',1,'format-inl.h']]], - ['strftime',['strftime',['../namespacefmt_1_1v5_1_1internal.html#ace84933f6d3627afab3d2bb1e390ef88',1,'fmt::v5::internal::strftime(char *str, std::size_t count, const char *format, const std::tm *time)'],['../namespacefmt_1_1v5_1_1internal.html#ab27295a888e64801971a06ab9f89ece0',1,'fmt::v5::internal::strftime(wchar_t *str, std::size_t count, const wchar_t *format, const std::tm *time)']]], - ['strikethrough',['strikethrough',['../namespacefmt_1_1v5.html#a3c18bfe3f941ca2b94688cb6d54f1cecaae9a363b2dfa9181da7ffde8e37813b5',1,'fmt::v5']]], - ['string',['string',['../classfmt_1_1v5_1_1internal_1_1value.html#aaa7bee65d796b1212dc35e2b9cc721d3',1,'fmt::v5::internal::value']]], - ['string_5ftype',['string_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a28edcc9fc66b5c65a8c9b89975164568',1,'fmt::v5::internal']]], - ['string_5fvalue',['string_value',['../structfmt_1_1v5_1_1internal_1_1string__value.html',1,'fmt::v5::internal']]], - ['string_5fvalue_3c_20char_5ftype_20_3e',['string_value< char_type >',['../structfmt_1_1v5_1_1internal_1_1string__value.html',1,'fmt::v5::internal']]], - ['string_5fvalue_3c_20signed_20char_20_3e',['string_value< signed char >',['../structfmt_1_1v5_1_1internal_1_1string__value.html',1,'fmt::v5::internal']]], - ['string_5fvalue_3c_20unsigned_20char_20_3e',['string_value< unsigned char >',['../structfmt_1_1v5_1_1internal_1_1string__value.html',1,'fmt::v5::internal']]], - ['string_5fview',['string_view',['../namespacefmt_1_1v5.html#a3301ccbf6a0ab1b233242041a835a54a',1,'fmt::v5']]], - ['string_5fview_5ft',['string_view_t',['../namespacespdlog.html#af48e310b2f366ac6544701e6a3b56247',1,'spdlog']]], - ['sub_5freceiver',['sub_receiver',['../structlivox_1_1_comm_packet.html#ad48ad41ffbcd6ae5794668ba8c02f709',1,'livox::CommPacket']]], - ['sub_5fsender',['sub_sender',['../structlivox_1_1_comm_packet.html#a54efd9bf0a8bcd7f3e54219dce99f966',1,'livox::CommPacket']]], - ['synchronous_5ffactory',['synchronous_factory',['../structspdlog_1_1synchronous__factory.html',1,'spdlog']]], - ['syslog_5flogger_5fmt',['syslog_logger_mt',['../namespacespdlog.html#a49974c7465d12f994929f70c0caeeb7c',1,'spdlog']]], - ['syslog_5flogger_5fst',['syslog_logger_st',['../namespacespdlog.html#a2b5f25193cf4478d74cf9402a120c902',1,'spdlog']]], - ['syslog_5fsink',['syslog_sink',['../classspdlog_1_1sinks_1_1syslog__sink.html',1,'spdlog::sinks::syslog_sink< Mutex >'],['../classspdlog_1_1sinks_1_1syslog__sink.html#acc60de632a07b329aeba41ee48ced4f6',1,'spdlog::sinks::syslog_sink::syslog_sink(std::string ident="", int syslog_option=0, int syslog_facility=LOG_USER)'],['../classspdlog_1_1sinks_1_1syslog__sink.html#a505adae200592eab1e093ab258ad0291',1,'spdlog::sinks::syslog_sink::syslog_sink(const syslog_sink &)=delete']]], - ['syslog_5fsink_2eh',['syslog_sink.h',['../syslog__sink_8h.html',1,'']]], - ['syslog_5fsink_5fmt',['syslog_sink_mt',['../namespacespdlog_1_1sinks.html#a6674644a4ab8a7579e45bd79dc107a70',1,'spdlog::sinks']]], - ['syslog_5fsink_5fst',['syslog_sink_st',['../namespacespdlog_1_1sinks.html#a83f4d6616a2fbf3473a6a979647b5139',1,'spdlog::sinks']]], - ['system_5ferror',['system_error',['../classfmt_1_1v5_1_1system__error.html',1,'fmt::v5::system_error'],['../classfmt_1_1v5_1_1system__error.html#afab23543db82d4cebb222ac5582c29f4',1,'fmt::v5::system_error::system_error()'],['../classfmt_1_1v5_1_1system__error.html#ae0c11bcd7a213bd3cd259393cd73fc45',1,'fmt::v5::system_error::system_error(int error_code, string_view message, const Args &... args)']]] + ['r',['r',['../structfmt_1_1v5_1_1rgb.html#ac95ca52f2a8db235cd652813193f8ca5',1,'fmt::v5::rgb']]], + ['r_5fformatter',['R_formatter',['../classspdlog_1_1details_1_1_r__formatter.html',1,'spdlog::details::R_formatter'],['../classspdlog_1_1details_1_1r__formatter.html',1,'spdlog::details::r_formatter'],['../classspdlog_1_1details_1_1r__formatter.html#ac3be2e36215d0335d859af35a35e2810',1,'spdlog::details::r_formatter::r_formatter()'],['../classspdlog_1_1details_1_1_r__formatter.html#a712095b0b26244817d78963d98a9a6fb',1,'spdlog::details::R_formatter::R_formatter()']]], + ['rainfogsuppressrequestitem',['RainFogSuppressRequestItem',['../struct_rain_fog_suppress_request_item.html',1,'']]], + ['range',['range',['../classfmt_1_1v5_1_1arg__formatter.html#a332fb38fd91d73717f0f3e0b2b09d3b7',1,'fmt::v5::arg_formatter::range()'],['../structfmt_1_1v5_1_1format__handler.html#a717e330f9b9cfa519cbf97e5e2a81add',1,'fmt::v5::format_handler::range()']]], + ['range_5flength_5flimit',['range_length_limit',['../structfmt_1_1v5_1_1formatting__range.html#aecf071a5da5a8aa12b872e66c12c0f03',1,'fmt::v5::formatting_range']]], + ['ranges_2eh',['ranges.h',['../ranges_8h.html',1,'']]], + ['raw',['raw',['../structspdlog_1_1details_1_1async__msg.html#a0c3ac027c1ca0c1380210c32219a0370',1,'spdlog::details::async_msg']]], + ['rd_5fidx',['rd_idx',['../structlivox_1_1_port_cache.html#a307ffa61497df31d0d8b50eb3294ce28',1,'livox::PortCache']]], + ['rdonly',['RDONLY',['../classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1a51c67cb8c6aa3d8dbdfdf87561746169',1,'fmt::v5::file']]], + ['rdwr',['RDWR',['../classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1afc29ebeb23bb8aac58bc3911f67a7e18',1,'fmt::v5::file']]], + ['read',['read',['../classfmt_1_1v5_1_1file.html#a37037657920e57b50756d59259cff494',1,'fmt::v5::file']]], + ['readme_2emd',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]], + ['rebecca_5fpurple',['rebecca_purple',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a7087c7ffb872fac6aba0c893b8bbee42',1,'fmt::v5']]], + ['receiver',['receiver',['../structlivox_1_1_comm_packet.html#abd2c32ceba40ea285a0ca2990a7f345d',1,'livox::CommPacket']]], + ['red',['red',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab5c0ce75c9457f5125a441555287b8d2',1,'spdlog::sinks::ansicolor_sink::red()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a8635f904f1dad9e60aaefe307e076f1d',1,'spdlog::sinks::wincolor_sink::RED()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0abda9643ac6601722a28f238714274da4',1,'fmt::v5::red()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaabda9643ac6601722a28f238714274da4',1,'fmt::v5::red()']]], + ['reference',['reference',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a81db3ee5c66069e844af366c6ffb1dce',1,'fmt::v5::internal::counting_iterator::reference()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#aa891dd373534efdbf8a03c9b1b5a77fa',1,'fmt::v5::internal::truncating_iterator_base::reference()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a1ac6b94c99323d58886943b1032be0b6',1,'fmt::v5::internal::null_terminating_iterator::reference()']]], + ['reflectivity',['reflectivity',['../struct_livox_raw_point.html#a1c58c82c33e06f4d80490ddd1285d926',1,'LivoxRawPoint::reflectivity()'],['../struct_livox_point.html#a6a29cf468c61e20cb34e8b46687b9092',1,'LivoxPoint::reflectivity()']]], + ['register_5flogger',['register_logger',['../classspdlog_1_1details_1_1registry.html#ab77fb7513b2e3e6442a83f037543e391',1,'spdlog::details::registry::register_logger()'],['../namespacespdlog.html#a306f1c2ef42ba046620bd84266ee5b24',1,'spdlog::register_logger()']]], + ['registry',['registry',['../classspdlog_1_1details_1_1registry.html',1,'spdlog::details::registry'],['../classspdlog_1_1details_1_1registry.html#ab5c1a2f7b8e2e9eec4e0fa75d9167f3b',1,'spdlog::details::registry::registry()']]], + ['registry_2eh',['registry.h',['../registry_8h.html',1,'']]], + ['remove',['remove',['../namespacespdlog_1_1details_1_1os.html#a6026b23c139f733601c1a5fa9f4d555f',1,'spdlog::details::os']]], + ['remove_5fprefix',['remove_prefix',['../classfmt_1_1v5_1_1basic__string__view.html#a6fed916b8264a1f8c2d69359062b00aa',1,'fmt::v5::basic_string_view']]], + ['remove_5fsink',['remove_sink',['../classspdlog_1_1sinks_1_1dist__sink.html#ac1537fdc6225fd57cc819e1fb9c5f8c7',1,'spdlog::sinks::dist_sink']]], + ['remove_5ftrailing',['remove_trailing',['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#ab939ca54a7a5ba0a79c2232a5b3aff46',1,'fmt::v5::internal::prettify_handler::remove_trailing()'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#a19a71ff0f2ccc8895dcc5f2977b0c2cd',1,'fmt::v5::internal::char_counter::remove_trailing()']]], + ['rename',['rename',['../namespacespdlog_1_1details_1_1os.html#a8603bb3ec0aab28cf4fd6a0ef7cc78b9',1,'spdlog::details::os']]], + ['reopen',['reopen',['../classspdlog_1_1details_1_1file__helper.html#a21c688da7f241c53871b462c3a5c2c94',1,'spdlog::details::file_helper']]], + ['report_5fno_5fdate',['report_no_date',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a477b82b9af3dab4475588b9f4a6d3070',1,'fmt::v5::internal::chrono_format_checker']]], + ['report_5fsystem_5ferror',['report_system_error',['../namespacefmt_1_1v5.html#aede03e1a36d834c65a48c9349a085fc8',1,'fmt::v5']]], + ['requestpackcb',['RequestPackCb',['../namespacelivox.html#ad7370a98d65fd20693ed58a470ec9439',1,'livox']]], + ['reserve',['reserve',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ab306d6d55956332b1083e967393a59f1',1,'fmt::v5::internal::basic_buffer::reserve()'],['../namespacefmt_1_1v5_1_1internal.html#a9eee3495bac20bffa3ab73cedf950d75',1,'fmt::v5::internal::reserve(std::back_insert_iterator< Container > &it, std::size_t n)'],['../namespacefmt_1_1v5_1_1internal.html#a5f7253ee05af521286206b1ab24ad368',1,'fmt::v5::internal::reserve(Iterator &it, std::size_t)']]], + ['reserved',['reserved',['../struct_broadcast_device_info.html#abc9a813e11ebeebeaf937b34090f3620',1,'BroadcastDeviceInfo']]], + ['reset',['reset',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a7a232ef41d85a03d99053ee931fb11a4',1,'spdlog::sinks::ansicolor_sink']]], + ['reset_5fcolor',['RESET_COLOR',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a6da82443fd09335fe5cbe3fe39cbc97b',1,'fmt::v5::internal::basic_data::RESET_COLOR()'],['../namespacefmt_1_1v5_1_1internal.html#a3c469199b831e4d4d2b3728bb8e99b1f',1,'fmt::v5::internal::reset_color()']]], + ['reset_5fcolor_3c_20wchar_5ft_20_3e',['reset_color< wchar_t >',['../namespacefmt_1_1v5_1_1internal.html#acba41814a0db9856bd9785841f7aa4a0',1,'fmt::v5::internal']]], + ['resize',['resize',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#af20fa1cd5e5bd230ab1d4e89c6aead38',1,'fmt::v5::internal::basic_buffer']]], + ['responsestatus',['ResponseStatus',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6',1,'livox_def.h']]], + ['result',['result',['../structfmt_1_1v5_1_1internal_1_1function_1_1result.html',1,'fmt::v5::internal::function< Result >::result< T >'],['../structfmt_1_1v5_1_1internal_1_1char__t.html#ac83141e2510982ccc56eea9c9cc74ccc',1,'fmt::v5::internal::char_t::result()']]], + ['result_5fof',['result_of',['../structfmt_1_1v5_1_1internal_1_1result__of.html',1,'fmt::v5::internal']]], + ['result_5fof_3c_20f_28args_2e_2e_2e_29_3e',['result_of< F(Args...)>',['../structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html',1,'fmt::v5::internal']]], + ['ret_5fcode',['ret_code',['../struct_return_code.html#abda96609396b9cf80e4449efb974e920',1,'ReturnCode::ret_code()'],['../struct_extrinsic_parameter_response_item.html#a0651e41de730be277c4cc29902a0d711',1,'ExtrinsicParameterResponseItem::ret_code()'],['../struct_device_information_response.html#a9e625ec596c65c24d3c1d229a9785c72',1,'DeviceInformationResponse::ret_code()'],['../struct_get_device_i_p_mode_response.html#a3eff4056a851a546b2185ce750b5bb30',1,'GetDeviceIPModeResponse::ret_code()'],['../struct_heartbeat_response.html#a7a0d09ada36c1e0c785920017211eada',1,'HeartbeatResponse::ret_code()'],['../struct_lidar_get_extrinsic_parameter_response.html#aa8637fe0f80e9c8976100458249e72be',1,'LidarGetExtrinsicParameterResponse::ret_code()'],['../struct_hub_query_lidar_information_response.html#a914cc326363ded18efb18a0b321a97b4',1,'HubQueryLidarInformationResponse::ret_code()'],['../struct_hub_set_mode_response.html#a8f39d0bb5b2950409fd760471ea14806',1,'HubSetModeResponse::ret_code()'],['../struct_hub_set_extrinsic_parameter_response.html#a4f887dc5ff42061da54bb8f56f06eabe',1,'HubSetExtrinsicParameterResponse::ret_code()'],['../struct_hub_get_extrinsic_parameter_response.html#a07b82bb424aed94e3d0e0d8be1adf085',1,'HubGetExtrinsicParameterResponse::ret_code()'],['../struct_hub_query_lidar_status_response.html#a28cda59b09ddbb0adeeb82ba59e8043b',1,'HubQueryLidarStatusResponse::ret_code()'],['../struct_hub_rain_fog_suppress_response.html#a189ce6c8031a2d326f6317108c2c8269',1,'HubRainFogSuppressResponse::ret_code()']]], + ['ret_5fcode_5flist',['ret_code_list',['../struct_hub_set_extrinsic_parameter_response.html#aefd242daf07ddff079b88119e809252e',1,'HubSetExtrinsicParameterResponse']]], + ['ret_5fstate_5flist',['ret_state_list',['../struct_hub_set_mode_response.html#a1fc69cbcf14b212987fc3a6408f5515f',1,'HubSetModeResponse::ret_state_list()'],['../struct_hub_rain_fog_suppress_response.html#ad95528d299ac14e975932752d27fe59a',1,'HubRainFogSuppressResponse::ret_state_list()']]], + ['returncode',['ReturnCode',['../struct_return_code.html',1,'']]], + ['reverse',['reverse',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ac755cd237351fa5cdf4910e491ddbf97',1,'spdlog::sinks::ansicolor_sink']]], + ['rgb',['rgb',['../structfmt_1_1v5_1_1rgb.html',1,'fmt::v5::rgb'],['../structfmt_1_1v5_1_1rgb.html#a62ff2701862b5856f1f44b4665665b32',1,'fmt::v5::rgb::rgb()'],['../structfmt_1_1v5_1_1rgb.html#a1daecef7516f5a12c165ac69d93e34c2',1,'fmt::v5::rgb::rgb(uint8_t r_, uint8_t g_, uint8_t b_)'],['../structfmt_1_1v5_1_1rgb.html#a09431a5576c128fa040c35f390852b14',1,'fmt::v5::rgb::rgb(uint32_t hex)'],['../structfmt_1_1v5_1_1rgb.html#ae26aa08687996b7f191f73a6e4d1b626',1,'fmt::v5::rgb::rgb(color hex)']]], + ['rgb_5fcolor',['rgb_color',['../unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html#abc101e3949ceadb82b39a89c0e7ff92c',1,'fmt::v5::internal::color_type::color_union']]], + ['right',['right',['../structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942ea9c57d63e3303865488819d4b5679cf09',1,'spdlog::details::padding_info']]], + ['roll',['roll',['../struct_extrinsic_parameter_request_item.html#af5d441ccf6ec53035b7ef76a37a012bc',1,'ExtrinsicParameterRequestItem::roll()'],['../struct_extrinsic_parameter_response_item.html#a2d44941ee40e4b84dab880d8a23fb3a6',1,'ExtrinsicParameterResponseItem::roll()'],['../struct_lidar_set_extrinsic_parameter_request.html#aa2719d36a514d8f97c39f0da3f0449d0',1,'LidarSetExtrinsicParameterRequest::roll()'],['../struct_lidar_get_extrinsic_parameter_response.html#a452bec545768ac85c3a3276d553fd538',1,'LidarGetExtrinsicParameterResponse::roll()']]], + ['rosy_5fbrown',['rosy_brown',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a6f6922bd3e51b8d19b4f78df8dec7a52',1,'fmt::v5']]], + ['rotating_5ffile_5fsink',['rotating_file_sink',['../classspdlog_1_1sinks_1_1rotating__file__sink.html',1,'spdlog::sinks::rotating_file_sink< Mutex >'],['../classspdlog_1_1sinks_1_1rotating__file__sink.html#a1dcebdde175de15bee24da6e9ec70990',1,'spdlog::sinks::rotating_file_sink::rotating_file_sink()']]], + ['rotating_5ffile_5fsink_2eh',['rotating_file_sink.h',['../rotating__file__sink_8h.html',1,'']]], + ['rotating_5ffile_5fsink_5fmt',['rotating_file_sink_mt',['../namespacespdlog_1_1sinks.html#a70b4fab83ca180ef19c4124f4823aeaa',1,'spdlog::sinks']]], + ['rotating_5ffile_5fsink_5fst',['rotating_file_sink_st',['../namespacespdlog_1_1sinks.html#a694eff66a11012e2fbe3fa3a1c963c96',1,'spdlog::sinks']]], + ['rotating_5flogger_5fmt',['rotating_logger_mt',['../namespacespdlog.html#a22f7ba52bed824030a97583cf1628af9',1,'spdlog']]], + ['rotating_5flogger_5fst',['rotating_logger_st',['../namespacespdlog.html#a8f8f238ddac5a799696cf25e98b382e7',1,'spdlog']]], + ['royal_5fblue',['royal_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4108cee2c1205de0bba7a8f3f55ba48b',1,'fmt::v5']]], + ['rsvd',['rsvd',['../struct_livox_eth_packet.html#ae786d26c1650fd52f245795cabe659e1',1,'LivoxEthPacket']]] ]; diff --git a/docs/search/all_14.js b/docs/search/all_14.js index 0828683..b784e49 100644 --- a/docs/search/all_14.js +++ b/docs/search/all_14.js @@ -1,48 +1,179 @@ var searchData= [ - ['t_5fformatter',['T_formatter',['../classspdlog_1_1details_1_1_t__formatter.html',1,'spdlog::details::T_formatter'],['../classspdlog_1_1details_1_1t__formatter.html',1,'spdlog::details::t_formatter'],['../classspdlog_1_1details_1_1_t__formatter.html#affd0c9557cd9649339f10abd943608ff',1,'spdlog::details::T_formatter::T_formatter()'],['../classspdlog_1_1details_1_1t__formatter.html#a8cd4b638e72934a3ca2517d00e2aa06b',1,'spdlog::details::t_formatter::t_formatter()']]], - ['tan',['tan',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5b2d4484498235e80d61a233a7c04991',1,'fmt::v5']]], - ['teal',['teal',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a3c4184e82bb3be8fa32669800fb7373c',1,'fmt::v5']]], - ['term_5fcolor',['term_color',['../unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html#a73e951d1431fc31480ac83271d7bf821',1,'fmt::v5::internal::color_type::color_union']]], - ['terminal_5fcolor',['terminal_color',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fba',1,'fmt::v5']]], - ['terminate',['terminate',['../namespacespdlog_1_1details.html#a22274995cf879a5d0a08d1f7513ee4fba1459e53d3fbaa95cebaf90860dd7a259',1,'spdlog::details']]], - ['test_5fstream',['test_stream',['../structfmt_1_1v5_1_1internal_1_1test__stream.html',1,'fmt::v5::internal']]], - ['text_5fstyle',['text_style',['../classfmt_1_1v5_1_1text__style.html',1,'fmt::v5::text_style'],['../classfmt_1_1v5_1_1text__style.html#a55feba93f4dbd6d9d8f6f357dc4b2860',1,'fmt::v5::text_style::text_style()']]], - ['thistle',['thistle',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a94ec2b8d73527db3da316ad28195219e',1,'fmt::v5']]], - ['thousands_5fsep',['thousands_sep',['../namespacefmt_1_1v5_1_1internal.html#a22384733f113ad46c4b287aee4d19719',1,'fmt::v5::internal::thousands_sep(locale_ref loc)'],['../namespacefmt_1_1v5_1_1internal.html#a3e0d5b65fb0f03b9d75a8210ff3ffcd1',1,'fmt::v5::internal::thousands_sep(locale_ref loc)']]], - ['thousands_5fsep_5fimpl',['thousands_sep_impl',['../namespacefmt_1_1v5_1_1internal.html#a80875403133fef6385e50480459b1136',1,'fmt::v5::internal']]], - ['thread_5fid',['thread_id',['../structspdlog_1_1details_1_1log__msg.html#ab8474cd689276f61021bca37e1993eef',1,'spdlog::details::log_msg::thread_id()'],['../structspdlog_1_1details_1_1async__msg.html#aac1c8c51a83bae076197a384d26b8814',1,'spdlog::details::async_msg::thread_id()'],['../namespacespdlog_1_1details_1_1os.html#a74d5902dc227aa662ade3eac75d03c81',1,'spdlog::details::os::thread_id()']]], - ['thread_5fpool',['thread_pool',['../classspdlog_1_1details_1_1thread__pool.html',1,'spdlog::details::thread_pool'],['../classspdlog_1_1details_1_1thread__pool.html#a2ac821eb936f7373cc51949fb05e841c',1,'spdlog::details::thread_pool::thread_pool(size_t q_max_items, size_t threads_n)'],['../classspdlog_1_1details_1_1thread__pool.html#a5e8f86d40f81af1d22a21ee0368287b2',1,'spdlog::details::thread_pool::thread_pool(const thread_pool &)=delete'],['../namespacespdlog.html#a6676a1ffb5ea174a2392ab0317bbcff2',1,'spdlog::thread_pool()']]], - ['thread_5fpool_2eh',['thread_pool.h',['../thread__pool_8h.html',1,'']]], - ['time',['time',['../structspdlog_1_1details_1_1log__msg.html#a25fadb26e6ce94657af5475d4a581313',1,'spdlog::details::log_msg::time()'],['../structspdlog_1_1details_1_1async__msg.html#a00cfea0e28fb046d77da1df09d6410b4',1,'spdlog::details::async_msg::time()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ac229529f4628b228142ad3babb581225',1,'fmt::v5::internal::chrono_formatter::time()']]], - ['time_2eh',['time.h',['../time_8h.html',1,'']]], - ['time_5ffraction',['time_fraction',['../namespacespdlog_1_1details_1_1fmt__helper.html#a27585b20ce58cd861f4e37be0057cc41',1,'spdlog::details::fmt_helper']]], - ['timestamp',['timestamp',['../struct_livox_eth_packet.html#a0ee766e1efde1b362cb10ad3c5a489ce',1,'LivoxEthPacket']]], - ['timestamp_5ftype',['timestamp_type',['../struct_livox_eth_packet.html#aa2694b179be57520cf2173b0c680d58d',1,'LivoxEthPacket']]], - ['timestamptype',['TimestampType',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0',1,'livox_def.h']]], - ['tm_5fformat',['tm_format',['../structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#a0974bc78aab514b37ccfa573cd8400c6',1,'fmt::v5::formatter< std::tm, Char >']]], - ['to12h',['to12h',['../namespacespdlog_1_1details.html#adc1e7c142665b3801b5797f9c8b77bfa',1,'spdlog::details']]], - ['to_5fchar8_5ft',['to_char8_t',['../namespacefmt_1_1v5_1_1internal.html#adc534aad72fd5f9db229cc9edf622771',1,'fmt::v5::internal']]], - ['to_5fhex',['to_hex',['../namespacespdlog.html#acd3f4323bb627945b4cecbbbc62770ef',1,'spdlog::to_hex(const Container &container)'],['../namespacespdlog.html#a3730108d5b1a43b30f8ddf32404b9d25',1,'spdlog::to_hex(const It range_begin, const It range_end)']]], - ['to_5fint',['to_int',['../namespacefmt_1_1v5_1_1internal.html#aeaa4eca77afc74c176ac1a1b941105f7',1,'fmt::v5::internal']]], - ['to_5flog_5fmsg',['to_log_msg',['../structspdlog_1_1details_1_1async__msg.html#a2c5c21ef52bd0b7241ed6ac56f480fd2',1,'spdlog::details::async_msg']]], - ['to_5fshort_5fc_5fstr',['to_short_c_str',['../namespacespdlog_1_1level.html#a320d85598eda29f072e343e57ec27ab8',1,'spdlog::level']]], - ['to_5fstring',['to_string',['../namespacefmt_1_1v5.html#af7906102d07e0d93b609aef6c05fc27a',1,'fmt::v5::to_string(const T &value)'],['../namespacefmt_1_1v5.html#a07522969fe4d2aefef29e120aee66257',1,'fmt::v5::to_string(const basic_memory_buffer< Char, SIZE > &buf)']]], - ['to_5fstring_5fview',['to_string_view',['../namespacespdlog_1_1level.html#a1ed786fe4b8a5babc3aeaa3eba9a9921',1,'spdlog::level::to_string_view()'],['../namespacespdlog_1_1details_1_1fmt__helper.html#aa2b4191cb8c40474fb61787ad67face5',1,'spdlog::details::fmt_helper::to_string_view()'],['../namespacefmt_1_1v5.html#a29e4c9965f74e7f2bb6f75d7153468b6',1,'fmt::v5::to_string_view(basic_string_view< Char > s)'],['../namespacefmt_1_1v5.html#a5b47584a9e90ebd6460675a6c1d6b238',1,'fmt::v5::to_string_view(const std::basic_string< Char > &s)'],['../namespacefmt_1_1v5.html#ab264eb8eb9841f0cee5af4284196a4cc',1,'fmt::v5::to_string_view(const Char *s)'],['../namespacefmt_1_1v5.html#a1fcfd29b295417c3eb7395c4df6ea1f9',1,'fmt::v5::to_string_view(const S &s)'],['../namespacefmt_1_1v5_1_1internal.html#a4b4263d060da175d7113962ebfd37819',1,'fmt::v5::internal::to_string_view()']]], - ['to_5funsigned',['to_unsigned',['../namespacefmt_1_1v5_1_1internal.html#abef3b695050c4132b4fc4d7f256b9580',1,'fmt::v5::internal']]], - ['to_5fwstring',['to_wstring',['../namespacefmt_1_1v5.html#aab6607dc16d02c9f81d025f93a15caa4',1,'fmt::v5']]], - ['tomato',['tomato',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a006f87892f47ef9aa60fa5ed01a440fb',1,'fmt::v5']]], - ['tp_5fmutex',['tp_mutex',['../classspdlog_1_1details_1_1registry.html#a0fddfd080598f35c675d618cb5e414c6',1,'spdlog::details::registry']]], - ['trace',['trace',['../classspdlog_1_1logger.html#a59a8516fe055c6b78c9b1822148f78ec',1,'spdlog::logger::trace(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#a66e008d30a46c33283c4546f3851a80a',1,'spdlog::logger::trace(const T &msg)'],['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8badd5891a1416461ee9e7d7e19d41af51f',1,'spdlog::level::trace()'],['../namespacespdlog.html#a0ec6777ea7982bcf7cf85b87b0619b56',1,'spdlog::trace(const char *fmt, const Args &... args)'],['../namespacespdlog.html#a99302a3f872e2cba98f81ac1a2f63321',1,'spdlog::trace(const T &msg)']]], - ['trailing_5fzeros',['trailing_zeros',['../structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#af94ccb0990229d78c551373b07abb3b2',1,'fmt::v5::internal::gen_digits_params']]], - ['truncating_5fiterator',['truncating_iterator',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator.html',1,'fmt::v5::internal::truncating_iterator< OutputIt, Enable >'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a5a99af3c33a7e15fcaa77a387a70c4f7',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::false_type >::truncating_iterator()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a9284d872ba9a7fc8e42a9d9a5d7777de',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::truncating_iterator()']]], - ['truncating_5fiterator_3c_20outputit_2c_20std_3a_3afalse_5ftype_20_3e',['truncating_iterator< OutputIt, std::false_type >',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html',1,'fmt::v5::internal']]], - ['truncating_5fiterator_3c_20outputit_2c_20std_3a_3atrue_5ftype_20_3e',['truncating_iterator< OutputIt, std::true_type >',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html',1,'fmt::v5::internal']]], - ['truncating_5fiterator_5fbase',['truncating_iterator_base',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html',1,'fmt::v5::internal::truncating_iterator_base< OutputIt >'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a9722e33a6fdfb563b8db59829f133711',1,'fmt::v5::internal::truncating_iterator_base::truncating_iterator_base()']]], - ['try_5flock',['try_lock',['../structspdlog_1_1details_1_1null__mutex.html#a1e367b1adaa6305edbe163c4d2021c53',1,'spdlog::details::null_mutex']]], - ['turquoise',['turquoise',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0adcbb31fdf774bcd3f09d54c4487377c0',1,'fmt::v5']]], - ['tweakme_2eh',['tweakme.h',['../tweakme_8h.html',1,'']]], - ['type',['type',['../structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html#a75a66079d518f0f269c6be9baa8bccd9',1,'fmt::v5::internal::result_of< F(Args...)>::type()'],['../structfmt_1_1v5_1_1internal_1_1char__t.html#a096fd6ceeb1d27e1a62b6afeb611f391',1,'fmt::v5::internal::char_t::type()'],['../structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html#a14ceeeb9b78679fea87df36298fc5603',1,'fmt::v5::basic_format_context::formatter_type::type()'],['../structfmt_1_1v5_1_1buffer__context.html#ac7c75596798b17dd1e05f905bf74b619',1,'fmt::v5::buffer_context::type()'],['../structfmt_1_1v5_1_1internal_1_1function_1_1result.html#a10b35177d5430fc9e9fee0301fa43ff2',1,'fmt::v5::internal::function::result::type()'],['../structfmt_1_1v5_1_1internal_1_1checked.html#ae50049ee2def62be6532372564182cac',1,'fmt::v5::internal::checked::type()'],['../structfmt_1_1v5_1_1internal_1_1void__.html#a574c59a1964f87565829257845c51023',1,'fmt::v5::internal::void_::type()'],['../structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html#a76ab7e80d700bce301256059f7a38489',1,'fmt::v5::internal::it_category< T * >::type()'],['../structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html#a40cd1ec991c81ebc79830a3e94f1f0d0',1,'fmt::v5::internal::it_category< T, typename void_< typename T::iterator_category >::type >::type()'],['../structfmt_1_1v5_1_1format__context__t.html#a3a779c0aeb8ba0ea1aed0b8c3b3b53c1',1,'fmt::v5::format_context_t::type()'],['../structfmt_1_1v5_1_1format__args__t.html#aa4f31b5332a6cdd12d1b7a7e766770dd',1,'fmt::v5::format_args_t::type()'],['../structfmt_1_1v5_1_1format__to__n__args.html#a68938d8d3d0df2ee1150ceba97964bc4',1,'fmt::v5::format_to_n_args::type()'],['../structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html#a0a5557a4a92010b0e997e82ea7a4bc9d',1,'fmt::v5::internal::make_unsigned_or_bool< bool >::type()'],['../structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html#ad84f4ee9d13cc381c864382cae010501',1,'fmt::v5::basic_printf_context::formatter_type::type()'],['../structfmt_1_1v5_1_1basic__printf__context__t.html#ae71e6b5fec9b62fb22733b5f40ed5d23',1,'fmt::v5::basic_printf_context_t::type()'],['../struct_device_info.html#af9a47cb52e6df99dd0705a6b2bfa8f04',1,'DeviceInfo::type()'],['../structfmt_1_1v5_1_1core__format__specs.html#ae8225c1b5ab54383472fed40c9ccf4b6',1,'fmt::v5::core_format_specs::type()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a48e693571ddc346ae7fae88fe7902932',1,'fmt::v5::float_spec_handler::type()'],['../classfmt_1_1v5_1_1basic__format__arg.html#aa66a8b06ab57c780dea7b1759da404a3',1,'fmt::v5::basic_format_arg::type()'],['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13',1,'fmt::v5::internal::type()']]], - ['type_5ftag',['type_tag',['../structfmt_1_1v5_1_1internal_1_1init.html#adc568107405c8c92081c28f5961d76d7',1,'fmt::v5::internal::init']]], - ['types',['TYPES',['../classfmt_1_1v5_1_1format__arg__store.html#aa3c5724940de9479c8a707ed802c792b',1,'fmt::v5::format_arg_store']]] + ['details',['details',['../namespacespdlog_1_1details.html',1,'spdlog']]], + ['fmt_5fhelper',['fmt_helper',['../namespacespdlog_1_1details_1_1fmt__helper.html',1,'spdlog::details']]], + ['level',['level',['../namespacespdlog_1_1level.html',1,'spdlog']]], + ['os',['os',['../namespacespdlog_1_1details_1_1os.html',1,'spdlog::details']]], + ['s',['s',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad5e36628d12c268b31c170ae1f41de17',1,'fmt::v5::internal::chrono_formatter']]], + ['s_5fformatter',['S_formatter',['../classspdlog_1_1details_1_1_s__formatter.html',1,'spdlog::details::S_formatter'],['../classspdlog_1_1details_1_1_s__formatter.html#a8e9ddad945ae1f9bfc79adb0286723a6',1,'spdlog::details::S_formatter::S_formatter()']]], + ['saddle_5fbrown',['saddle_brown',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a0b1ae0e5580eaa0e6968ec6c8143ecac',1,'fmt::v5']]], + ['salmon',['salmon',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a180fd182f9a0742f483619781ccc36c4',1,'fmt::v5']]], + ['sandy_5fbrown',['sandy_brown',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9a19a83d0097df35f7ba7af753f0537d',1,'fmt::v5']]], + ['saveloggerfile',['SaveLoggerFile',['../livox__sdk_8h.html#a07da2c37e72a9f9c6537cc49e2b1d0c8',1,'livox_sdk.h']]], + ['scoped_5fpad',['scoped_pad',['../classspdlog_1_1details_1_1scoped__pad.html',1,'spdlog::details::scoped_pad'],['../classspdlog_1_1details_1_1scoped__pad.html#a1da16eb464801b04d397174e7338d990',1,'spdlog::details::scoped_pad::scoped_pad(size_t wrapped_size, padding_info &padinfo, fmt::memory_buffer &dest)'],['../classspdlog_1_1details_1_1scoped__pad.html#a945477b9e2c1ee236238bb63129a767d',1,'spdlog::details::scoped_pad::scoped_pad(spdlog::string_view_t txt, padding_info &padinfo, fmt::memory_buffer &dest)']]], + ['sea_5fgreen',['sea_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a2e1e305a440fcfc9109858a7b2e20ca7',1,'fmt::v5']]], + ['sea_5fshell',['sea_shell',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aefe66dd5675ff42810bbc04512d44c4b',1,'fmt::v5']]], + ['second',['second',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad518a05301185cec644e0a2aa55981f8',1,'fmt::v5::internal::chrono_formatter']]], + ['self',['self',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html#a5bf0a3bd718d02c9b794ccb4ebe68948',1,'fmt::v5::basic_writer::int_writer::hex_writer']]], + ['sender',['sender',['../structlivox_1_1_comm_packet.html#aae14b486474c57d0f82ed5c3c9e3e807',1,'livox::CommPacket']]], + ['sep',['sep',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html#adbb384826111ef8dcca2de5656fd8bfa',1,'fmt::v5::basic_writer::int_writer::num_writer::sep()'],['../structfmt_1_1v5_1_1arg__join.html#a547d8479ecf6206c1931419886574729',1,'fmt::v5::arg_join::sep()']]], + ['seq_5fnum',['seq_num',['../structlivox_1_1_comm_packet.html#a8723e87d47e47da53e6741f82cc59faf',1,'livox::CommPacket']]], + ['set',['set',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#aeadf1e58eae72ef94f9e2c01ad7921c6',1,'fmt::v5::internal::basic_buffer']]], + ['set_5fautomatic_5fregistration',['set_automatic_registration',['../classspdlog_1_1details_1_1registry.html#a0cfc3780c18f5331ad31ea1d40248952',1,'spdlog::details::registry::set_automatic_registration()'],['../namespacespdlog.html#a95b9f066c4e8ad65454049bdd7f6b956',1,'spdlog::set_automatic_registration()']]], + ['set_5fcolor',['set_color',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ad19df81408ed6dbbe62fe4a1e5a7fca8',1,'spdlog::sinks::ansicolor_sink::set_color()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a914a0d9aed02627be8cd287a2dee9916',1,'spdlog::sinks::wincolor_sink::set_color()']]], + ['set_5fdefault_5flogger',['set_default_logger',['../classspdlog_1_1details_1_1registry.html#ae2a45628046a1d0cd3f8de81a5556acb',1,'spdlog::details::registry::set_default_logger()'],['../namespacespdlog.html#ab8a13bd805e706298e1e396ee5ac93bb',1,'spdlog::set_default_logger()']]], + ['set_5fdynamic_5fspec',['set_dynamic_spec',['../namespacefmt_1_1v5_1_1internal.html#aa59e73ee062ec382675c0e65d9123b5c',1,'fmt::v5::internal']]], + ['set_5ferror_5fhandler',['set_error_handler',['../classspdlog_1_1details_1_1registry.html#a47543b9b7ebe0dc3664cfd5f3e385905',1,'spdlog::details::registry::set_error_handler()'],['../classspdlog_1_1logger.html#aeeb9d71caa8f357f4255447fb72135d3',1,'spdlog::logger::set_error_handler()'],['../namespacespdlog.html#aff4886a7bf8585815d8fd1f819f91be0',1,'spdlog::set_error_handler()']]], + ['set_5fformatter',['set_formatter',['../classspdlog_1_1details_1_1registry.html#a8f8dcb7f6b7987716cfbcb92bbe96517',1,'spdlog::details::registry::set_formatter()'],['../classspdlog_1_1logger.html#a9c5b880ddf9a9c86ec9893364e57071d',1,'spdlog::logger::set_formatter()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a030c3495398d4f320ad444ca940b4731',1,'spdlog::sinks::ansicolor_sink::set_formatter()'],['../classspdlog_1_1sinks_1_1base__sink.html#ad66435c2e9e0adb06ee279dde88a2243',1,'spdlog::sinks::base_sink::set_formatter()'],['../classspdlog_1_1sinks_1_1sink.html#ac410f2229e583a75337a5fdf45d020be',1,'spdlog::sinks::sink::set_formatter()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#ada2b3ef5a7821873df46ebda72b77e6c',1,'spdlog::sinks::stdout_sink::set_formatter()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a48cc1a252565bdbb66b12ba2a40e62f9',1,'spdlog::sinks::wincolor_sink::set_formatter()'],['../namespacespdlog.html#a83007016a4f374c8efcc738eee5b7290',1,'spdlog::set_formatter()']]], + ['set_5fformatter_5f',['set_formatter_',['../classspdlog_1_1sinks_1_1base__sink.html#aed93aabfba62b684e603eb525671c864',1,'spdlog::sinks::base_sink::set_formatter_()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a5e83e285fcceaab7ee4c4736c2decef0',1,'spdlog::sinks::dist_sink::set_formatter_()']]], + ['set_5flevel',['set_level',['../classspdlog_1_1details_1_1registry.html#a4b8494e781ed3151586b307cca63edb7',1,'spdlog::details::registry::set_level()'],['../classspdlog_1_1logger.html#a403ccd4cd1bc85c6ba6b1517c37726c7',1,'spdlog::logger::set_level()'],['../classspdlog_1_1sinks_1_1sink.html#a038a91409395dca18a7ccca81622fd83',1,'spdlog::sinks::sink::set_level()'],['../namespacespdlog.html#a9f952c6a1e1114b474aff89965261a1b',1,'spdlog::set_level()']]], + ['set_5fpattern',['set_pattern',['../classspdlog_1_1logger.html#a0f61c15b955775652da9b2b813d9f3cd',1,'spdlog::logger::set_pattern()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab84f8a9299e060e55dcfbe333806aedc',1,'spdlog::sinks::ansicolor_sink::set_pattern()'],['../classspdlog_1_1sinks_1_1base__sink.html#a2b0a0b95f1e7272b443de67b46914152',1,'spdlog::sinks::base_sink::set_pattern()'],['../classspdlog_1_1sinks_1_1sink.html#a7e5cfd4b683c8bfa8fbd602d7f409632',1,'spdlog::sinks::sink::set_pattern()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#a5b8759dab80ca44e9d185e21aa797d2a',1,'spdlog::sinks::stdout_sink::set_pattern()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a5032da6fc760507134a7d1eff1a20b0a',1,'spdlog::sinks::wincolor_sink::set_pattern()'],['../namespacespdlog.html#a638029f343e8dd2393d62288b1eb095e',1,'spdlog::set_pattern()']]], + ['set_5fpattern_5f',['set_pattern_',['../classspdlog_1_1sinks_1_1base__sink.html#a56bc5fc8e03dc0aeb6679856ffee7fb4',1,'spdlog::sinks::base_sink::set_pattern_()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a6f77a1e2f45ed85ee8ed554cf7442d4e',1,'spdlog::sinks::dist_sink::set_pattern_()']]], + ['set_5fsinks',['set_sinks',['../classspdlog_1_1sinks_1_1dist__sink.html#aa0e154cef03e368fefaa7bc845d682a1',1,'spdlog::sinks::dist_sink']]], + ['set_5ftp',['set_tp',['../classspdlog_1_1details_1_1registry.html#aa5503db04a70a06f97e7c1218aa8cbe2',1,'spdlog::details::registry']]], + ['setbroadcastcallback',['SetBroadcastCallback',['../livox__sdk_8h.html#a607c2ba4c70935ac52a5e52034a91ce3',1,'livox_sdk.h']]], + ['setcartesiancoordinate',['SetCartesianCoordinate',['../livox__sdk_8h.html#a736b3b08f9015fda09ae1ac602d2746c',1,'livox_sdk.h']]], + ['setdatacallback',['SetDataCallback',['../livox__sdk_8h.html#a51d3dfd8bc4e285a6551fbfe59c8207e',1,'livox_sdk.h']]], + ['setdeviceipmoderequest',['SetDeviceIPModeRequest',['../struct_set_device_i_p_mode_request.html',1,'']]], + ['setdevicestateupdatecallback',['SetDeviceStateUpdateCallback',['../livox__sdk_8h.html#a92a17d7becdf1affb290aef2cf57617a',1,'livox_sdk.h']]], + ['seterrormessagecallback',['SetErrorMessageCallback',['../livox__sdk_8h.html#aac000c456531f39d44d38277d7593071',1,'livox_sdk.h']]], + ['setsphericalcoordinate',['SetSphericalCoordinate',['../livox__sdk_8h.html#acdd757ddd274570aae88c25fd65fa5bf',1,'livox_sdk.h']]], + ['setstaticdynamicip',['SetStaticDynamicIP',['../livox__sdk_8h.html#a3e68d21590fe0c7c3e20d720f9a7bf53',1,'livox_sdk.h']]], + ['short_5flevel_5fformatter',['short_level_formatter',['../classspdlog_1_1details_1_1short__level__formatter.html',1,'spdlog::details::short_level_formatter'],['../classspdlog_1_1details_1_1short__level__formatter.html#adcc003358c5cea986bb25ae092df0f70',1,'spdlog::details::short_level_formatter::short_level_formatter()']]], + ['short_5flevel_5fnames',['short_level_names',['../namespacespdlog_1_1level.html#a70535c68de0c12e9854e31928fb2d671',1,'spdlog::level']]], + ['should_5fcolor',['should_color',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a9618b1494bbc280913755f76abde2ed4',1,'spdlog::sinks::ansicolor_sink']]], + ['should_5fflush_5f',['should_flush_',['../classspdlog_1_1logger.html#aa1bbe703cdeed2aef722a97a2bc1a800',1,'spdlog::logger']]], + ['should_5flog',['should_log',['../classspdlog_1_1logger.html#a94c77395570c462953ded4188aaaf655',1,'spdlog::logger::should_log()'],['../classspdlog_1_1sinks_1_1sink.html#a1c932f19f67057fbe7518999bdd5c422',1,'spdlog::sinks::sink::should_log()']]], + ['shutdown',['shutdown',['../classspdlog_1_1details_1_1registry.html#ac93f888f316b0488414771ad6533b6a9',1,'spdlog::details::registry::shutdown()'],['../namespacespdlog.html#a38b5c05a859763c5e350e8ec3da9e328',1,'spdlog::shutdown()']]], + ['side_5f',['side_',['../structspdlog_1_1details_1_1padding__info.html#af03346e385de821038e0aec989741d14',1,'spdlog::details::padding_info']]], + ['sienna',['sienna',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a91c001e5547439063fefe550d83533b6',1,'fmt::v5']]], + ['sign_5fflag',['SIGN_FLAG',['../namespacefmt_1_1v5.html#a2afc98455558e211af15ed1ad8c12bfaadd34df58da973a9740e39d7b83e7b890',1,'fmt::v5']]], + ['significand_5fsize',['significand_size',['../classfmt_1_1v5_1_1internal_1_1fp.html#ad0175b9acfb79c562984ed002fe09c53',1,'fmt::v5::internal::fp']]], + ['silver',['silver',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a97f014516561ef487ec368d6158eb3f4',1,'fmt::v5']]], + ['sink',['sink',['../classspdlog_1_1sinks_1_1sink.html',1,'spdlog::sinks::sink'],['../classspdlog_1_1sinks_1_1sink.html#ae32182a47ebea9c66c02e6a9822ffdcd',1,'spdlog::sinks::sink::sink()=default'],['../classspdlog_1_1sinks_1_1sink.html#aea8106cba54ae87840fc1cf33cdfd2c1',1,'spdlog::sinks::sink::sink(std::unique_ptr< spdlog::formatter > formatter)']]], + ['sink_2eh',['sink.h',['../sink_8h.html',1,'']]], + ['sink_5fit_5f',['sink_it_',['../classspdlog_1_1async__logger.html#aefd367c3266773bfe756d34150705329',1,'spdlog::async_logger::sink_it_()'],['../classspdlog_1_1logger.html#a43ac8d73671a109cba253eadb0b049e2',1,'spdlog::logger::sink_it_()'],['../classspdlog_1_1sinks_1_1android__sink.html#ab91c7aabd013d009ff811e6d34324128',1,'spdlog::sinks::android_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1base__sink.html#ad698d300cb7f5e58b2aa1b9907cdbd87',1,'spdlog::sinks::base_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1basic__file__sink.html#a8d9239f225478ade4e879dc643f577ba',1,'spdlog::sinks::basic_file_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1daily__file__sink.html#ac82447cddb7a2ddb45ab81f97b74286d',1,'spdlog::sinks::daily_file_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a516ef929a8cd73df2ead2e0086e04607',1,'spdlog::sinks::dist_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1null__sink.html#a158c702167f6a46609de2c561f82973c',1,'spdlog::sinks::null_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1ostream__sink.html#a77f36cef81daf668ec55a07fa191d1e7',1,'spdlog::sinks::ostream_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1rotating__file__sink.html#a3cf93e445ad92380c7d352f971cd76a4',1,'spdlog::sinks::rotating_file_sink::sink_it_()'],['../classspdlog_1_1sinks_1_1syslog__sink.html#a303bccf40cd03356510391c493078005',1,'spdlog::sinks::syslog_sink::sink_it_()']]], + ['sink_5fptr',['sink_ptr',['../namespacespdlog.html#a422c57d3088160b517e5a74e5f318253',1,'spdlog']]], + ['sinks',['sinks',['../namespacespdlog_1_1sinks.html',1,'spdlog::sinks'],['../classspdlog_1_1logger.html#a00c27f251b795caf028718b605572e1f',1,'spdlog::logger::sinks() const'],['../classspdlog_1_1logger.html#a7d93aa2653b924f2c9981d026aea9822',1,'spdlog::logger::sinks()']]], + ['sinks_5f',['sinks_',['../classspdlog_1_1logger.html#a24a3b3250f3fe52fa7c3053e77076f07',1,'spdlog::logger::sinks_()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a3d9d8c330d7d6455f45db77d4e6977f4',1,'spdlog::sinks::dist_sink::sinks_()']]], + ['sinks_5finit_5flist',['sinks_init_list',['../namespacespdlog.html#aa9b5c2298bf713fbe02b7e538d797ecd',1,'spdlog']]], + ['size',['size',['../structlivox_1_1_port_cache.html#a2c92155bd2db69e7368a1be11c384cb8',1,'livox::PortCache::size()'],['../structfmt_1_1v5_1_1internal_1_1string__value.html#a0138fc9479b4f37a74d3f32ff62e10bc',1,'fmt::v5::internal::string_value::size()'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aeefd7bd2fef0e07643645f824d347ee2',1,'fmt::v5::internal::prettify_handler::size()'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#a100c9c7d1618245f315f83af27110d2b',1,'fmt::v5::internal::char_counter::size()'],['../structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#a5f9285e4a5faac1e077ba9d24376141aad8c1eac7d2740563f5dd89c7712ce987',1,'fmt::v5::internal::no_thousands_sep::size()'],['../classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a5f8e41561ce9cdf40e12fcff6431e4b1a2766626dccbf822fd55f5ab488d11932',1,'fmt::v5::internal::add_thousands_sep::size()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html#acbde78e0af19b045db0789256d0e4391',1,'fmt::v5::basic_writer::int_writer::num_writer::size()'],['../structfmt_1_1v5_1_1format__to__n__result.html#a2c99d057867cf7e981ef53845a398f42',1,'fmt::v5::format_to_n_result::size()'],['../classspdlog_1_1details_1_1file__helper.html#ae945d9701134218c2d0558958e9d1cf2',1,'spdlog::details::file_helper::size()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ac4761deba75a7238ae29243b159b9943',1,'fmt::v5::internal::basic_buffer::size()'],['../classfmt_1_1v5_1_1basic__string__view.html#abd82d74b110d5d4f52e0282e4d11fc99',1,'fmt::v5::basic_string_view::size()'],['../classfmt_1_1v5_1_1format__int.html#abe5d90acec7245e6cd0c5d49b4e57f3e',1,'fmt::v5::format_int::size()'],['../classfmt_1_1v5_1_1file.html#a643bffe083c4a257b8752590c70a0539',1,'fmt::v5::file::size()'],['../structfmt_1_1v5_1_1internal_1_1integer__sequence.html#a30390c74b90c382607d05dde0e88da0a',1,'fmt::v5::internal::integer_sequence::size()']]], + ['size_5ftype',['size_type',['../classfmt_1_1v5_1_1basic__format__args.html#a1625ea02e9400218dedfcabfcb924492',1,'fmt::v5::basic_format_args']]], + ['sky_5fblue',['sky_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad06424e64af2d470476a234e12a48a40',1,'fmt::v5']]], + ['slate_5fblue',['slate_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a8f72f2a45cee9a5f2e0afe5d2bb9d4b1',1,'fmt::v5']]], + ['slate_5fgray',['slate_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0af664bac577c1c520c4a98e63457d2f22',1,'fmt::v5']]], + ['sleep_5ffor_5fmillis',['sleep_for_millis',['../namespacespdlog_1_1details_1_1os.html#a56a474fcf965264674346ffdefac0759',1,'spdlog::details::os']]], + ['slot',['slot',['../struct_livox_eth_packet.html#ae37415fbbf43c6ded2b4c03179fcc326',1,'LivoxEthPacket::slot()'],['../struct_device_info.html#a173c3d6efff370751f0027749c253b68',1,'DeviceInfo::slot()'],['../struct_connected_lidar_info.html#a0d7bbe9083fbb2746eca67d6d9eddf9a',1,'ConnectedLidarInfo::slot()'],['../struct_hub_control_slot_power_request.html#a459b32034785ea441ec930f14e696bcd',1,'HubControlSlotPowerRequest::slot()']]], + ['snow',['snow',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a2b93fbdf27d43547bec8794054c28e00',1,'fmt::v5']]], + ['source',['source',['../structspdlog_1_1details_1_1log__msg.html#a607e0014c79c1d39e28b515662ca2ca1',1,'spdlog::details::log_msg::source()'],['../structspdlog_1_1details_1_1async__msg.html#a017a4b18324181e93c1b1606b0158999',1,'spdlog::details::async_msg::source()']]], + ['source_5ffilename_5fformatter',['source_filename_formatter',['../classspdlog_1_1details_1_1source__filename__formatter.html',1,'spdlog::details::source_filename_formatter'],['../classspdlog_1_1details_1_1source__filename__formatter.html#a9feacaecd2eaa3aee5eb992c7334dc9d',1,'spdlog::details::source_filename_formatter::source_filename_formatter()']]], + ['source_5ffuncname_5fformatter',['source_funcname_formatter',['../classspdlog_1_1details_1_1source__funcname__formatter.html',1,'spdlog::details::source_funcname_formatter'],['../classspdlog_1_1details_1_1source__funcname__formatter.html#a1f20c622f780c9f9e8696e9c5960dcb8',1,'spdlog::details::source_funcname_formatter::source_funcname_formatter()']]], + ['source_5flinenum_5fformatter',['source_linenum_formatter',['../classspdlog_1_1details_1_1source__linenum__formatter.html',1,'spdlog::details::source_linenum_formatter'],['../classspdlog_1_1details_1_1source__linenum__formatter.html#ac8899bb5c6919498b71f2575f40ca504',1,'spdlog::details::source_linenum_formatter::source_linenum_formatter()']]], + ['source_5floc',['source_loc',['../structspdlog_1_1source__loc.html',1,'spdlog::source_loc'],['../structspdlog_1_1source__loc.html#a31c69d0d790b00c6f7102b4f8ef826ee',1,'spdlog::source_loc::source_loc()'],['../structspdlog_1_1source__loc.html#abf62ea25b5345f1d9003a50fde8e09d8',1,'spdlog::source_loc::source_loc(const char *filename_in, int line_in, const char *funcname_in)']]], + ['source_5flocation_5fformatter',['source_location_formatter',['../classspdlog_1_1details_1_1source__location__formatter.html',1,'spdlog::details::source_location_formatter'],['../classspdlog_1_1details_1_1source__location__formatter.html#a045946c595dd299307511d89b404fe31',1,'spdlog::details::source_location_formatter::source_location_formatter()']]], + ['spdlog',['spdlog',['../namespacespdlog.html',1,'']]], + ['spdlog_2eh',['spdlog.h',['../spdlog_8h.html',1,'']]], + ['spdlog_5factive_5flevel',['SPDLOG_ACTIVE_LEVEL',['../common_8h.html#ae4fda6f71f35120e2ff48157fca961b5',1,'common.h']]], + ['spdlog_5fandroid_5fretries',['SPDLOG_ANDROID_RETRIES',['../android__sink_8h.html#a8e65ae8a75f7a37ede8942a4311cee5e',1,'android_sink.h']]], + ['spdlog_5fcatch_5fand_5fhandle',['SPDLOG_CATCH_AND_HANDLE',['../logger__impl_8h.html#abeca270216d992ce38ca429b9d66f91b',1,'logger_impl.h']]], + ['spdlog_5fconstexpr',['SPDLOG_CONSTEXPR',['../common_8h.html#a8747e6feba8bf2d3f204cb76bfd4607a',1,'common.h']]], + ['spdlog_5fcritical',['SPDLOG_CRITICAL',['../spdlog_8h.html#ae91dad63ce8e0f912ff58cdd62f60981',1,'spdlog.h']]], + ['spdlog_5fdebug',['SPDLOG_DEBUG',['../spdlog_8h.html#a10a205c2dfdb91688e85c3f49bc671cd',1,'spdlog.h']]], + ['spdlog_5fdeprecated',['SPDLOG_DEPRECATED',['../common_8h.html#a9ad12194a0d42daffd44df91f9854f29',1,'common.h']]], + ['spdlog_5feol',['SPDLOG_EOL',['../os_8h.html#a3c16021694c04b9b7341a9348b6d8dd4',1,'os.h']]], + ['spdlog_5ferror',['SPDLOG_ERROR',['../spdlog_8h.html#a80b7c8b92e366f68d13143165b6ce271',1,'spdlog.h']]], + ['spdlog_5fex',['spdlog_ex',['../classspdlog_1_1spdlog__ex.html',1,'spdlog::spdlog_ex'],['../classspdlog_1_1spdlog__ex.html#a95052672da1a71145ac56d143b751b3f',1,'spdlog::spdlog_ex::spdlog_ex(std::string msg)'],['../classspdlog_1_1spdlog__ex.html#a0758933dd1e6c4c8e76bb8e7134f7d9b',1,'spdlog::spdlog_ex::spdlog_ex(const std::string &msg, int last_errno)']]], + ['spdlog_5ffile_5fbasename',['SPDLOG_FILE_BASENAME',['../common_8h.html#a2cf36a7836e979b59b20edea26135766',1,'common.h']]], + ['spdlog_5ffilename_5ft',['SPDLOG_FILENAME_T',['../os_8h.html#a63d60ea1c1a925d3db13864d37bd2da2',1,'os.h']]], + ['spdlog_5ffunction',['SPDLOG_FUNCTION',['../common_8h.html#a1f0ef27d8fc022078352c93ef310cdb4',1,'common.h']]], + ['spdlog_5finfo',['SPDLOG_INFO',['../spdlog_8h.html#ac123bf94c2532584c1f53a4cde7a27e2',1,'spdlog.h']]], + ['spdlog_5flevel_5fcritical',['SPDLOG_LEVEL_CRITICAL',['../common_8h.html#ac7313aeac75b2d8521f04ba9508b9695',1,'common.h']]], + ['spdlog_5flevel_5fdebug',['SPDLOG_LEVEL_DEBUG',['../common_8h.html#a3966e2839945ed2b8adf9373b7bdd56e',1,'common.h']]], + ['spdlog_5flevel_5ferror',['SPDLOG_LEVEL_ERROR',['../common_8h.html#a6ffd317d15c017cf593212e5441ad70a',1,'common.h']]], + ['spdlog_5flevel_5finfo',['SPDLOG_LEVEL_INFO',['../common_8h.html#a33c73f3639c48dd378b33fabbfd27b7f',1,'common.h']]], + ['spdlog_5flevel_5fnames',['SPDLOG_LEVEL_NAMES',['../common_8h.html#afe938b48c2a5e8816892fbc1841f9694',1,'common.h']]], + ['spdlog_5flevel_5foff',['SPDLOG_LEVEL_OFF',['../common_8h.html#a8f7ec3c49f83b525b8c15d459b1136d0',1,'common.h']]], + ['spdlog_5flevel_5ftrace',['SPDLOG_LEVEL_TRACE',['../common_8h.html#a57ad66f77dc01b41a51f7e884dd460dd',1,'common.h']]], + ['spdlog_5flevel_5fwarn',['SPDLOG_LEVEL_WARN',['../common_8h.html#acff159db380f787b46d9d51d7f9cc69c',1,'common.h']]], + ['spdlog_5flogger_5fcall',['SPDLOG_LOGGER_CALL',['../spdlog_8h.html#af73a1f32ac61071d1e792ca26ec83e4b',1,'spdlog.h']]], + ['spdlog_5flogger_5fcritical',['SPDLOG_LOGGER_CRITICAL',['../spdlog_8h.html#a752190d33981bd64c8a7706d3ba1bc29',1,'spdlog.h']]], + ['spdlog_5flogger_5fdebug',['SPDLOG_LOGGER_DEBUG',['../spdlog_8h.html#ab508bba15a80b3e7a909ed867d3b9320',1,'spdlog.h']]], + ['spdlog_5flogger_5ferror',['SPDLOG_LOGGER_ERROR',['../spdlog_8h.html#a006a17817b05bda3778be8b78348b079',1,'spdlog.h']]], + ['spdlog_5flogger_5finfo',['SPDLOG_LOGGER_INFO',['../spdlog_8h.html#a34ab135d5bc3040c9b60e068c4f33726',1,'spdlog.h']]], + ['spdlog_5flogger_5ftrace',['SPDLOG_LOGGER_TRACE',['../spdlog_8h.html#aadd8d6a6bdd11a1c989346d4777d6c03',1,'spdlog.h']]], + ['spdlog_5flogger_5fwarn',['SPDLOG_LOGGER_WARN',['../spdlog_8h.html#a438c8e890e90f85ad3d832496b8a9493',1,'spdlog.h']]], + ['spdlog_5fnoexcept',['SPDLOG_NOEXCEPT',['../common_8h.html#a15d2dc432e6bb83beb5130be9a4ca8d6',1,'common.h']]], + ['spdlog_5fshort_5flevel_5fnames',['SPDLOG_SHORT_LEVEL_NAMES',['../common_8h.html#ab2ea0d29ee3c1ccb1f9484a8198c59b0',1,'common.h']]], + ['spdlog_5fstrrchr',['SPDLOG_STRRCHR',['../common_8h.html#a30f621e51aba2dfe9f905fd9e2dee918',1,'common.h']]], + ['spdlog_5ftrace',['SPDLOG_TRACE',['../spdlog_8h.html#aac4c18fd6ad8f9a6d9b9793220ab9e92',1,'spdlog.h']]], + ['spdlog_5fver_5fmajor',['SPDLOG_VER_MAJOR',['../version_8h.html#a85b8c2495e0596c728553bff9ea7d3d0',1,'version.h']]], + ['spdlog_5fver_5fminor',['SPDLOG_VER_MINOR',['../version_8h.html#a59fb941b34bcda4ede06be812f0452e9',1,'version.h']]], + ['spdlog_5fver_5fpatch',['SPDLOG_VER_PATCH',['../version_8h.html#a478ac3dbba9c7722f4b5c91f128b6884',1,'version.h']]], + ['spdlog_5fversion',['SPDLOG_VERSION',['../version_8h.html#ad8216958bcd014d9cf2b7b2c1c4c01ac',1,'version.h']]], + ['spdlog_5fwarn',['SPDLOG_WARN',['../spdlog_8h.html#a4bf5ff0686233c37d6bf2233d766d3c8',1,'spdlog.h']]], + ['spec',['spec',['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#ab2e59146a8b73543a67737f28d7eb176',1,'fmt::v5::internal::arg_formatter_base']]], + ['specs_5f',['specs_',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#adc8b8640bbe954506ebf019a8c8ac3e5',1,'fmt::v5::internal::specs_setter']]], + ['specs_5fchecker',['specs_checker',['../classfmt_1_1v5_1_1internal_1_1specs__checker.html',1,'fmt::v5::internal::specs_checker< Handler >'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#afa76923c1c5c5315391d2fd5888cea92',1,'fmt::v5::internal::specs_checker::specs_checker(const Handler &handler, internal::type arg_type)'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#aeca1b02a34ced815eb453609e3906752',1,'fmt::v5::internal::specs_checker::specs_checker(const specs_checker &other)']]], + ['specs_5fhandler',['specs_handler',['../classfmt_1_1v5_1_1internal_1_1specs__handler.html',1,'fmt::v5::internal::specs_handler< Context >'],['../classfmt_1_1v5_1_1internal_1_1specs__handler.html#a932e093eb37337b0985205de75f43ab4',1,'fmt::v5::internal::specs_handler::specs_handler()']]], + ['specs_5fsetter',['specs_setter',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html',1,'fmt::v5::internal::specs_setter< Char >'],['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a21d719b2dfe968433047cb65d91f1bc5',1,'fmt::v5::internal::specs_setter::specs_setter(basic_format_specs< Char > &specs)'],['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#aebafbc2312741d5dd5290df3afadcfe5',1,'fmt::v5::internal::specs_setter::specs_setter(const specs_setter &other)']]], + ['specs_5fsetter_3c_20context_3a_3achar_5ftype_20_3e',['specs_setter< Context::char_type >',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html',1,'fmt::v5::internal']]], + ['specs_5fsetter_3c_20parsecontext_3a_3achar_5ftype_20_3e',['specs_setter< ParseContext::char_type >',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html',1,'fmt::v5::internal']]], + ['split_5fby_5fextension',['split_by_extension',['../classspdlog_1_1details_1_1file__helper.html#a28d87e3f42c52a12c95af0558aca66f2',1,'spdlog::details::file_helper']]], + ['spring_5fgreen',['spring_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a67485a137fce2085007d93aa115cd093',1,'fmt::v5']]], + ['sprintf',['sprintf',['../namespacefmt_1_1v5.html#a6047019507a20aa205cce7a558dcb325',1,'fmt::v5']]], + ['sprintf_5fformat',['sprintf_format',['../namespacefmt_1_1v5_1_1internal.html#a37f320718a8fbb4cf326d075f6332e93',1,'fmt::v5::internal']]], + ['sstring',['sstring',['../classfmt_1_1v5_1_1internal_1_1value.html#a96fdd21add279317263cff9e835c5a97',1,'fmt::v5::internal::value']]], + ['standard',['standard',['../namespacefmt_1_1v5_1_1internal.html#a8217980ba3189c7d8c3ce93f7d8e4c74ac00f0c4675b91fb8b918e4079a0b1bac',1,'fmt::v5::internal']]], + ['start',['Start',['../livox__sdk_8h.html#aa70efaa4751ac6d5d54dce88fe725e0a',1,'livox_sdk.h']]], + ['state',['state',['../struct_device_info.html#a357578f75cb2efc7cac146ea807810dd',1,'DeviceInfo::state()'],['../struct_lidar_mode_request_item.html#a083aff14314c3edf21066dc6eff69c05',1,'LidarModeRequestItem::state()'],['../struct_lidar_state_item.html#a2faf99b3e6f31c613fd7d5c1d76444f7',1,'LidarStateItem::state()'],['../struct_heartbeat_response.html#a9bd7edacb896d6e2a5419ff536ab1ed3',1,'HeartbeatResponse::state()'],['../struct_hub_control_slot_power_request.html#ae682b9d8763fa13bb5b8c85a44b6265f',1,'HubControlSlotPowerRequest::state()']]], + ['state_5flist',['state_list',['../struct_hub_query_lidar_status_response.html#a2f4895d58ae7d62f62eabbe710ee6f57',1,'HubQueryLidarStatusResponse']]], + ['status',['status',['../struct_device_info.html#a1b37aee8b847070b66924d772d1d7edf',1,'DeviceInfo']]], + ['status_5fcode',['status_code',['../union_status_union.html#a75f0636ce9a1b631a2a1e4cc189312a8',1,'StatusUnion']]], + ['statusunion',['StatusUnion',['../union_status_union.html',1,'']]], + ['std',['std',['../namespacestd.html',1,'']]], + ['stderr_5fcolor_5fmt',['stderr_color_mt',['../namespacespdlog.html#ab4647f73157c2a5647097e993eb648f5',1,'spdlog']]], + ['stderr_5fcolor_5fsink_5fmt',['stderr_color_sink_mt',['../namespacespdlog_1_1sinks.html#a58091bb55dd96f7e29ccc044338c054c',1,'spdlog::sinks']]], + ['stderr_5fcolor_5fsink_5fst',['stderr_color_sink_st',['../namespacespdlog_1_1sinks.html#adf8d38fe4201bc8f4b5255c4fbea7aae',1,'spdlog::sinks']]], + ['stderr_5fcolor_5fst',['stderr_color_st',['../namespacespdlog.html#a5564a799e789be1856d238b0d91ecadb',1,'spdlog']]], + ['stderr_5flogger_5fmt',['stderr_logger_mt',['../namespacespdlog.html#a93e154fd1e2eb0dc5a82fb25ce7f11d1',1,'spdlog']]], + ['stderr_5flogger_5fst',['stderr_logger_st',['../namespacespdlog.html#ad2b234c875e76840785f02b189c0d514',1,'spdlog']]], + ['stderr_5fsink_5fmt',['stderr_sink_mt',['../namespacespdlog_1_1sinks.html#afa13b9dbe3db99f4112b17a310dc26de',1,'spdlog::sinks']]], + ['stderr_5fsink_5fst',['stderr_sink_st',['../namespacespdlog_1_1sinks.html#ac7f13feb3827330eb5b5c1998356c798',1,'spdlog::sinks']]], + ['stdout_5fcolor_5fmt',['stdout_color_mt',['../namespacespdlog.html#a903467b7174af13d10f2f29ae9bd4a6e',1,'spdlog']]], + ['stdout_5fcolor_5fsink_5fmt',['stdout_color_sink_mt',['../namespacespdlog_1_1sinks.html#af5b53d274a7f3e3528ef994035cc7204',1,'spdlog::sinks']]], + ['stdout_5fcolor_5fsink_5fst',['stdout_color_sink_st',['../namespacespdlog_1_1sinks.html#ae3eb6549df72c3c46dea34fd35fee93e',1,'spdlog::sinks']]], + ['stdout_5fcolor_5fsinks_2eh',['stdout_color_sinks.h',['../stdout__color__sinks_8h.html',1,'']]], + ['stdout_5fcolor_5fst',['stdout_color_st',['../namespacespdlog.html#a1d20b70d425e5402b3fa6a1b075d1c6d',1,'spdlog']]], + ['stdout_5flogger_5fmt',['stdout_logger_mt',['../namespacespdlog.html#a9a6a99d3309b166a585fe918bd83a442',1,'spdlog']]], + ['stdout_5flogger_5fst',['stdout_logger_st',['../namespacespdlog.html#a5b0d86b010b11ceb3941265779c7998e',1,'spdlog']]], + ['stdout_5fsink',['stdout_sink',['../classspdlog_1_1sinks_1_1stdout__sink.html',1,'spdlog::sinks::stdout_sink< TargetStream, ConsoleMutex >'],['../classspdlog_1_1sinks_1_1stdout__sink.html#aadb52e8ba9e2992f847c46ec521b4407',1,'spdlog::sinks::stdout_sink::stdout_sink()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#ab7761f533c069ef52a256573de29077d',1,'spdlog::sinks::stdout_sink::stdout_sink(const stdout_sink &other)=delete']]], + ['stdout_5fsink_5fmt',['stdout_sink_mt',['../namespacespdlog_1_1sinks.html#a029d085d53a8f4ee99ba223f34bcfb28',1,'spdlog::sinks']]], + ['stdout_5fsink_5fst',['stdout_sink_st',['../namespacespdlog_1_1sinks.html#a98a1a892c6c8f44d89f2ec13e8a7f2c4',1,'spdlog::sinks']]], + ['stdout_5fsinks_2eh',['stdout_sinks.h',['../stdout__sinks_8h.html',1,'']]], + ['steel_5fblue',['steel_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a00885bc107cec87940dfe4beadbab382',1,'fmt::v5']]], + ['store',['store',['../structspdlog_1_1details_1_1null__atomic__int.html#a75c74956220ca5cc82a4eedcd9aa854f',1,'spdlog::details::null_atomic_int']]], + ['str',['str',['../classfmt_1_1v5_1_1format__int.html#a0266f0b79afac987c1cbdf41bc1a5413',1,'fmt::v5::format_int']]], + ['stream',['stream',['../structspdlog_1_1details_1_1console__stdout.html#a949fac14432044c2b3f5186a0693b306',1,'spdlog::details::console_stdout::stream()'],['../structspdlog_1_1details_1_1console__stderr.html#a7e5e8197fac999d0e215e56a3116d1fc',1,'spdlog::details::console_stderr::stream()']]], + ['strerror_5fr',['strerror_r',['../format-inl_8h.html#a8307cb500850a7c5033cf64702e15990',1,'format-inl.h']]], + ['strerror_5fs',['strerror_s',['../format-inl_8h.html#a3bbfb7ce6b764966d8cf5d018589375e',1,'format-inl.h']]], + ['strftime',['strftime',['../namespacefmt_1_1v5_1_1internal.html#ace84933f6d3627afab3d2bb1e390ef88',1,'fmt::v5::internal::strftime(char *str, std::size_t count, const char *format, const std::tm *time)'],['../namespacefmt_1_1v5_1_1internal.html#ab27295a888e64801971a06ab9f89ece0',1,'fmt::v5::internal::strftime(wchar_t *str, std::size_t count, const wchar_t *format, const std::tm *time)']]], + ['strikethrough',['strikethrough',['../namespacefmt_1_1v5.html#a3c18bfe3f941ca2b94688cb6d54f1cecaae9a363b2dfa9181da7ffde8e37813b5',1,'fmt::v5']]], + ['string',['string',['../classfmt_1_1v5_1_1internal_1_1value.html#aaa7bee65d796b1212dc35e2b9cc721d3',1,'fmt::v5::internal::value']]], + ['string_5ftype',['string_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a28edcc9fc66b5c65a8c9b89975164568',1,'fmt::v5::internal']]], + ['string_5fvalue',['string_value',['../structfmt_1_1v5_1_1internal_1_1string__value.html',1,'fmt::v5::internal']]], + ['string_5fvalue_3c_20char_5ftype_20_3e',['string_value< char_type >',['../structfmt_1_1v5_1_1internal_1_1string__value.html',1,'fmt::v5::internal']]], + ['string_5fvalue_3c_20signed_20char_20_3e',['string_value< signed char >',['../structfmt_1_1v5_1_1internal_1_1string__value.html',1,'fmt::v5::internal']]], + ['string_5fvalue_3c_20unsigned_20char_20_3e',['string_value< unsigned char >',['../structfmt_1_1v5_1_1internal_1_1string__value.html',1,'fmt::v5::internal']]], + ['string_5fview',['string_view',['../namespacefmt_1_1v5.html#a3301ccbf6a0ab1b233242041a835a54a',1,'fmt::v5']]], + ['string_5fview_5ft',['string_view_t',['../namespacespdlog.html#af48e310b2f366ac6544701e6a3b56247',1,'spdlog']]], + ['sub_5freceiver',['sub_receiver',['../structlivox_1_1_comm_packet.html#ad48ad41ffbcd6ae5794668ba8c02f709',1,'livox::CommPacket']]], + ['sub_5fsender',['sub_sender',['../structlivox_1_1_comm_packet.html#a54efd9bf0a8bcd7f3e54219dce99f966',1,'livox::CommPacket']]], + ['synchronous_5ffactory',['synchronous_factory',['../structspdlog_1_1synchronous__factory.html',1,'spdlog']]], + ['syslog_5flogger_5fmt',['syslog_logger_mt',['../namespacespdlog.html#a49974c7465d12f994929f70c0caeeb7c',1,'spdlog']]], + ['syslog_5flogger_5fst',['syslog_logger_st',['../namespacespdlog.html#a2b5f25193cf4478d74cf9402a120c902',1,'spdlog']]], + ['syslog_5fsink',['syslog_sink',['../classspdlog_1_1sinks_1_1syslog__sink.html',1,'spdlog::sinks::syslog_sink< Mutex >'],['../classspdlog_1_1sinks_1_1syslog__sink.html#acc60de632a07b329aeba41ee48ced4f6',1,'spdlog::sinks::syslog_sink::syslog_sink(std::string ident="", int syslog_option=0, int syslog_facility=LOG_USER)'],['../classspdlog_1_1sinks_1_1syslog__sink.html#a505adae200592eab1e093ab258ad0291',1,'spdlog::sinks::syslog_sink::syslog_sink(const syslog_sink &)=delete']]], + ['syslog_5fsink_2eh',['syslog_sink.h',['../syslog__sink_8h.html',1,'']]], + ['syslog_5fsink_5fmt',['syslog_sink_mt',['../namespacespdlog_1_1sinks.html#a6674644a4ab8a7579e45bd79dc107a70',1,'spdlog::sinks']]], + ['syslog_5fsink_5fst',['syslog_sink_st',['../namespacespdlog_1_1sinks.html#a83f4d6616a2fbf3473a6a979647b5139',1,'spdlog::sinks']]], + ['system_5ferror',['system_error',['../classfmt_1_1v5_1_1system__error.html',1,'fmt::v5::system_error'],['../classfmt_1_1v5_1_1system__error.html#afab23543db82d4cebb222ac5582c29f4',1,'fmt::v5::system_error::system_error()'],['../classfmt_1_1v5_1_1system__error.html#ae0c11bcd7a213bd3cd259393cd73fc45',1,'fmt::v5::system_error::system_error(int error_code, string_view message, const Args &... args)']]] ]; diff --git a/docs/search/all_15.js b/docs/search/all_15.js index c8be251..0828683 100644 --- a/docs/search/all_15.js +++ b/docs/search/all_15.js @@ -1,18 +1,48 @@ var searchData= [ - ['u8string_5fview',['u8string_view',['../classfmt_1_1v5_1_1u8string__view.html',1,'fmt::v5::u8string_view'],['../classfmt_1_1v5_1_1u8string__view.html#ace3a1b7f6bca7b364411dd7bca8eb666',1,'fmt::v5::u8string_view::u8string_view(const char *s)'],['../classfmt_1_1v5_1_1u8string__view.html#a7d8fc1c8138683c75574261561e78652',1,'fmt::v5::u8string_view::u8string_view(const char *s, size_t count)']]], - ['uint_5ftype',['uint_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a9c9273f21d9f37b64f17801628d44633',1,'fmt::v5::internal']]], - ['uint_5fvalue',['uint_value',['../classfmt_1_1v5_1_1internal_1_1value.html#aea22330ef411f765099b2962090e56d4',1,'fmt::v5::internal::value']]], - ['ulong_5flong_5ftype',['ulong_long_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a23b2dd85fe035d41a5e93822e346d277',1,'fmt::v5::internal']]], - ['ulong_5flong_5fvalue',['ulong_long_value',['../classfmt_1_1v5_1_1internal_1_1value.html#a6f80a37fd412337e895740ed124e66c3',1,'fmt::v5::internal::value']]], - ['ulong_5ftype',['ulong_type',['../namespacefmt_1_1v5_1_1internal.html#ad4b210aa357f1518a14acd748f576a27',1,'fmt::v5::internal']]], - ['underline',['underline',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a22d86f2cb36da074052308603f058764',1,'spdlog::sinks::ansicolor_sink::underline()'],['../namespacefmt_1_1v5.html#a3c18bfe3f941ca2b94688cb6d54f1ceca6dc7b4483f8c2c701a48e42db552806d',1,'fmt::v5::underline()']]], - ['uninit',['Uninit',['../livox__sdk_8h.html#affc0f591b5f188f1b5cb4f20042e4766',1,'livox_sdk.h']]], - ['unlock',['unlock',['../structspdlog_1_1details_1_1null__mutex.html#acbc27862ec43b4b0e9c8f5197174f95f',1,'spdlog::details::null_mutex']]], - ['updatecachewridx',['UpdateCacheWrIdx',['../classlivox_1_1_comm_port.html#ab520a4434c8e19868cf3bab6c229ab7d',1,'livox::CommPort']]], - ['upper',['upper',['../structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#a4d9d74312532c965bddc7eb88d79600d',1,'fmt::v5::internal::gen_digits_params::upper()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a3017f14a9d0c5b1d84d2929e3aef1735',1,'fmt::v5::float_spec_handler::upper()']]], - ['use_5fuppercase',['use_uppercase',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a0974264e6edcc83c7c191f34d2ce4781',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]], - ['ustring',['ustring',['../classfmt_1_1v5_1_1internal_1_1value.html#a31afcc8ff22723835e02b0ada26c1976',1,'fmt::v5::internal::value']]], - ['utc',['utc',['../namespacespdlog.html#ad598fbd8338772e66ae09e8723a07ceda52d33cb937bbdab234ab1729a0f8225b',1,'spdlog']]], - ['utc_5fminutes_5foffset',['utc_minutes_offset',['../namespacespdlog_1_1details_1_1os.html#a6dce662c3a4ea0b6e95468272ec37047',1,'spdlog::details::os']]] + ['t_5fformatter',['T_formatter',['../classspdlog_1_1details_1_1_t__formatter.html',1,'spdlog::details::T_formatter'],['../classspdlog_1_1details_1_1t__formatter.html',1,'spdlog::details::t_formatter'],['../classspdlog_1_1details_1_1_t__formatter.html#affd0c9557cd9649339f10abd943608ff',1,'spdlog::details::T_formatter::T_formatter()'],['../classspdlog_1_1details_1_1t__formatter.html#a8cd4b638e72934a3ca2517d00e2aa06b',1,'spdlog::details::t_formatter::t_formatter()']]], + ['tan',['tan',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5b2d4484498235e80d61a233a7c04991',1,'fmt::v5']]], + ['teal',['teal',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a3c4184e82bb3be8fa32669800fb7373c',1,'fmt::v5']]], + ['term_5fcolor',['term_color',['../unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html#a73e951d1431fc31480ac83271d7bf821',1,'fmt::v5::internal::color_type::color_union']]], + ['terminal_5fcolor',['terminal_color',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fba',1,'fmt::v5']]], + ['terminate',['terminate',['../namespacespdlog_1_1details.html#a22274995cf879a5d0a08d1f7513ee4fba1459e53d3fbaa95cebaf90860dd7a259',1,'spdlog::details']]], + ['test_5fstream',['test_stream',['../structfmt_1_1v5_1_1internal_1_1test__stream.html',1,'fmt::v5::internal']]], + ['text_5fstyle',['text_style',['../classfmt_1_1v5_1_1text__style.html',1,'fmt::v5::text_style'],['../classfmt_1_1v5_1_1text__style.html#a55feba93f4dbd6d9d8f6f357dc4b2860',1,'fmt::v5::text_style::text_style()']]], + ['thistle',['thistle',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a94ec2b8d73527db3da316ad28195219e',1,'fmt::v5']]], + ['thousands_5fsep',['thousands_sep',['../namespacefmt_1_1v5_1_1internal.html#a22384733f113ad46c4b287aee4d19719',1,'fmt::v5::internal::thousands_sep(locale_ref loc)'],['../namespacefmt_1_1v5_1_1internal.html#a3e0d5b65fb0f03b9d75a8210ff3ffcd1',1,'fmt::v5::internal::thousands_sep(locale_ref loc)']]], + ['thousands_5fsep_5fimpl',['thousands_sep_impl',['../namespacefmt_1_1v5_1_1internal.html#a80875403133fef6385e50480459b1136',1,'fmt::v5::internal']]], + ['thread_5fid',['thread_id',['../structspdlog_1_1details_1_1log__msg.html#ab8474cd689276f61021bca37e1993eef',1,'spdlog::details::log_msg::thread_id()'],['../structspdlog_1_1details_1_1async__msg.html#aac1c8c51a83bae076197a384d26b8814',1,'spdlog::details::async_msg::thread_id()'],['../namespacespdlog_1_1details_1_1os.html#a74d5902dc227aa662ade3eac75d03c81',1,'spdlog::details::os::thread_id()']]], + ['thread_5fpool',['thread_pool',['../classspdlog_1_1details_1_1thread__pool.html',1,'spdlog::details::thread_pool'],['../classspdlog_1_1details_1_1thread__pool.html#a2ac821eb936f7373cc51949fb05e841c',1,'spdlog::details::thread_pool::thread_pool(size_t q_max_items, size_t threads_n)'],['../classspdlog_1_1details_1_1thread__pool.html#a5e8f86d40f81af1d22a21ee0368287b2',1,'spdlog::details::thread_pool::thread_pool(const thread_pool &)=delete'],['../namespacespdlog.html#a6676a1ffb5ea174a2392ab0317bbcff2',1,'spdlog::thread_pool()']]], + ['thread_5fpool_2eh',['thread_pool.h',['../thread__pool_8h.html',1,'']]], + ['time',['time',['../structspdlog_1_1details_1_1log__msg.html#a25fadb26e6ce94657af5475d4a581313',1,'spdlog::details::log_msg::time()'],['../structspdlog_1_1details_1_1async__msg.html#a00cfea0e28fb046d77da1df09d6410b4',1,'spdlog::details::async_msg::time()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ac229529f4628b228142ad3babb581225',1,'fmt::v5::internal::chrono_formatter::time()']]], + ['time_2eh',['time.h',['../time_8h.html',1,'']]], + ['time_5ffraction',['time_fraction',['../namespacespdlog_1_1details_1_1fmt__helper.html#a27585b20ce58cd861f4e37be0057cc41',1,'spdlog::details::fmt_helper']]], + ['timestamp',['timestamp',['../struct_livox_eth_packet.html#a0ee766e1efde1b362cb10ad3c5a489ce',1,'LivoxEthPacket']]], + ['timestamp_5ftype',['timestamp_type',['../struct_livox_eth_packet.html#aa2694b179be57520cf2173b0c680d58d',1,'LivoxEthPacket']]], + ['timestamptype',['TimestampType',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0',1,'livox_def.h']]], + ['tm_5fformat',['tm_format',['../structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#a0974bc78aab514b37ccfa573cd8400c6',1,'fmt::v5::formatter< std::tm, Char >']]], + ['to12h',['to12h',['../namespacespdlog_1_1details.html#adc1e7c142665b3801b5797f9c8b77bfa',1,'spdlog::details']]], + ['to_5fchar8_5ft',['to_char8_t',['../namespacefmt_1_1v5_1_1internal.html#adc534aad72fd5f9db229cc9edf622771',1,'fmt::v5::internal']]], + ['to_5fhex',['to_hex',['../namespacespdlog.html#acd3f4323bb627945b4cecbbbc62770ef',1,'spdlog::to_hex(const Container &container)'],['../namespacespdlog.html#a3730108d5b1a43b30f8ddf32404b9d25',1,'spdlog::to_hex(const It range_begin, const It range_end)']]], + ['to_5fint',['to_int',['../namespacefmt_1_1v5_1_1internal.html#aeaa4eca77afc74c176ac1a1b941105f7',1,'fmt::v5::internal']]], + ['to_5flog_5fmsg',['to_log_msg',['../structspdlog_1_1details_1_1async__msg.html#a2c5c21ef52bd0b7241ed6ac56f480fd2',1,'spdlog::details::async_msg']]], + ['to_5fshort_5fc_5fstr',['to_short_c_str',['../namespacespdlog_1_1level.html#a320d85598eda29f072e343e57ec27ab8',1,'spdlog::level']]], + ['to_5fstring',['to_string',['../namespacefmt_1_1v5.html#af7906102d07e0d93b609aef6c05fc27a',1,'fmt::v5::to_string(const T &value)'],['../namespacefmt_1_1v5.html#a07522969fe4d2aefef29e120aee66257',1,'fmt::v5::to_string(const basic_memory_buffer< Char, SIZE > &buf)']]], + ['to_5fstring_5fview',['to_string_view',['../namespacespdlog_1_1level.html#a1ed786fe4b8a5babc3aeaa3eba9a9921',1,'spdlog::level::to_string_view()'],['../namespacespdlog_1_1details_1_1fmt__helper.html#aa2b4191cb8c40474fb61787ad67face5',1,'spdlog::details::fmt_helper::to_string_view()'],['../namespacefmt_1_1v5.html#a29e4c9965f74e7f2bb6f75d7153468b6',1,'fmt::v5::to_string_view(basic_string_view< Char > s)'],['../namespacefmt_1_1v5.html#a5b47584a9e90ebd6460675a6c1d6b238',1,'fmt::v5::to_string_view(const std::basic_string< Char > &s)'],['../namespacefmt_1_1v5.html#ab264eb8eb9841f0cee5af4284196a4cc',1,'fmt::v5::to_string_view(const Char *s)'],['../namespacefmt_1_1v5.html#a1fcfd29b295417c3eb7395c4df6ea1f9',1,'fmt::v5::to_string_view(const S &s)'],['../namespacefmt_1_1v5_1_1internal.html#a4b4263d060da175d7113962ebfd37819',1,'fmt::v5::internal::to_string_view()']]], + ['to_5funsigned',['to_unsigned',['../namespacefmt_1_1v5_1_1internal.html#abef3b695050c4132b4fc4d7f256b9580',1,'fmt::v5::internal']]], + ['to_5fwstring',['to_wstring',['../namespacefmt_1_1v5.html#aab6607dc16d02c9f81d025f93a15caa4',1,'fmt::v5']]], + ['tomato',['tomato',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a006f87892f47ef9aa60fa5ed01a440fb',1,'fmt::v5']]], + ['tp_5fmutex',['tp_mutex',['../classspdlog_1_1details_1_1registry.html#a0fddfd080598f35c675d618cb5e414c6',1,'spdlog::details::registry']]], + ['trace',['trace',['../classspdlog_1_1logger.html#a59a8516fe055c6b78c9b1822148f78ec',1,'spdlog::logger::trace(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#a66e008d30a46c33283c4546f3851a80a',1,'spdlog::logger::trace(const T &msg)'],['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8badd5891a1416461ee9e7d7e19d41af51f',1,'spdlog::level::trace()'],['../namespacespdlog.html#a0ec6777ea7982bcf7cf85b87b0619b56',1,'spdlog::trace(const char *fmt, const Args &... args)'],['../namespacespdlog.html#a99302a3f872e2cba98f81ac1a2f63321',1,'spdlog::trace(const T &msg)']]], + ['trailing_5fzeros',['trailing_zeros',['../structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#af94ccb0990229d78c551373b07abb3b2',1,'fmt::v5::internal::gen_digits_params']]], + ['truncating_5fiterator',['truncating_iterator',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator.html',1,'fmt::v5::internal::truncating_iterator< OutputIt, Enable >'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a5a99af3c33a7e15fcaa77a387a70c4f7',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::false_type >::truncating_iterator()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a9284d872ba9a7fc8e42a9d9a5d7777de',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::truncating_iterator()']]], + ['truncating_5fiterator_3c_20outputit_2c_20std_3a_3afalse_5ftype_20_3e',['truncating_iterator< OutputIt, std::false_type >',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html',1,'fmt::v5::internal']]], + ['truncating_5fiterator_3c_20outputit_2c_20std_3a_3atrue_5ftype_20_3e',['truncating_iterator< OutputIt, std::true_type >',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html',1,'fmt::v5::internal']]], + ['truncating_5fiterator_5fbase',['truncating_iterator_base',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html',1,'fmt::v5::internal::truncating_iterator_base< OutputIt >'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a9722e33a6fdfb563b8db59829f133711',1,'fmt::v5::internal::truncating_iterator_base::truncating_iterator_base()']]], + ['try_5flock',['try_lock',['../structspdlog_1_1details_1_1null__mutex.html#a1e367b1adaa6305edbe163c4d2021c53',1,'spdlog::details::null_mutex']]], + ['turquoise',['turquoise',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0adcbb31fdf774bcd3f09d54c4487377c0',1,'fmt::v5']]], + ['tweakme_2eh',['tweakme.h',['../tweakme_8h.html',1,'']]], + ['type',['type',['../structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html#a75a66079d518f0f269c6be9baa8bccd9',1,'fmt::v5::internal::result_of< F(Args...)>::type()'],['../structfmt_1_1v5_1_1internal_1_1char__t.html#a096fd6ceeb1d27e1a62b6afeb611f391',1,'fmt::v5::internal::char_t::type()'],['../structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html#a14ceeeb9b78679fea87df36298fc5603',1,'fmt::v5::basic_format_context::formatter_type::type()'],['../structfmt_1_1v5_1_1buffer__context.html#ac7c75596798b17dd1e05f905bf74b619',1,'fmt::v5::buffer_context::type()'],['../structfmt_1_1v5_1_1internal_1_1function_1_1result.html#a10b35177d5430fc9e9fee0301fa43ff2',1,'fmt::v5::internal::function::result::type()'],['../structfmt_1_1v5_1_1internal_1_1checked.html#ae50049ee2def62be6532372564182cac',1,'fmt::v5::internal::checked::type()'],['../structfmt_1_1v5_1_1internal_1_1void__.html#a574c59a1964f87565829257845c51023',1,'fmt::v5::internal::void_::type()'],['../structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html#a76ab7e80d700bce301256059f7a38489',1,'fmt::v5::internal::it_category< T * >::type()'],['../structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html#a40cd1ec991c81ebc79830a3e94f1f0d0',1,'fmt::v5::internal::it_category< T, typename void_< typename T::iterator_category >::type >::type()'],['../structfmt_1_1v5_1_1format__context__t.html#a3a779c0aeb8ba0ea1aed0b8c3b3b53c1',1,'fmt::v5::format_context_t::type()'],['../structfmt_1_1v5_1_1format__args__t.html#aa4f31b5332a6cdd12d1b7a7e766770dd',1,'fmt::v5::format_args_t::type()'],['../structfmt_1_1v5_1_1format__to__n__args.html#a68938d8d3d0df2ee1150ceba97964bc4',1,'fmt::v5::format_to_n_args::type()'],['../structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html#a0a5557a4a92010b0e997e82ea7a4bc9d',1,'fmt::v5::internal::make_unsigned_or_bool< bool >::type()'],['../structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html#ad84f4ee9d13cc381c864382cae010501',1,'fmt::v5::basic_printf_context::formatter_type::type()'],['../structfmt_1_1v5_1_1basic__printf__context__t.html#ae71e6b5fec9b62fb22733b5f40ed5d23',1,'fmt::v5::basic_printf_context_t::type()'],['../struct_device_info.html#af9a47cb52e6df99dd0705a6b2bfa8f04',1,'DeviceInfo::type()'],['../structfmt_1_1v5_1_1core__format__specs.html#ae8225c1b5ab54383472fed40c9ccf4b6',1,'fmt::v5::core_format_specs::type()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a48e693571ddc346ae7fae88fe7902932',1,'fmt::v5::float_spec_handler::type()'],['../classfmt_1_1v5_1_1basic__format__arg.html#aa66a8b06ab57c780dea7b1759da404a3',1,'fmt::v5::basic_format_arg::type()'],['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13',1,'fmt::v5::internal::type()']]], + ['type_5ftag',['type_tag',['../structfmt_1_1v5_1_1internal_1_1init.html#adc568107405c8c92081c28f5961d76d7',1,'fmt::v5::internal::init']]], + ['types',['TYPES',['../classfmt_1_1v5_1_1format__arg__store.html#aa3c5724940de9479c8a707ed802c792b',1,'fmt::v5::format_arg_store']]] ]; diff --git a/docs/search/all_16.js b/docs/search/all_16.js index 6359b0d..c8be251 100644 --- a/docs/search/all_16.js +++ b/docs/search/all_16.js @@ -1,25 +1,18 @@ var searchData= [ - ['v_5fformatter',['v_formatter',['../classspdlog_1_1details_1_1v__formatter.html',1,'spdlog::details::v_formatter'],['../classspdlog_1_1details_1_1v__formatter.html#a54e77c3b682da6b1417f6a2adb23b018',1,'spdlog::details::v_formatter::v_formatter()']]], - ['val',['val',['../structfmt_1_1v5_1_1internal_1_1init.html#a3d9e6c757b3ee6700cf3c04fe8eedc24',1,'fmt::v5::internal::init']]], - ['value',['value',['../classfmt_1_1v5_1_1internal_1_1value.html',1,'fmt::v5::internal::value< Context >'],['../structspdlog_1_1details_1_1null__atomic__int.html#ab433069a53cdd1402dc7b0b942d7095f',1,'spdlog::details::null_atomic_int::value()'],['../structfmt_1_1v5_1_1internal_1_1color__type.html#adf5946407d6fd20727ce475d2843a4b7',1,'fmt::v5::internal::color_type::value()'],['../structfmt_1_1v5_1_1internal_1_1string__value.html#a8e48ccdd962f1e5e0bb22d6759428f91',1,'fmt::v5::internal::string_value::value()'],['../structfmt_1_1v5_1_1internal_1_1custom__value.html#adae3c0875aa70ef39a434d0e9756ae12',1,'fmt::v5::internal::custom_value::value()'],['../structfmt_1_1v5_1_1internal_1_1get__type.html#af088bfff6645d7e54268061ca31b9d2f',1,'fmt::v5::internal::get_type::value()'],['../structfmt_1_1v5_1_1internal_1_1named__arg.html#a4fb6611dcd33787450c3e489dd0a380f',1,'fmt::v5::internal::named_arg::value()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#a3ec107f4cdd14d0eb7f1ae2a072b0c89',1,'fmt::v5::internal::arg_formatter_base::char_spec_handler::value()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a677c073f250fe756706c602548846794',1,'fmt::v5::internal::arg_formatter_base::cstring_spec_handler::value()'],['../structfmt_1_1v5_1_1internal_1_1is__integer.html#a86045dee4e1516ba984f9a7a73a8d784a628cfe22762b11844211a37c4bb2f264',1,'fmt::v5::internal::is_integer::value()'],['../classfmt_1_1v5_1_1internal_1_1is__output__iterator.html#aa4d927007ddeb8efaa78d8b164ec5549',1,'fmt::v5::internal::is_output_iterator::value()'],['../classfmt_1_1v5_1_1internal_1_1is__streamable.html#af3b5a08eb5d6d8a5ff5656171f041b42',1,'fmt::v5::internal::is_streamable::value()'],['../structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html#a403828199f69d91f17e0dd2cd0b0026f',1,'fmt::v5::convert_to_int< T, Char, void >::value()'],['../classfmt_1_1v5_1_1internal_1_1is__like__std__string.html#ae56f2f4d49852e70c3e36107ed9b62ed',1,'fmt::v5::internal::is_like_std_string::value()'],['../classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html#a02f7ed6f598f73178ddc2f3a761dc77e',1,'fmt::v5::internal::is_tuple_like_::value()'],['../structfmt_1_1v5_1_1is__tuple__like.html#a26f4317573be02eefa4019c093bfa8a8',1,'fmt::v5::is_tuple_like::value()'],['../structfmt_1_1v5_1_1is__range.html#a57f5c1ea66af4636e56a441636dd4fb3',1,'fmt::v5::is_range::value()'],['../classfmt_1_1v5_1_1internal_1_1value.html#ad27b872dc092249a541f517f5f2157d7',1,'fmt::v5::internal::value::value(int val=0)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a3f87c938b3db0f2f31e6f4fa517d85eb',1,'fmt::v5::internal::value::value(unsigned val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a9c1c70838798225c536727bc6bf125bc',1,'fmt::v5::internal::value::value(long long val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#aae5d0d1372c0bfcd51c929bdc70fe139',1,'fmt::v5::internal::value::value(unsigned long long val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a104a4d2d5dd02f9dab13c911f7e87cb7',1,'fmt::v5::internal::value::value(double val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a4617949bd5f9aeb22e51ab3c278aabaa',1,'fmt::v5::internal::value::value(long double val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a00ca42d8559d880b30ecd06f0aaa78fa',1,'fmt::v5::internal::value::value(const char_type *val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a8a1749aa5371e7d0c25ca2f99edf6b47',1,'fmt::v5::internal::value::value(const signed char *val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#ad93ad99163bd8ebc4a985298dace4a56',1,'fmt::v5::internal::value::value(const unsigned char *val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a77d470cccc7a2fa754a1abce3daed5d6',1,'fmt::v5::internal::value::value(basic_string_view< char_type > val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a3a77ac045f2ccd3165589946f822513b',1,'fmt::v5::internal::value::value(const void *val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#ac7edf7c1b544ebdf7b355a0b50a26d51',1,'fmt::v5::internal::value::value(const T &val)']]], - ['value_3c_20basic_5fformat_5fcontext_3c_20outputit_2c_20char_20_3e_20_3e',['value< basic_format_context< OutputIt, Char > >',['../classfmt_1_1v5_1_1internal_1_1value.html',1,'fmt::v5::internal']]], - ['value_3c_20basic_5fprintf_5fcontext_3c_20outputit_2c_20char_2c_20argformatter_20_3e_20_3e',['value< basic_printf_context< OutputIt, Char, ArgFormatter > >',['../classfmt_1_1v5_1_1internal_1_1value.html',1,'fmt::v5::internal']]], - ['value_3c_20format_5fcontext_20_3e',['value< format_context >',['../classfmt_1_1v5_1_1internal_1_1value.html',1,'fmt::v5::internal']]], - ['value_3c_20wformat_5fcontext_20_3e',['value< wformat_context >',['../classfmt_1_1v5_1_1internal_1_1value.html',1,'fmt::v5::internal']]], - ['value_5ftype',['value_type',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a7c82c2c4e3782e9770d45d564f9425a5',1,'fmt::v5::internal::basic_buffer::value_type()'],['../classfmt_1_1v5_1_1output__range.html#acd03d46c6de53cdc7dccc5890a9df377',1,'fmt::v5::output_range::value_type()'],['../classfmt_1_1v5_1_1back__insert__range.html#a7dbc83149304d1f6fff9d3ba81cc4e23',1,'fmt::v5::back_insert_range::value_type()'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#aecaa097e427d00d791de417e5ea9034c',1,'fmt::v5::basic_memory_buffer::value_type()'],['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a13f8c5691061c696945f38159080fe2e',1,'fmt::v5::internal::counting_iterator::value_type()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a5f21fb8af92548caefb494b1e49814b6',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::false_type >::value_type()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#af1785abde70457e336e28c9e3640e155',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::value_type()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ad9177a447cdfc48f030f67a43ba3950c',1,'fmt::v5::internal::null_terminating_iterator::value_type()'],['../structfmt_1_1v5_1_1internal_1_1integer__sequence.html#af7229e271e3b302e82cc70067c2bffbd',1,'fmt::v5::internal::integer_sequence::value_type()'],['../structfmt_1_1v5_1_1internal_1_1get__type.html#a3e8fae3e67d4ec2f6af456a51a6cff16',1,'fmt::v5::internal::get_type::value_type()']]], - ['values_5f',['values_',['../classfmt_1_1v5_1_1basic__format__args.html#a7dd4ac1a1a0513a1b567d2c6251656a7',1,'fmt::v5::basic_format_args']]], - ['version',['version',['../struct_livox_eth_packet.html#a54a66559fe0ec191d5d11fca61fd3dd1',1,'LivoxEthPacket::version()'],['../struct_connected_lidar_info.html#a1516c8ab627363ff3a2224f5ee142226',1,'ConnectedLidarInfo::version()']]], - ['version_2eh',['version.h',['../version_8h.html',1,'']]], - ['vformat',['vformat',['../namespacefmt_1_1v5_1_1internal.html#a8561b3876ffaedaf2b94f434da083c34',1,'fmt::v5::internal::vformat()'],['../namespacefmt_1_1v5.html#afbb941ac362fc08798ab3f9b1303f88f',1,'fmt::v5::vformat()'],['../namespacefmt_1_1v5_1_1internal.html#a8baee03ce41dc9ba8e176f5995c768fc',1,'fmt::v5::internal::vformat()'],['../namespacefmt_1_1v5.html#a1f5ac8e91b7e7ded10e2dadab4fc6330',1,'fmt::v5::vformat()']]], - ['vformat_5fto',['vformat_to',['../namespacefmt_1_1v5_1_1internal.html#ac0cedf42ad81436f35151f2173458d61',1,'fmt::v5::internal::vformat_to()'],['../namespacefmt_1_1v5.html#a2ae33062c35ef4ccc25efa805d35fdae',1,'fmt::v5::vformat_to(std::back_insert_iterator< Container > out, const S &format_str, basic_format_args< typename buffer_context< typename char_t< S >::type >::type > args)'],['../namespacefmt_1_1v5.html#a8634a26fe8408d673308c0fcdea0c6b2',1,'fmt::v5::vformat_to(typename ArgFormatter::range out, basic_string_view< Char > format_str, basic_format_args< Context > args, internal::locale_ref loc=internal::locale_ref())'],['../namespacefmt_1_1v5.html#a98b8a6fbc7cd86c22d8e2cb0c700665e',1,'fmt::v5::vformat_to(internal::basic_buffer< Char > &buf, const S &format_str, basic_format_args< typename buffer_context< Char >::type > args)'],['../namespacefmt_1_1v5.html#ac849a4087b1f888c968321696bf114ca',1,'fmt::v5::vformat_to(OutputIt out, const String &format_str, typename format_args_t< OutputIt, typename char_t< String >::type >::type args)'],['../namespacefmt_1_1v5_1_1internal.html#a96656f2873d811372570d14b911799c9',1,'fmt::v5::internal::vformat_to()'],['../namespacefmt_1_1v5.html#a8ccdf1f18a293a1db7c718039d9d91a4',1,'fmt::v5::vformat_to()']]], - ['vformat_5fto_5fn',['vformat_to_n',['../namespacefmt_1_1v5.html#a8df5e9fe475de8e789a43b8a40d60541',1,'fmt::v5']]], - ['vfprintf',['vfprintf',['../namespacefmt_1_1v5.html#a64d11550059be9a7d0dcc73dfa9b7821',1,'fmt::v5::vfprintf(std::FILE *f, const S &format, basic_format_args< typename basic_printf_context_t< internal::basic_buffer< Char >>::type > args)'],['../namespacefmt_1_1v5.html#ad3b38575efbc58494272ed75b8e50d39',1,'fmt::v5::vfprintf(std::basic_ostream< Char > &os, const S &format, basic_format_args< typename basic_printf_context_t< internal::basic_buffer< Char >>::type > args)']]], - ['violet',['violet',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad1d813a48d99f0e102f7d0a1b9068001',1,'fmt::v5']]], - ['visit',['visit',['../namespacefmt_1_1v5.html#a4558083081ed076bb18d5e216af90c86',1,'fmt::v5']]], - ['visit_5fformat_5farg',['visit_format_arg',['../classfmt_1_1v5_1_1basic__format__arg.html#aeab7b1649adaa52475e1a72806a0b849',1,'fmt::v5::basic_format_arg::visit_format_arg()'],['../namespacefmt_1_1v5.html#acedd512a780532f842377b6f166a4bab',1,'fmt::v5::visit_format_arg()']]], - ['void_5f',['void_',['../structfmt_1_1v5_1_1internal_1_1void__.html',1,'fmt::v5::internal']]], - ['vprint',['vprint',['../classfmt_1_1v5_1_1buffered__file.html#ae90c624636ac4919eb5c8a38e6393315',1,'fmt::v5::buffered_file::vprint()'],['../namespacefmt_1_1v5.html#a4df07cd85241561a9b8ce9a7351b1606',1,'fmt::v5::vprint(std::FILE *f, const text_style &ts, const S &format, basic_format_args< typename buffer_context< Char >::type > args)'],['../namespacefmt_1_1v5.html#a1a9971c629baa5e058f4a13dfa6e7f4b',1,'fmt::v5::vprint(std::FILE *f, string_view format_str, format_args args)'],['../namespacefmt_1_1v5.html#affa5d05127df37768b43a062b2859d0f',1,'fmt::v5::vprint(std::FILE *f, wstring_view format_str, wformat_args args)'],['../namespacefmt_1_1v5.html#ab6661d948e3c2d86d501b5ab48236a68',1,'fmt::v5::vprint(string_view format_str, format_args args)'],['../namespacefmt_1_1v5.html#a2fa996843b6bac7a9a298172eede8d39',1,'fmt::v5::vprint(wstring_view format_str, wformat_args args)'],['../namespacefmt_1_1v5.html#a306e98364a413763f1c84d64a21a96b4',1,'fmt::v5::vprint(std::basic_ostream< Char > &os, basic_string_view< Char > format_str, basic_format_args< typename buffer_context< Char >::type > args)']]], - ['vprintf',['vprintf',['../namespacefmt_1_1v5.html#a9628890375152b497b31614053e4c813',1,'fmt::v5']]], - ['vsprintf',['vsprintf',['../namespacefmt_1_1v5.html#a632ed3b215b2b639a1aafff16ad7d609',1,'fmt::v5']]] + ['u8string_5fview',['u8string_view',['../classfmt_1_1v5_1_1u8string__view.html',1,'fmt::v5::u8string_view'],['../classfmt_1_1v5_1_1u8string__view.html#ace3a1b7f6bca7b364411dd7bca8eb666',1,'fmt::v5::u8string_view::u8string_view(const char *s)'],['../classfmt_1_1v5_1_1u8string__view.html#a7d8fc1c8138683c75574261561e78652',1,'fmt::v5::u8string_view::u8string_view(const char *s, size_t count)']]], + ['uint_5ftype',['uint_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a9c9273f21d9f37b64f17801628d44633',1,'fmt::v5::internal']]], + ['uint_5fvalue',['uint_value',['../classfmt_1_1v5_1_1internal_1_1value.html#aea22330ef411f765099b2962090e56d4',1,'fmt::v5::internal::value']]], + ['ulong_5flong_5ftype',['ulong_long_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a23b2dd85fe035d41a5e93822e346d277',1,'fmt::v5::internal']]], + ['ulong_5flong_5fvalue',['ulong_long_value',['../classfmt_1_1v5_1_1internal_1_1value.html#a6f80a37fd412337e895740ed124e66c3',1,'fmt::v5::internal::value']]], + ['ulong_5ftype',['ulong_type',['../namespacefmt_1_1v5_1_1internal.html#ad4b210aa357f1518a14acd748f576a27',1,'fmt::v5::internal']]], + ['underline',['underline',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a22d86f2cb36da074052308603f058764',1,'spdlog::sinks::ansicolor_sink::underline()'],['../namespacefmt_1_1v5.html#a3c18bfe3f941ca2b94688cb6d54f1ceca6dc7b4483f8c2c701a48e42db552806d',1,'fmt::v5::underline()']]], + ['uninit',['Uninit',['../livox__sdk_8h.html#affc0f591b5f188f1b5cb4f20042e4766',1,'livox_sdk.h']]], + ['unlock',['unlock',['../structspdlog_1_1details_1_1null__mutex.html#acbc27862ec43b4b0e9c8f5197174f95f',1,'spdlog::details::null_mutex']]], + ['updatecachewridx',['UpdateCacheWrIdx',['../classlivox_1_1_comm_port.html#ab520a4434c8e19868cf3bab6c229ab7d',1,'livox::CommPort']]], + ['upper',['upper',['../structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#a4d9d74312532c965bddc7eb88d79600d',1,'fmt::v5::internal::gen_digits_params::upper()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a3017f14a9d0c5b1d84d2929e3aef1735',1,'fmt::v5::float_spec_handler::upper()']]], + ['use_5fuppercase',['use_uppercase',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a0974264e6edcc83c7c191f34d2ce4781',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]], + ['ustring',['ustring',['../classfmt_1_1v5_1_1internal_1_1value.html#a31afcc8ff22723835e02b0ada26c1976',1,'fmt::v5::internal::value']]], + ['utc',['utc',['../namespacespdlog.html#ad598fbd8338772e66ae09e8723a07ceda52d33cb937bbdab234ab1729a0f8225b',1,'spdlog']]], + ['utc_5fminutes_5foffset',['utc_minutes_offset',['../namespacespdlog_1_1details_1_1os.html#a6dce662c3a4ea0b6e95468272ec37047',1,'spdlog::details::os']]] ]; diff --git a/docs/search/all_17.js b/docs/search/all_17.js index 06d87b3..6359b0d 100644 --- a/docs/search/all_17.js +++ b/docs/search/all_17.js @@ -1,37 +1,25 @@ var searchData= [ - ['warn',['warn',['../classspdlog_1_1logger.html#aa1027cf4e4d6fd7fcf361534affe7bdc',1,'spdlog::logger::warn(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#af9153fa3a0735a535ea56f684dc53256',1,'spdlog::logger::warn(const T &msg)'],['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8ba6c371ca09668dd308a1997eab47def05',1,'spdlog::level::warn()'],['../namespacespdlog.html#a41a6d93dee0e1a8c2e6153c1fc7f59df',1,'spdlog::warn(const char *fmt, const Args &... args)'],['../namespacespdlog.html#ab3df0dca3174a057e99fc327e8c25c57',1,'spdlog::warn(const T &msg)']]], - ['wbuffer',['wbuffer',['../namespacefmt_1_1v5_1_1internal.html#ad37aba96f0e4cb12a9decef95122e4bf',1,'fmt::v5::internal']]], - ['wcstring_5fview',['wcstring_view',['../namespacefmt_1_1v5.html#a510a8bb1fab87ff109e319e8f8e35405',1,'fmt::v5']]], - ['wformat_5fargs',['wformat_args',['../structfmt_1_1v5_1_1wformat__args.html',1,'fmt::v5::wformat_args'],['../structfmt_1_1v5_1_1wformat__args.html#a831255528d4129333f3c4e7dfcd40d53',1,'fmt::v5::wformat_args::wformat_args()']]], - ['wformat_5fcontext',['wformat_context',['../namespacefmt_1_1v5.html#a668900c42744d50032df52df341be2f9',1,'fmt::v5']]], - ['wformat_5fparse_5fcontext',['wformat_parse_context',['../namespacefmt_1_1v5.html#a06c10c4c39e421b87bbc1e306b68a866',1,'fmt::v5']]], - ['what',['what',['../classspdlog_1_1spdlog__ex.html#abb3438f30d2e0fffb037931e8867f523',1,'spdlog::spdlog_ex']]], - ['wheat',['wheat',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad29db4ac8712f5bdb343991281b26db1',1,'fmt::v5']]], - ['white',['white',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a74514f96774a00d0a7300b7a625c5044',1,'spdlog::sinks::ansicolor_sink::white()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a32682f38336031a282e1681622f1cff4',1,'spdlog::sinks::wincolor_sink::WHITE()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad508fe45cecaf653904a0e774084bb5c',1,'fmt::v5::white()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaad508fe45cecaf653904a0e774084bb5c',1,'fmt::v5::white()']]], - ['white_5fsmoke',['white_smoke',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a37ecf1e4670c4944a0f98bcb39728578',1,'fmt::v5']]], - ['width',['width',['../structfmt_1_1v5_1_1align__spec.html#a92983d89f72ee0790963927e651c50f6',1,'fmt::v5::align_spec']]], - ['width_5f',['width_',['../structspdlog_1_1details_1_1padding__info.html#abf18e8b1249987bf04dad4f368e6d91a',1,'spdlog::details::padding_info::width_()'],['../structfmt_1_1v5_1_1align__spec.html#a8223f56be615c31d47e588ac36690aee',1,'fmt::v5::align_spec::width_()']]], - ['width_5fadapter',['width_adapter',['../structfmt_1_1v5_1_1internal_1_1width__adapter.html',1,'fmt::v5::internal::width_adapter< SpecHandler, Char >'],['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#a7216841a9338f38f757dd93a9a6f2869',1,'fmt::v5::internal::width_adapter::width_adapter()']]], - ['width_5fchecker',['width_checker',['../classfmt_1_1v5_1_1internal_1_1width__checker.html',1,'fmt::v5::internal::width_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1width__checker.html#a63630366e25e4dec187bc186976bf0d3',1,'fmt::v5::internal::width_checker::width_checker()']]], - ['width_5fref',['width_ref',['../structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html#a83d7ae45b8fc003f531e2f996b51c9b3',1,'fmt::v5::internal::dynamic_format_specs']]], - ['wincolor_5fsink',['wincolor_sink',['../classspdlog_1_1sinks_1_1wincolor__sink.html',1,'spdlog::sinks::wincolor_sink< OutHandle, ConsoleMutex >'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a4ed05c6780bc65806080c88202d80577',1,'spdlog::sinks::wincolor_sink::wincolor_sink()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a89e2ddbd1297c8c722d63277b458b5c1',1,'spdlog::sinks::wincolor_sink::wincolor_sink(const wincolor_sink &other)=delete']]], - ['wincolor_5fsink_2eh',['wincolor_sink.h',['../wincolor__sink_8h.html',1,'']]], - ['wincolor_5fstderr_5fsink_5fmt',['wincolor_stderr_sink_mt',['../namespacespdlog_1_1sinks.html#a44bdf82d709a56703eb208cd584529e5',1,'spdlog::sinks']]], - ['wincolor_5fstderr_5fsink_5fst',['wincolor_stderr_sink_st',['../namespacespdlog_1_1sinks.html#a23305ec4888b5d6d70335c0ae86b2b05',1,'spdlog::sinks']]], - ['wincolor_5fstdout_5fsink_5fmt',['wincolor_stdout_sink_mt',['../namespacespdlog_1_1sinks.html#a93242506c736c358ca4ef36286dedb41',1,'spdlog::sinks']]], - ['wincolor_5fstdout_5fsink_5fst',['wincolor_stdout_sink_st',['../namespacespdlog_1_1sinks.html#ad668215540fc681bd8051e6a8a0c714c',1,'spdlog::sinks']]], - ['wmemory_5fbuffer',['wmemory_buffer',['../namespacefmt_1_1v5.html#aee7e37f3db0fc1ce34674f6b82c1f407',1,'fmt::v5']]], - ['worker_5fptr',['worker_ptr',['../structspdlog_1_1details_1_1async__msg.html#a11f8ca9e84e22b61fca4cd7fe88db5aa',1,'spdlog::details::async_msg']]], - ['wparse_5fcontext',['wparse_context',['../namespacefmt_1_1v5.html#ad2f9ebed8b13beff9cd9bd1a9af7d0c6',1,'fmt::v5']]], - ['wprintf_5fargs',['wprintf_args',['../namespacefmt_1_1v5.html#a879cac033613a1bc9bd96fe510d167d6',1,'fmt::v5']]], - ['wprintf_5fcontext',['wprintf_context',['../namespacefmt_1_1v5.html#a57ed2afe31b4c752383ce3f4c3636085',1,'fmt::v5']]], - ['wr_5fidx',['wr_idx',['../structlivox_1_1_port_cache.html#a7d3d6b10a8a6bb8ed81c8a67add26b1f',1,'livox::PortCache']]], - ['wreset_5fcolor',['WRESET_COLOR',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a684a3b8ed9c908d5c1d4aea407ac18ae',1,'fmt::v5::internal::basic_data']]], - ['write',['write',['../classspdlog_1_1details_1_1file__helper.html#a51eb58a2d46f1896f3ab7b9d323d97ae',1,'spdlog::details::file_helper::write()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a4db4fd25735fba269e0e462d2f0cebb2',1,'fmt::v5::internal::chrono_formatter::write()'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#abdcd50b6b81f5f0071482f01b4f19945',1,'fmt::v5::internal::arg_formatter_base::write(bool value)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a7e8848d8bfb01b809c74e65788a197ca',1,'fmt::v5::internal::arg_formatter_base::write(const char_type *value)'],['../classfmt_1_1v5_1_1basic__writer.html#a531918e4cf5995d2c14785b3eb1f9699',1,'fmt::v5::basic_writer::write(int value)'],['../classfmt_1_1v5_1_1basic__writer.html#a6207aead371c0ab533bc6c012caa7fec',1,'fmt::v5::basic_writer::write(long value)'],['../classfmt_1_1v5_1_1basic__writer.html#a2b226f9d7fca502facb0b9c0f6eb7919',1,'fmt::v5::basic_writer::write(long long value)'],['../classfmt_1_1v5_1_1basic__writer.html#aa9a5f9e678e19930ede5a1dfad1ebe93',1,'fmt::v5::basic_writer::write(unsigned value)'],['../classfmt_1_1v5_1_1basic__writer.html#affe641b73605f9fe7f05c63f375fa8ae',1,'fmt::v5::basic_writer::write(unsigned long value)'],['../classfmt_1_1v5_1_1basic__writer.html#a968d531596194200346fda2e3211e3c8',1,'fmt::v5::basic_writer::write(unsigned long long value)'],['../classfmt_1_1v5_1_1basic__writer.html#a2bd6f8f5af3c564886cfde5b15fc8f69',1,'fmt::v5::basic_writer::write(T value, FormatSpec spec, FormatSpecs... specs)'],['../classfmt_1_1v5_1_1basic__writer.html#a2e73d42a69cbb1a1e3135f5b38c33771',1,'fmt::v5::basic_writer::write(double value)'],['../classfmt_1_1v5_1_1basic__writer.html#a01693cb5eb4849919d29bd0889c9adf3',1,'fmt::v5::basic_writer::write(long double value)'],['../classfmt_1_1v5_1_1basic__writer.html#af29d4c9940dfcbd4181291395855b665',1,'fmt::v5::basic_writer::write(char value)'],['../classfmt_1_1v5_1_1basic__writer.html#a46caff7956407a227b4b553312f695ed',1,'fmt::v5::basic_writer::write(wchar_t value)'],['../classfmt_1_1v5_1_1basic__writer.html#aad7bbd01a1c5e145908071abf1227283',1,'fmt::v5::basic_writer::write(string_view value)'],['../classfmt_1_1v5_1_1basic__writer.html#ad9b699ac00358e34697007c98a9fd063',1,'fmt::v5::basic_writer::write(wstring_view value)'],['../classfmt_1_1v5_1_1basic__writer.html#a4e295df91ec1c12fd786d17e905442de',1,'fmt::v5::basic_writer::write(const Char *s, std::size_t size, const align_spec &spec)'],['../classfmt_1_1v5_1_1basic__writer.html#ac77932fff8ec776f47d747a5393239b1',1,'fmt::v5::basic_writer::write(basic_string_view< Char > s, const format_specs &spec=format_specs())'],['../classfmt_1_1v5_1_1basic__writer.html#af308c665441c50a867bec1c17cd8b423',1,'fmt::v5::basic_writer::write(const T *p)'],['../classfmt_1_1v5_1_1file.html#ac2eeefd58cc3b43a0b0bff4670af2f6f',1,'fmt::v5::file::write()'],['../namespacefmt_1_1v5_1_1internal.html#a612441ca8e1a7a5f773ee3d616d9d62c',1,'fmt::v5::internal::write()']]], - ['write_5fexponent',['write_exponent',['../namespacefmt_1_1v5_1_1internal.html#a80e439a6cba95b74e9324248a41b1005',1,'fmt::v5::internal']]], - ['writer',['writer',['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a0fe712b3073fdad76e865f681a20a3cb',1,'fmt::v5::internal::arg_formatter_base::writer()'],['../namespacefmt_1_1v5.html#aa896aba6bd0796c1d93bd6f71556a9f5',1,'fmt::v5::writer()']]], - ['wronly',['WRONLY',['../classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1a32af7e818a81bb44c1c34bf9afd64d68',1,'fmt::v5::file']]], - ['wstring_5fview',['wstring_view',['../namespacefmt_1_1v5.html#a37de00647fc1e0345f485313cdd522f7',1,'fmt::v5']]], - ['wwriter',['wwriter',['../namespacefmt_1_1v5.html#a0fd504293f21ab24279d713171185c27',1,'fmt::v5']]] + ['v_5fformatter',['v_formatter',['../classspdlog_1_1details_1_1v__formatter.html',1,'spdlog::details::v_formatter'],['../classspdlog_1_1details_1_1v__formatter.html#a54e77c3b682da6b1417f6a2adb23b018',1,'spdlog::details::v_formatter::v_formatter()']]], + ['val',['val',['../structfmt_1_1v5_1_1internal_1_1init.html#a3d9e6c757b3ee6700cf3c04fe8eedc24',1,'fmt::v5::internal::init']]], + ['value',['value',['../classfmt_1_1v5_1_1internal_1_1value.html',1,'fmt::v5::internal::value< Context >'],['../structspdlog_1_1details_1_1null__atomic__int.html#ab433069a53cdd1402dc7b0b942d7095f',1,'spdlog::details::null_atomic_int::value()'],['../structfmt_1_1v5_1_1internal_1_1color__type.html#adf5946407d6fd20727ce475d2843a4b7',1,'fmt::v5::internal::color_type::value()'],['../structfmt_1_1v5_1_1internal_1_1string__value.html#a8e48ccdd962f1e5e0bb22d6759428f91',1,'fmt::v5::internal::string_value::value()'],['../structfmt_1_1v5_1_1internal_1_1custom__value.html#adae3c0875aa70ef39a434d0e9756ae12',1,'fmt::v5::internal::custom_value::value()'],['../structfmt_1_1v5_1_1internal_1_1get__type.html#af088bfff6645d7e54268061ca31b9d2f',1,'fmt::v5::internal::get_type::value()'],['../structfmt_1_1v5_1_1internal_1_1named__arg.html#a4fb6611dcd33787450c3e489dd0a380f',1,'fmt::v5::internal::named_arg::value()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#a3ec107f4cdd14d0eb7f1ae2a072b0c89',1,'fmt::v5::internal::arg_formatter_base::char_spec_handler::value()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a677c073f250fe756706c602548846794',1,'fmt::v5::internal::arg_formatter_base::cstring_spec_handler::value()'],['../structfmt_1_1v5_1_1internal_1_1is__integer.html#a86045dee4e1516ba984f9a7a73a8d784a628cfe22762b11844211a37c4bb2f264',1,'fmt::v5::internal::is_integer::value()'],['../classfmt_1_1v5_1_1internal_1_1is__output__iterator.html#aa4d927007ddeb8efaa78d8b164ec5549',1,'fmt::v5::internal::is_output_iterator::value()'],['../classfmt_1_1v5_1_1internal_1_1is__streamable.html#af3b5a08eb5d6d8a5ff5656171f041b42',1,'fmt::v5::internal::is_streamable::value()'],['../structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html#a403828199f69d91f17e0dd2cd0b0026f',1,'fmt::v5::convert_to_int< T, Char, void >::value()'],['../classfmt_1_1v5_1_1internal_1_1is__like__std__string.html#ae56f2f4d49852e70c3e36107ed9b62ed',1,'fmt::v5::internal::is_like_std_string::value()'],['../classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html#a02f7ed6f598f73178ddc2f3a761dc77e',1,'fmt::v5::internal::is_tuple_like_::value()'],['../structfmt_1_1v5_1_1is__tuple__like.html#a26f4317573be02eefa4019c093bfa8a8',1,'fmt::v5::is_tuple_like::value()'],['../structfmt_1_1v5_1_1is__range.html#a57f5c1ea66af4636e56a441636dd4fb3',1,'fmt::v5::is_range::value()'],['../classfmt_1_1v5_1_1internal_1_1value.html#ad27b872dc092249a541f517f5f2157d7',1,'fmt::v5::internal::value::value(int val=0)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a3f87c938b3db0f2f31e6f4fa517d85eb',1,'fmt::v5::internal::value::value(unsigned val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a9c1c70838798225c536727bc6bf125bc',1,'fmt::v5::internal::value::value(long long val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#aae5d0d1372c0bfcd51c929bdc70fe139',1,'fmt::v5::internal::value::value(unsigned long long val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a104a4d2d5dd02f9dab13c911f7e87cb7',1,'fmt::v5::internal::value::value(double val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a4617949bd5f9aeb22e51ab3c278aabaa',1,'fmt::v5::internal::value::value(long double val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a00ca42d8559d880b30ecd06f0aaa78fa',1,'fmt::v5::internal::value::value(const char_type *val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a8a1749aa5371e7d0c25ca2f99edf6b47',1,'fmt::v5::internal::value::value(const signed char *val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#ad93ad99163bd8ebc4a985298dace4a56',1,'fmt::v5::internal::value::value(const unsigned char *val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a77d470cccc7a2fa754a1abce3daed5d6',1,'fmt::v5::internal::value::value(basic_string_view< char_type > val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#a3a77ac045f2ccd3165589946f822513b',1,'fmt::v5::internal::value::value(const void *val)'],['../classfmt_1_1v5_1_1internal_1_1value.html#ac7edf7c1b544ebdf7b355a0b50a26d51',1,'fmt::v5::internal::value::value(const T &val)']]], + ['value_3c_20basic_5fformat_5fcontext_3c_20outputit_2c_20char_20_3e_20_3e',['value< basic_format_context< OutputIt, Char > >',['../classfmt_1_1v5_1_1internal_1_1value.html',1,'fmt::v5::internal']]], + ['value_3c_20basic_5fprintf_5fcontext_3c_20outputit_2c_20char_2c_20argformatter_20_3e_20_3e',['value< basic_printf_context< OutputIt, Char, ArgFormatter > >',['../classfmt_1_1v5_1_1internal_1_1value.html',1,'fmt::v5::internal']]], + ['value_3c_20format_5fcontext_20_3e',['value< format_context >',['../classfmt_1_1v5_1_1internal_1_1value.html',1,'fmt::v5::internal']]], + ['value_3c_20wformat_5fcontext_20_3e',['value< wformat_context >',['../classfmt_1_1v5_1_1internal_1_1value.html',1,'fmt::v5::internal']]], + ['value_5ftype',['value_type',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a7c82c2c4e3782e9770d45d564f9425a5',1,'fmt::v5::internal::basic_buffer::value_type()'],['../classfmt_1_1v5_1_1output__range.html#acd03d46c6de53cdc7dccc5890a9df377',1,'fmt::v5::output_range::value_type()'],['../classfmt_1_1v5_1_1back__insert__range.html#a7dbc83149304d1f6fff9d3ba81cc4e23',1,'fmt::v5::back_insert_range::value_type()'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#aecaa097e427d00d791de417e5ea9034c',1,'fmt::v5::basic_memory_buffer::value_type()'],['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a13f8c5691061c696945f38159080fe2e',1,'fmt::v5::internal::counting_iterator::value_type()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a5f21fb8af92548caefb494b1e49814b6',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::false_type >::value_type()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#af1785abde70457e336e28c9e3640e155',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::value_type()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ad9177a447cdfc48f030f67a43ba3950c',1,'fmt::v5::internal::null_terminating_iterator::value_type()'],['../structfmt_1_1v5_1_1internal_1_1integer__sequence.html#af7229e271e3b302e82cc70067c2bffbd',1,'fmt::v5::internal::integer_sequence::value_type()'],['../structfmt_1_1v5_1_1internal_1_1get__type.html#a3e8fae3e67d4ec2f6af456a51a6cff16',1,'fmt::v5::internal::get_type::value_type()']]], + ['values_5f',['values_',['../classfmt_1_1v5_1_1basic__format__args.html#a7dd4ac1a1a0513a1b567d2c6251656a7',1,'fmt::v5::basic_format_args']]], + ['version',['version',['../struct_livox_eth_packet.html#a54a66559fe0ec191d5d11fca61fd3dd1',1,'LivoxEthPacket::version()'],['../struct_connected_lidar_info.html#a1516c8ab627363ff3a2224f5ee142226',1,'ConnectedLidarInfo::version()']]], + ['version_2eh',['version.h',['../version_8h.html',1,'']]], + ['vformat',['vformat',['../namespacefmt_1_1v5_1_1internal.html#a8561b3876ffaedaf2b94f434da083c34',1,'fmt::v5::internal::vformat()'],['../namespacefmt_1_1v5.html#afbb941ac362fc08798ab3f9b1303f88f',1,'fmt::v5::vformat()'],['../namespacefmt_1_1v5_1_1internal.html#a8baee03ce41dc9ba8e176f5995c768fc',1,'fmt::v5::internal::vformat()'],['../namespacefmt_1_1v5.html#a1f5ac8e91b7e7ded10e2dadab4fc6330',1,'fmt::v5::vformat()']]], + ['vformat_5fto',['vformat_to',['../namespacefmt_1_1v5_1_1internal.html#ac0cedf42ad81436f35151f2173458d61',1,'fmt::v5::internal::vformat_to()'],['../namespacefmt_1_1v5.html#a2ae33062c35ef4ccc25efa805d35fdae',1,'fmt::v5::vformat_to(std::back_insert_iterator< Container > out, const S &format_str, basic_format_args< typename buffer_context< typename char_t< S >::type >::type > args)'],['../namespacefmt_1_1v5.html#a8634a26fe8408d673308c0fcdea0c6b2',1,'fmt::v5::vformat_to(typename ArgFormatter::range out, basic_string_view< Char > format_str, basic_format_args< Context > args, internal::locale_ref loc=internal::locale_ref())'],['../namespacefmt_1_1v5.html#a98b8a6fbc7cd86c22d8e2cb0c700665e',1,'fmt::v5::vformat_to(internal::basic_buffer< Char > &buf, const S &format_str, basic_format_args< typename buffer_context< Char >::type > args)'],['../namespacefmt_1_1v5.html#ac849a4087b1f888c968321696bf114ca',1,'fmt::v5::vformat_to(OutputIt out, const String &format_str, typename format_args_t< OutputIt, typename char_t< String >::type >::type args)'],['../namespacefmt_1_1v5_1_1internal.html#a96656f2873d811372570d14b911799c9',1,'fmt::v5::internal::vformat_to()'],['../namespacefmt_1_1v5.html#a8ccdf1f18a293a1db7c718039d9d91a4',1,'fmt::v5::vformat_to()']]], + ['vformat_5fto_5fn',['vformat_to_n',['../namespacefmt_1_1v5.html#a8df5e9fe475de8e789a43b8a40d60541',1,'fmt::v5']]], + ['vfprintf',['vfprintf',['../namespacefmt_1_1v5.html#a64d11550059be9a7d0dcc73dfa9b7821',1,'fmt::v5::vfprintf(std::FILE *f, const S &format, basic_format_args< typename basic_printf_context_t< internal::basic_buffer< Char >>::type > args)'],['../namespacefmt_1_1v5.html#ad3b38575efbc58494272ed75b8e50d39',1,'fmt::v5::vfprintf(std::basic_ostream< Char > &os, const S &format, basic_format_args< typename basic_printf_context_t< internal::basic_buffer< Char >>::type > args)']]], + ['violet',['violet',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad1d813a48d99f0e102f7d0a1b9068001',1,'fmt::v5']]], + ['visit',['visit',['../namespacefmt_1_1v5.html#a4558083081ed076bb18d5e216af90c86',1,'fmt::v5']]], + ['visit_5fformat_5farg',['visit_format_arg',['../classfmt_1_1v5_1_1basic__format__arg.html#aeab7b1649adaa52475e1a72806a0b849',1,'fmt::v5::basic_format_arg::visit_format_arg()'],['../namespacefmt_1_1v5.html#acedd512a780532f842377b6f166a4bab',1,'fmt::v5::visit_format_arg()']]], + ['void_5f',['void_',['../structfmt_1_1v5_1_1internal_1_1void__.html',1,'fmt::v5::internal']]], + ['vprint',['vprint',['../classfmt_1_1v5_1_1buffered__file.html#ae90c624636ac4919eb5c8a38e6393315',1,'fmt::v5::buffered_file::vprint()'],['../namespacefmt_1_1v5.html#a4df07cd85241561a9b8ce9a7351b1606',1,'fmt::v5::vprint(std::FILE *f, const text_style &ts, const S &format, basic_format_args< typename buffer_context< Char >::type > args)'],['../namespacefmt_1_1v5.html#a1a9971c629baa5e058f4a13dfa6e7f4b',1,'fmt::v5::vprint(std::FILE *f, string_view format_str, format_args args)'],['../namespacefmt_1_1v5.html#affa5d05127df37768b43a062b2859d0f',1,'fmt::v5::vprint(std::FILE *f, wstring_view format_str, wformat_args args)'],['../namespacefmt_1_1v5.html#ab6661d948e3c2d86d501b5ab48236a68',1,'fmt::v5::vprint(string_view format_str, format_args args)'],['../namespacefmt_1_1v5.html#a2fa996843b6bac7a9a298172eede8d39',1,'fmt::v5::vprint(wstring_view format_str, wformat_args args)'],['../namespacefmt_1_1v5.html#a306e98364a413763f1c84d64a21a96b4',1,'fmt::v5::vprint(std::basic_ostream< Char > &os, basic_string_view< Char > format_str, basic_format_args< typename buffer_context< Char >::type > args)']]], + ['vprintf',['vprintf',['../namespacefmt_1_1v5.html#a9628890375152b497b31614053e4c813',1,'fmt::v5']]], + ['vsprintf',['vsprintf',['../namespacefmt_1_1v5.html#a632ed3b215b2b639a1aafff16ad7d609',1,'fmt::v5']]] ]; diff --git a/docs/search/all_18.js b/docs/search/all_18.js index 4ab0960..06d87b3 100644 --- a/docs/search/all_18.js +++ b/docs/search/all_18.js @@ -1,5 +1,37 @@ var searchData= [ - ['x',['x',['../struct_livox_raw_point.html#a9ebad707b8d7f23627b9542f6023a359',1,'LivoxRawPoint::x()'],['../struct_livox_point.html#aa3f338bfc60815306204df82ad86d8dc',1,'LivoxPoint::x()'],['../struct_extrinsic_parameter_request_item.html#af5c895c062c9059cb1ea5d133e239061',1,'ExtrinsicParameterRequestItem::x()'],['../struct_extrinsic_parameter_response_item.html#ae7d9f155e506db616a87dbad50815d96',1,'ExtrinsicParameterResponseItem::x()'],['../struct_lidar_set_extrinsic_parameter_request.html#af15b6387a525382ffefaf65ed6248e6c',1,'LidarSetExtrinsicParameterRequest::x()'],['../struct_lidar_get_extrinsic_parameter_response.html#adc48af745aa3f0fec63be171f96684db',1,'LidarGetExtrinsicParameterResponse::x()']]], - ['xsputn',['xsputn',['../classfmt_1_1v5_1_1internal_1_1formatbuf.html#a90f68be3695c0523483f1cea96e20ed8',1,'fmt::v5::internal::formatbuf']]] + ['warn',['warn',['../classspdlog_1_1logger.html#aa1027cf4e4d6fd7fcf361534affe7bdc',1,'spdlog::logger::warn(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#af9153fa3a0735a535ea56f684dc53256',1,'spdlog::logger::warn(const T &msg)'],['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8ba6c371ca09668dd308a1997eab47def05',1,'spdlog::level::warn()'],['../namespacespdlog.html#a41a6d93dee0e1a8c2e6153c1fc7f59df',1,'spdlog::warn(const char *fmt, const Args &... args)'],['../namespacespdlog.html#ab3df0dca3174a057e99fc327e8c25c57',1,'spdlog::warn(const T &msg)']]], + ['wbuffer',['wbuffer',['../namespacefmt_1_1v5_1_1internal.html#ad37aba96f0e4cb12a9decef95122e4bf',1,'fmt::v5::internal']]], + ['wcstring_5fview',['wcstring_view',['../namespacefmt_1_1v5.html#a510a8bb1fab87ff109e319e8f8e35405',1,'fmt::v5']]], + ['wformat_5fargs',['wformat_args',['../structfmt_1_1v5_1_1wformat__args.html',1,'fmt::v5::wformat_args'],['../structfmt_1_1v5_1_1wformat__args.html#a831255528d4129333f3c4e7dfcd40d53',1,'fmt::v5::wformat_args::wformat_args()']]], + ['wformat_5fcontext',['wformat_context',['../namespacefmt_1_1v5.html#a668900c42744d50032df52df341be2f9',1,'fmt::v5']]], + ['wformat_5fparse_5fcontext',['wformat_parse_context',['../namespacefmt_1_1v5.html#a06c10c4c39e421b87bbc1e306b68a866',1,'fmt::v5']]], + ['what',['what',['../classspdlog_1_1spdlog__ex.html#abb3438f30d2e0fffb037931e8867f523',1,'spdlog::spdlog_ex']]], + ['wheat',['wheat',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad29db4ac8712f5bdb343991281b26db1',1,'fmt::v5']]], + ['white',['white',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a74514f96774a00d0a7300b7a625c5044',1,'spdlog::sinks::ansicolor_sink::white()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a32682f38336031a282e1681622f1cff4',1,'spdlog::sinks::wincolor_sink::WHITE()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad508fe45cecaf653904a0e774084bb5c',1,'fmt::v5::white()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaad508fe45cecaf653904a0e774084bb5c',1,'fmt::v5::white()']]], + ['white_5fsmoke',['white_smoke',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a37ecf1e4670c4944a0f98bcb39728578',1,'fmt::v5']]], + ['width',['width',['../structfmt_1_1v5_1_1align__spec.html#a92983d89f72ee0790963927e651c50f6',1,'fmt::v5::align_spec']]], + ['width_5f',['width_',['../structspdlog_1_1details_1_1padding__info.html#abf18e8b1249987bf04dad4f368e6d91a',1,'spdlog::details::padding_info::width_()'],['../structfmt_1_1v5_1_1align__spec.html#a8223f56be615c31d47e588ac36690aee',1,'fmt::v5::align_spec::width_()']]], + ['width_5fadapter',['width_adapter',['../structfmt_1_1v5_1_1internal_1_1width__adapter.html',1,'fmt::v5::internal::width_adapter< SpecHandler, Char >'],['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#a7216841a9338f38f757dd93a9a6f2869',1,'fmt::v5::internal::width_adapter::width_adapter()']]], + ['width_5fchecker',['width_checker',['../classfmt_1_1v5_1_1internal_1_1width__checker.html',1,'fmt::v5::internal::width_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1width__checker.html#a63630366e25e4dec187bc186976bf0d3',1,'fmt::v5::internal::width_checker::width_checker()']]], + ['width_5fref',['width_ref',['../structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html#a83d7ae45b8fc003f531e2f996b51c9b3',1,'fmt::v5::internal::dynamic_format_specs']]], + ['wincolor_5fsink',['wincolor_sink',['../classspdlog_1_1sinks_1_1wincolor__sink.html',1,'spdlog::sinks::wincolor_sink< OutHandle, ConsoleMutex >'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a4ed05c6780bc65806080c88202d80577',1,'spdlog::sinks::wincolor_sink::wincolor_sink()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a89e2ddbd1297c8c722d63277b458b5c1',1,'spdlog::sinks::wincolor_sink::wincolor_sink(const wincolor_sink &other)=delete']]], + ['wincolor_5fsink_2eh',['wincolor_sink.h',['../wincolor__sink_8h.html',1,'']]], + ['wincolor_5fstderr_5fsink_5fmt',['wincolor_stderr_sink_mt',['../namespacespdlog_1_1sinks.html#a44bdf82d709a56703eb208cd584529e5',1,'spdlog::sinks']]], + ['wincolor_5fstderr_5fsink_5fst',['wincolor_stderr_sink_st',['../namespacespdlog_1_1sinks.html#a23305ec4888b5d6d70335c0ae86b2b05',1,'spdlog::sinks']]], + ['wincolor_5fstdout_5fsink_5fmt',['wincolor_stdout_sink_mt',['../namespacespdlog_1_1sinks.html#a93242506c736c358ca4ef36286dedb41',1,'spdlog::sinks']]], + ['wincolor_5fstdout_5fsink_5fst',['wincolor_stdout_sink_st',['../namespacespdlog_1_1sinks.html#ad668215540fc681bd8051e6a8a0c714c',1,'spdlog::sinks']]], + ['wmemory_5fbuffer',['wmemory_buffer',['../namespacefmt_1_1v5.html#aee7e37f3db0fc1ce34674f6b82c1f407',1,'fmt::v5']]], + ['worker_5fptr',['worker_ptr',['../structspdlog_1_1details_1_1async__msg.html#a11f8ca9e84e22b61fca4cd7fe88db5aa',1,'spdlog::details::async_msg']]], + ['wparse_5fcontext',['wparse_context',['../namespacefmt_1_1v5.html#ad2f9ebed8b13beff9cd9bd1a9af7d0c6',1,'fmt::v5']]], + ['wprintf_5fargs',['wprintf_args',['../namespacefmt_1_1v5.html#a879cac033613a1bc9bd96fe510d167d6',1,'fmt::v5']]], + ['wprintf_5fcontext',['wprintf_context',['../namespacefmt_1_1v5.html#a57ed2afe31b4c752383ce3f4c3636085',1,'fmt::v5']]], + ['wr_5fidx',['wr_idx',['../structlivox_1_1_port_cache.html#a7d3d6b10a8a6bb8ed81c8a67add26b1f',1,'livox::PortCache']]], + ['wreset_5fcolor',['WRESET_COLOR',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a684a3b8ed9c908d5c1d4aea407ac18ae',1,'fmt::v5::internal::basic_data']]], + ['write',['write',['../classspdlog_1_1details_1_1file__helper.html#a51eb58a2d46f1896f3ab7b9d323d97ae',1,'spdlog::details::file_helper::write()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a4db4fd25735fba269e0e462d2f0cebb2',1,'fmt::v5::internal::chrono_formatter::write()'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#abdcd50b6b81f5f0071482f01b4f19945',1,'fmt::v5::internal::arg_formatter_base::write(bool value)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a7e8848d8bfb01b809c74e65788a197ca',1,'fmt::v5::internal::arg_formatter_base::write(const char_type *value)'],['../classfmt_1_1v5_1_1basic__writer.html#a531918e4cf5995d2c14785b3eb1f9699',1,'fmt::v5::basic_writer::write(int value)'],['../classfmt_1_1v5_1_1basic__writer.html#a6207aead371c0ab533bc6c012caa7fec',1,'fmt::v5::basic_writer::write(long value)'],['../classfmt_1_1v5_1_1basic__writer.html#a2b226f9d7fca502facb0b9c0f6eb7919',1,'fmt::v5::basic_writer::write(long long value)'],['../classfmt_1_1v5_1_1basic__writer.html#aa9a5f9e678e19930ede5a1dfad1ebe93',1,'fmt::v5::basic_writer::write(unsigned value)'],['../classfmt_1_1v5_1_1basic__writer.html#affe641b73605f9fe7f05c63f375fa8ae',1,'fmt::v5::basic_writer::write(unsigned long value)'],['../classfmt_1_1v5_1_1basic__writer.html#a968d531596194200346fda2e3211e3c8',1,'fmt::v5::basic_writer::write(unsigned long long value)'],['../classfmt_1_1v5_1_1basic__writer.html#a2bd6f8f5af3c564886cfde5b15fc8f69',1,'fmt::v5::basic_writer::write(T value, FormatSpec spec, FormatSpecs... specs)'],['../classfmt_1_1v5_1_1basic__writer.html#a2e73d42a69cbb1a1e3135f5b38c33771',1,'fmt::v5::basic_writer::write(double value)'],['../classfmt_1_1v5_1_1basic__writer.html#a01693cb5eb4849919d29bd0889c9adf3',1,'fmt::v5::basic_writer::write(long double value)'],['../classfmt_1_1v5_1_1basic__writer.html#af29d4c9940dfcbd4181291395855b665',1,'fmt::v5::basic_writer::write(char value)'],['../classfmt_1_1v5_1_1basic__writer.html#a46caff7956407a227b4b553312f695ed',1,'fmt::v5::basic_writer::write(wchar_t value)'],['../classfmt_1_1v5_1_1basic__writer.html#aad7bbd01a1c5e145908071abf1227283',1,'fmt::v5::basic_writer::write(string_view value)'],['../classfmt_1_1v5_1_1basic__writer.html#ad9b699ac00358e34697007c98a9fd063',1,'fmt::v5::basic_writer::write(wstring_view value)'],['../classfmt_1_1v5_1_1basic__writer.html#a4e295df91ec1c12fd786d17e905442de',1,'fmt::v5::basic_writer::write(const Char *s, std::size_t size, const align_spec &spec)'],['../classfmt_1_1v5_1_1basic__writer.html#ac77932fff8ec776f47d747a5393239b1',1,'fmt::v5::basic_writer::write(basic_string_view< Char > s, const format_specs &spec=format_specs())'],['../classfmt_1_1v5_1_1basic__writer.html#af308c665441c50a867bec1c17cd8b423',1,'fmt::v5::basic_writer::write(const T *p)'],['../classfmt_1_1v5_1_1file.html#ac2eeefd58cc3b43a0b0bff4670af2f6f',1,'fmt::v5::file::write()'],['../namespacefmt_1_1v5_1_1internal.html#a612441ca8e1a7a5f773ee3d616d9d62c',1,'fmt::v5::internal::write()']]], + ['write_5fexponent',['write_exponent',['../namespacefmt_1_1v5_1_1internal.html#a80e439a6cba95b74e9324248a41b1005',1,'fmt::v5::internal']]], + ['writer',['writer',['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a0fe712b3073fdad76e865f681a20a3cb',1,'fmt::v5::internal::arg_formatter_base::writer()'],['../namespacefmt_1_1v5.html#aa896aba6bd0796c1d93bd6f71556a9f5',1,'fmt::v5::writer()']]], + ['wronly',['WRONLY',['../classfmt_1_1v5_1_1file.html#a76c6c7024a7133e5d62d407043ee58a1a32af7e818a81bb44c1c34bf9afd64d68',1,'fmt::v5::file']]], + ['wstring_5fview',['wstring_view',['../namespacefmt_1_1v5.html#a37de00647fc1e0345f485313cdd522f7',1,'fmt::v5']]], + ['wwriter',['wwriter',['../namespacefmt_1_1v5.html#a0fd504293f21ab24279d713171185c27',1,'fmt::v5']]] ]; diff --git a/docs/search/all_19.js b/docs/search/all_19.js index e4f2028..4ab0960 100644 --- a/docs/search/all_19.js +++ b/docs/search/all_19.js @@ -1,8 +1,5 @@ var searchData= [ - ['y',['y',['../struct_livox_raw_point.html#a0b4212969df96a0f697f55738c9a0444',1,'LivoxRawPoint::y()'],['../struct_livox_point.html#a28ad3332bba82317c04fb3063ecc1c86',1,'LivoxPoint::y()'],['../struct_extrinsic_parameter_request_item.html#ad2395a7b51996e0ef6f8e8b7d3113185',1,'ExtrinsicParameterRequestItem::y()'],['../struct_extrinsic_parameter_response_item.html#ac72c9a74a72fa08ad428395a869720ef',1,'ExtrinsicParameterResponseItem::y()'],['../struct_lidar_set_extrinsic_parameter_request.html#a3e7fd95f3691bdcaa9d8ed016a5463ae',1,'LidarSetExtrinsicParameterRequest::y()'],['../struct_lidar_get_extrinsic_parameter_response.html#a3fa936c4d0e24b4441a722c2b6b65fd4',1,'LidarGetExtrinsicParameterResponse::y()']]], - ['y_5fformatter',['Y_formatter',['../classspdlog_1_1details_1_1_y__formatter.html',1,'spdlog::details::Y_formatter'],['../classspdlog_1_1details_1_1_y__formatter.html#ac720d56ae2b7f315bcb788505f6f0b32',1,'spdlog::details::Y_formatter::Y_formatter()']]], - ['yaw',['yaw',['../struct_extrinsic_parameter_request_item.html#ae61cb309fff8dd1eb96f56b78dd43b75',1,'ExtrinsicParameterRequestItem::yaw()'],['../struct_extrinsic_parameter_response_item.html#a80e3e05dceb68adf7a9bd847bd35329a',1,'ExtrinsicParameterResponseItem::yaw()'],['../struct_lidar_set_extrinsic_parameter_request.html#a52e1efe159b3c5886cfaeb08d3baabb0',1,'LidarSetExtrinsicParameterRequest::yaw()'],['../struct_lidar_get_extrinsic_parameter_response.html#adafd0fca99f28c8087b87aad78dace06',1,'LidarGetExtrinsicParameterResponse::yaw()']]], - ['yellow',['yellow',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a2677f9c054be6ae2a2e673a92ba27189',1,'spdlog::sinks::ansicolor_sink::yellow()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#aa148f87d2c8b234c306009268ac7b812',1,'spdlog::sinks::wincolor_sink::YELLOW()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad487dd0b55dfcacdd920ccbdaeafa351',1,'fmt::v5::yellow()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaad487dd0b55dfcacdd920ccbdaeafa351',1,'fmt::v5::yellow()']]], - ['yellow_5fgreen',['yellow_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aa889858bd19327fe8b643b9ff36a1782',1,'fmt::v5']]] + ['x',['x',['../struct_livox_raw_point.html#a9ebad707b8d7f23627b9542f6023a359',1,'LivoxRawPoint::x()'],['../struct_livox_point.html#aa3f338bfc60815306204df82ad86d8dc',1,'LivoxPoint::x()'],['../struct_extrinsic_parameter_request_item.html#af5c895c062c9059cb1ea5d133e239061',1,'ExtrinsicParameterRequestItem::x()'],['../struct_extrinsic_parameter_response_item.html#ae7d9f155e506db616a87dbad50815d96',1,'ExtrinsicParameterResponseItem::x()'],['../struct_lidar_set_extrinsic_parameter_request.html#af15b6387a525382ffefaf65ed6248e6c',1,'LidarSetExtrinsicParameterRequest::x()'],['../struct_lidar_get_extrinsic_parameter_response.html#adc48af745aa3f0fec63be171f96684db',1,'LidarGetExtrinsicParameterResponse::x()']]], + ['xsputn',['xsputn',['../classfmt_1_1v5_1_1internal_1_1formatbuf.html#a90f68be3695c0523483f1cea96e20ed8',1,'fmt::v5::internal::formatbuf']]] ]; diff --git a/docs/search/all_1a.js b/docs/search/all_1a.js index 1c51512..e4f2028 100644 --- a/docs/search/all_1a.js +++ b/docs/search/all_1a.js @@ -1,7 +1,8 @@ var searchData= [ - ['z',['z',['../struct_livox_raw_point.html#a1026beb1f1729bdc38e06edf11bb06e0',1,'LivoxRawPoint::z()'],['../struct_livox_point.html#af2cd18d88bc85941740eae6e09b88d70',1,'LivoxPoint::z()'],['../struct_extrinsic_parameter_request_item.html#ae6282ea34d55b9f40a75dc45be853429',1,'ExtrinsicParameterRequestItem::z()'],['../struct_extrinsic_parameter_response_item.html#a0039b1c815784533f656d5e53a22de8e',1,'ExtrinsicParameterResponseItem::z()'],['../struct_lidar_set_extrinsic_parameter_request.html#a80fc49ccc2943501b4706c004e3a8cd8',1,'LidarSetExtrinsicParameterRequest::z()'],['../struct_lidar_get_extrinsic_parameter_response.html#a8f5ae9799b044b30a17a9b7878f88716',1,'LidarGetExtrinsicParameterResponse::z()']]], - ['z_5fformatter',['z_formatter',['../classspdlog_1_1details_1_1z__formatter.html',1,'spdlog::details::z_formatter'],['../classspdlog_1_1details_1_1z__formatter.html#a3c7902ee9047ef7c0d53cf1e9c4cd834',1,'spdlog::details::z_formatter::z_formatter(padding_info padinfo)'],['../classspdlog_1_1details_1_1z__formatter.html#a230a4469c1ffda4d06bed933ecca1fd5',1,'spdlog::details::z_formatter::z_formatter()=default'],['../classspdlog_1_1details_1_1z__formatter.html#a09f0b7e5cf2bc8260375d38ac9b14a31',1,'spdlog::details::z_formatter::z_formatter(const z_formatter &)=delete']]], - ['zero_5for_5fpowers_5fof_5f10_5f32',['ZERO_OR_POWERS_OF_10_32',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a7c75c3b052395aa783f67d1221946c27',1,'fmt::v5::internal::basic_data']]], - ['zero_5for_5fpowers_5fof_5f10_5f64',['ZERO_OR_POWERS_OF_10_64',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#aff0c2d26ec88801043953054e3bcc971',1,'fmt::v5::internal::basic_data']]] + ['y',['y',['../struct_livox_raw_point.html#a0b4212969df96a0f697f55738c9a0444',1,'LivoxRawPoint::y()'],['../struct_livox_point.html#a28ad3332bba82317c04fb3063ecc1c86',1,'LivoxPoint::y()'],['../struct_extrinsic_parameter_request_item.html#ad2395a7b51996e0ef6f8e8b7d3113185',1,'ExtrinsicParameterRequestItem::y()'],['../struct_extrinsic_parameter_response_item.html#ac72c9a74a72fa08ad428395a869720ef',1,'ExtrinsicParameterResponseItem::y()'],['../struct_lidar_set_extrinsic_parameter_request.html#a3e7fd95f3691bdcaa9d8ed016a5463ae',1,'LidarSetExtrinsicParameterRequest::y()'],['../struct_lidar_get_extrinsic_parameter_response.html#a3fa936c4d0e24b4441a722c2b6b65fd4',1,'LidarGetExtrinsicParameterResponse::y()']]], + ['y_5fformatter',['Y_formatter',['../classspdlog_1_1details_1_1_y__formatter.html',1,'spdlog::details::Y_formatter'],['../classspdlog_1_1details_1_1_y__formatter.html#ac720d56ae2b7f315bcb788505f6f0b32',1,'spdlog::details::Y_formatter::Y_formatter()']]], + ['yaw',['yaw',['../struct_extrinsic_parameter_request_item.html#ae61cb309fff8dd1eb96f56b78dd43b75',1,'ExtrinsicParameterRequestItem::yaw()'],['../struct_extrinsic_parameter_response_item.html#a80e3e05dceb68adf7a9bd847bd35329a',1,'ExtrinsicParameterResponseItem::yaw()'],['../struct_lidar_set_extrinsic_parameter_request.html#a52e1efe159b3c5886cfaeb08d3baabb0',1,'LidarSetExtrinsicParameterRequest::yaw()'],['../struct_lidar_get_extrinsic_parameter_response.html#adafd0fca99f28c8087b87aad78dace06',1,'LidarGetExtrinsicParameterResponse::yaw()']]], + ['yellow',['yellow',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a2677f9c054be6ae2a2e673a92ba27189',1,'spdlog::sinks::ansicolor_sink::yellow()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#aa148f87d2c8b234c306009268ac7b812',1,'spdlog::sinks::wincolor_sink::YELLOW()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad487dd0b55dfcacdd920ccbdaeafa351',1,'fmt::v5::yellow()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaad487dd0b55dfcacdd920ccbdaeafa351',1,'fmt::v5::yellow()']]], + ['yellow_5fgreen',['yellow_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aa889858bd19327fe8b643b9ff36a1782',1,'fmt::v5']]] ]; diff --git a/docs/search/all_1b.js b/docs/search/all_1b.js index 27b7948..1c51512 100644 --- a/docs/search/all_1b.js +++ b/docs/search/all_1b.js @@ -1,24 +1,7 @@ var searchData= [ - ['_7eansicolor_5fsink',['~ansicolor_sink',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#abca2e1439a310ff1a4d75044a5c718d1',1,'spdlog::sinks::ansicolor_sink']]], - ['_7earg_5fmap',['~arg_map',['../classfmt_1_1v5_1_1internal_1_1arg__map.html#a31d7e9121428e608bbb580cf53ae85de',1,'fmt::v5::internal::arg_map']]], - ['_7easync_5fmsg',['~async_msg',['../structspdlog_1_1details_1_1async__msg.html#ab4a9c6bb231f8b467f4a9bf43820da45',1,'spdlog::details::async_msg']]], - ['_7ebasic_5fbuffer',['~basic_buffer',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a07f015e4a57443a29753c186e0e5d0ee',1,'fmt::v5::internal::basic_buffer']]], - ['_7ebasic_5fmemory_5fbuffer',['~basic_memory_buffer',['../classfmt_1_1v5_1_1basic__memory__buffer.html#a16dc183a56fba190395fdea7629f69ca',1,'fmt::v5::basic_memory_buffer']]], - ['_7ebuffered_5ffile',['~buffered_file',['../classfmt_1_1v5_1_1buffered__file.html#a693d766ec234eaffb9459cc4ba16c5b6',1,'fmt::v5::buffered_file']]], - ['_7ecommport',['~CommPort',['../classlivox_1_1_comm_port.html#a12578479c9799e0e1019e5698841072b',1,'livox::CommPort']]], - ['_7efile',['~file',['../classfmt_1_1v5_1_1file.html#a7b0a3efd73b28117b8ef62ad5981cf73',1,'fmt::v5::file']]], - ['_7efile_5fhelper',['~file_helper',['../classspdlog_1_1details_1_1file__helper.html#aad84ef5f999c2721a0a8ad36ce641e8c',1,'spdlog::details::file_helper']]], - ['_7eflag_5fformatter',['~flag_formatter',['../classspdlog_1_1details_1_1flag__formatter.html#a104f93112896f70c5dedf970240ef12b',1,'spdlog::details::flag_formatter']]], - ['_7eformatter',['~formatter',['../classspdlog_1_1formatter.html#a63ee38e660519d09020b21dd7d54d4fe',1,'spdlog::formatter']]], - ['_7elogger',['~logger',['../classspdlog_1_1logger.html#a3691352a0a61bcba0bf3fb32d236bce5',1,'spdlog::logger']]], - ['_7eperiodic_5fworker',['~periodic_worker',['../classspdlog_1_1details_1_1periodic__worker.html#a21168ffd3a91ca2d82fd8959c205a464',1,'spdlog::details::periodic_worker']]], - ['_7eprettify_5fhandler',['~prettify_handler',['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#afeb64699e57c8b20dff3b44048fb60ac',1,'fmt::v5::internal::prettify_handler']]], - ['_7eprotocol',['~Protocol',['../classlivox_1_1_protocol.html#ad44a13b2298df2c134bb41537a2d8706',1,'livox::Protocol']]], - ['_7escoped_5fpad',['~scoped_pad',['../classspdlog_1_1details_1_1scoped__pad.html#ad901678fa607829f784cd293f712a112',1,'spdlog::details::scoped_pad']]], - ['_7esink',['~sink',['../classspdlog_1_1sinks_1_1sink.html#a2637af0973ac863eedd76ee683279c0b',1,'spdlog::sinks::sink']]], - ['_7estdout_5fsink',['~stdout_sink',['../classspdlog_1_1sinks_1_1stdout__sink.html#ae0e434d7d55f6ec9c05ff308bc8e673b',1,'spdlog::sinks::stdout_sink']]], - ['_7esyslog_5fsink',['~syslog_sink',['../classspdlog_1_1sinks_1_1syslog__sink.html#ae440dafe6eca68065ac0b6438761ac38',1,'spdlog::sinks::syslog_sink']]], - ['_7ethread_5fpool',['~thread_pool',['../classspdlog_1_1details_1_1thread__pool.html#a27e41d821a8aa8137bc0e64df031ccd4',1,'spdlog::details::thread_pool']]], - ['_7ewincolor_5fsink',['~wincolor_sink',['../classspdlog_1_1sinks_1_1wincolor__sink.html#a229d666b7880d587aefa8c5d999acfb4',1,'spdlog::sinks::wincolor_sink']]] + ['z',['z',['../struct_livox_raw_point.html#a1026beb1f1729bdc38e06edf11bb06e0',1,'LivoxRawPoint::z()'],['../struct_livox_point.html#af2cd18d88bc85941740eae6e09b88d70',1,'LivoxPoint::z()'],['../struct_extrinsic_parameter_request_item.html#ae6282ea34d55b9f40a75dc45be853429',1,'ExtrinsicParameterRequestItem::z()'],['../struct_extrinsic_parameter_response_item.html#a0039b1c815784533f656d5e53a22de8e',1,'ExtrinsicParameterResponseItem::z()'],['../struct_lidar_set_extrinsic_parameter_request.html#a80fc49ccc2943501b4706c004e3a8cd8',1,'LidarSetExtrinsicParameterRequest::z()'],['../struct_lidar_get_extrinsic_parameter_response.html#a8f5ae9799b044b30a17a9b7878f88716',1,'LidarGetExtrinsicParameterResponse::z()']]], + ['z_5fformatter',['z_formatter',['../classspdlog_1_1details_1_1z__formatter.html',1,'spdlog::details::z_formatter'],['../classspdlog_1_1details_1_1z__formatter.html#a3c7902ee9047ef7c0d53cf1e9c4cd834',1,'spdlog::details::z_formatter::z_formatter(padding_info padinfo)'],['../classspdlog_1_1details_1_1z__formatter.html#a230a4469c1ffda4d06bed933ecca1fd5',1,'spdlog::details::z_formatter::z_formatter()=default'],['../classspdlog_1_1details_1_1z__formatter.html#a09f0b7e5cf2bc8260375d38ac9b14a31',1,'spdlog::details::z_formatter::z_formatter(const z_formatter &)=delete']]], + ['zero_5for_5fpowers_5fof_5f10_5f32',['ZERO_OR_POWERS_OF_10_32',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a7c75c3b052395aa783f67d1221946c27',1,'fmt::v5::internal::basic_data']]], + ['zero_5for_5fpowers_5fof_5f10_5f64',['ZERO_OR_POWERS_OF_10_64',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#aff0c2d26ec88801043953054e3bcc971',1,'fmt::v5::internal::basic_data']]] ]; diff --git a/docs/search/all_1c.html b/docs/search/all_1c.html new file mode 100644 index 0000000..177e215 --- /dev/null +++ b/docs/search/all_1c.html @@ -0,0 +1,30 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/docs/search/all_1c.js b/docs/search/all_1c.js new file mode 100644 index 0000000..27b7948 --- /dev/null +++ b/docs/search/all_1c.js @@ -0,0 +1,24 @@ +var searchData= +[ + ['_7eansicolor_5fsink',['~ansicolor_sink',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#abca2e1439a310ff1a4d75044a5c718d1',1,'spdlog::sinks::ansicolor_sink']]], + ['_7earg_5fmap',['~arg_map',['../classfmt_1_1v5_1_1internal_1_1arg__map.html#a31d7e9121428e608bbb580cf53ae85de',1,'fmt::v5::internal::arg_map']]], + ['_7easync_5fmsg',['~async_msg',['../structspdlog_1_1details_1_1async__msg.html#ab4a9c6bb231f8b467f4a9bf43820da45',1,'spdlog::details::async_msg']]], + ['_7ebasic_5fbuffer',['~basic_buffer',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a07f015e4a57443a29753c186e0e5d0ee',1,'fmt::v5::internal::basic_buffer']]], + ['_7ebasic_5fmemory_5fbuffer',['~basic_memory_buffer',['../classfmt_1_1v5_1_1basic__memory__buffer.html#a16dc183a56fba190395fdea7629f69ca',1,'fmt::v5::basic_memory_buffer']]], + ['_7ebuffered_5ffile',['~buffered_file',['../classfmt_1_1v5_1_1buffered__file.html#a693d766ec234eaffb9459cc4ba16c5b6',1,'fmt::v5::buffered_file']]], + ['_7ecommport',['~CommPort',['../classlivox_1_1_comm_port.html#a12578479c9799e0e1019e5698841072b',1,'livox::CommPort']]], + ['_7efile',['~file',['../classfmt_1_1v5_1_1file.html#a7b0a3efd73b28117b8ef62ad5981cf73',1,'fmt::v5::file']]], + ['_7efile_5fhelper',['~file_helper',['../classspdlog_1_1details_1_1file__helper.html#aad84ef5f999c2721a0a8ad36ce641e8c',1,'spdlog::details::file_helper']]], + ['_7eflag_5fformatter',['~flag_formatter',['../classspdlog_1_1details_1_1flag__formatter.html#a104f93112896f70c5dedf970240ef12b',1,'spdlog::details::flag_formatter']]], + ['_7eformatter',['~formatter',['../classspdlog_1_1formatter.html#a63ee38e660519d09020b21dd7d54d4fe',1,'spdlog::formatter']]], + ['_7elogger',['~logger',['../classspdlog_1_1logger.html#a3691352a0a61bcba0bf3fb32d236bce5',1,'spdlog::logger']]], + ['_7eperiodic_5fworker',['~periodic_worker',['../classspdlog_1_1details_1_1periodic__worker.html#a21168ffd3a91ca2d82fd8959c205a464',1,'spdlog::details::periodic_worker']]], + ['_7eprettify_5fhandler',['~prettify_handler',['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#afeb64699e57c8b20dff3b44048fb60ac',1,'fmt::v5::internal::prettify_handler']]], + ['_7eprotocol',['~Protocol',['../classlivox_1_1_protocol.html#ad44a13b2298df2c134bb41537a2d8706',1,'livox::Protocol']]], + ['_7escoped_5fpad',['~scoped_pad',['../classspdlog_1_1details_1_1scoped__pad.html#ad901678fa607829f784cd293f712a112',1,'spdlog::details::scoped_pad']]], + ['_7esink',['~sink',['../classspdlog_1_1sinks_1_1sink.html#a2637af0973ac863eedd76ee683279c0b',1,'spdlog::sinks::sink']]], + ['_7estdout_5fsink',['~stdout_sink',['../classspdlog_1_1sinks_1_1stdout__sink.html#ae0e434d7d55f6ec9c05ff308bc8e673b',1,'spdlog::sinks::stdout_sink']]], + ['_7esyslog_5fsink',['~syslog_sink',['../classspdlog_1_1sinks_1_1syslog__sink.html#ae440dafe6eca68065ac0b6438761ac38',1,'spdlog::sinks::syslog_sink']]], + ['_7ethread_5fpool',['~thread_pool',['../classspdlog_1_1details_1_1thread__pool.html#a27e41d821a8aa8137bc0e64df031ccd4',1,'spdlog::details::thread_pool']]], + ['_7ewincolor_5fsink',['~wincolor_sink',['../classspdlog_1_1sinks_1_1wincolor__sink.html#a229d666b7880d587aefa8c5d999acfb4',1,'spdlog::sinks::wincolor_sink']]] +]; diff --git a/docs/search/all_2.js b/docs/search/all_2.js index 87868ee..9e97ab1 100644 --- a/docs/search/all_2.js +++ b/docs/search/all_2.js @@ -1,80 +1,73 @@ var searchData= [ - ['b',['b',['../structfmt_1_1v5_1_1rgb.html#a8643af9dc4da837fce1b6f633b07bb34',1,'fmt::v5::rgb']]], - ['b_5fformatter',['B_formatter',['../classspdlog_1_1details_1_1_b__formatter.html',1,'spdlog::details::B_formatter'],['../classspdlog_1_1details_1_1b__formatter.html',1,'spdlog::details::b_formatter'],['../classspdlog_1_1details_1_1b__formatter.html#a08418409ea0e59ea9b79d27974e30824',1,'spdlog::details::b_formatter::b_formatter()'],['../classspdlog_1_1details_1_1_b__formatter.html#a2dde180e941a7b44a65b7967fec4d359',1,'spdlog::details::B_formatter::B_formatter()']]], - ['back_5finsert_5frange',['back_insert_range',['../classfmt_1_1v5_1_1back__insert__range.html',1,'fmt::v5::back_insert_range< Container >'],['../classfmt_1_1v5_1_1back__insert__range.html#a7ac1989e9b9da2e27d42113a75ff8f33',1,'fmt::v5::back_insert_range::back_insert_range(Container &c)'],['../classfmt_1_1v5_1_1back__insert__range.html#abc01c2e16db484f994b86a47b133acab',1,'fmt::v5::back_insert_range::back_insert_range(typename base::iterator it)']]], - ['backend_5fflush_5f',['backend_flush_',['../classspdlog_1_1async__logger.html#a24a37552c3339c7b129a38a2c4702689',1,'spdlog::async_logger']]], - ['backend_5flog_5f',['backend_log_',['../classspdlog_1_1async__logger.html#a50a7de9842c326ab5b99cbcc851d9c60',1,'spdlog::async_logger']]], - ['background_5fcolor',['BACKGROUND_COLOR',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a5ea6f88946a0959275332ac157eb9775',1,'fmt::v5::internal::basic_data']]], - ['base',['base',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#aa704255e4ff2778a7149a7d2cf687e5f',1,'fmt::v5::internal::truncating_iterator_base']]], - ['base_5fsink',['base_sink',['../classspdlog_1_1sinks_1_1base__sink.html',1,'spdlog::sinks::base_sink< Mutex >'],['../classspdlog_1_1sinks_1_1base__sink.html#a38658ba620d110065ce93e178b9ec60e',1,'spdlog::sinks::base_sink::base_sink()=default'],['../classspdlog_1_1sinks_1_1base__sink.html#a9639062f2ce3598203c0d958576491d1',1,'spdlog::sinks::base_sink::base_sink(const base_sink &)=delete']]], - ['base_5fsink_2eh',['base_sink.h',['../base__sink_8h.html',1,'']]], - ['basic_5fbuffer',['basic_buffer',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html',1,'fmt::v5::internal::basic_buffer< T >'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a590c6a8e6f850c98dbc82ffea1b50650',1,'fmt::v5::internal::basic_buffer::basic_buffer(std::size_t sz)'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8a3f3c0ba824744bfc879e042c691dca',1,'fmt::v5::internal::basic_buffer::basic_buffer(T *p=NULL, std::size_t sz=0, std::size_t cap=0)']]], - ['basic_5fbuffer_3c_20char_20_3e',['basic_buffer< Char >',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html',1,'fmt::v5::internal::basic_buffer< Char >'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html',1,'fmt::v5::internal::basic_buffer< char >']]], - ['basic_5fbuffer_3c_20container_3a_3avalue_5ftype_20_3e',['basic_buffer< Container::value_type >',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html',1,'fmt::v5::internal']]], - ['basic_5fcstring_5fview',['basic_cstring_view',['../classfmt_1_1v5_1_1basic__cstring__view.html',1,'fmt::v5::basic_cstring_view< Char >'],['../classfmt_1_1v5_1_1basic__cstring__view.html#ad21a04a526524ac3477761399a792fda',1,'fmt::v5::basic_cstring_view::basic_cstring_view(const Char *s)'],['../classfmt_1_1v5_1_1basic__cstring__view.html#a56c61688f005a3f7495d45b443d78d1c',1,'fmt::v5::basic_cstring_view::basic_cstring_view(const std::basic_string< Char > &s)']]], - ['basic_5fdata',['basic_data',['../structfmt_1_1v5_1_1internal_1_1basic__data.html',1,'fmt::v5::internal']]], - ['basic_5ffile_5fsink',['basic_file_sink',['../classspdlog_1_1sinks_1_1basic__file__sink.html',1,'spdlog::sinks::basic_file_sink< Mutex >'],['../classspdlog_1_1sinks_1_1basic__file__sink.html#a799e95cc46fd69b03f4ef7497aa21436',1,'spdlog::sinks::basic_file_sink::basic_file_sink()']]], - ['basic_5ffile_5fsink_2eh',['basic_file_sink.h',['../basic__file__sink_8h.html',1,'']]], - ['basic_5ffile_5fsink_5fmt',['basic_file_sink_mt',['../namespacespdlog_1_1sinks.html#a3c2170781ef0f706f8cea55f8d6b0609',1,'spdlog::sinks']]], - ['basic_5ffile_5fsink_5fst',['basic_file_sink_st',['../namespacespdlog_1_1sinks.html#ab6d38313481cd7fedfb8aeb68c2c61d1',1,'spdlog::sinks']]], - ['basic_5fformat_5farg',['basic_format_arg',['../classfmt_1_1v5_1_1basic__format__arg.html',1,'fmt::v5::basic_format_arg< Context >'],['../classfmt_1_1v5_1_1basic__format__arg.html#ab92c5293847324e1383d7bab6c7b9f35',1,'fmt::v5::basic_format_arg::basic_format_arg()']]], - ['basic_5fformat_5fargs',['basic_format_args',['../classfmt_1_1v5_1_1basic__format__args.html',1,'fmt::v5::basic_format_args< Context >'],['../classfmt_1_1v5_1_1basic__format__args.html#a324ac8280585ccbee69bcf0a75c3765a',1,'fmt::v5::basic_format_args::basic_format_args()'],['../classfmt_1_1v5_1_1basic__format__args.html#abbaf332be8c119f7ed6b05e71ebde3c9',1,'fmt::v5::basic_format_args::basic_format_args(const format_arg_store< Context, Args... > &store)'],['../classfmt_1_1v5_1_1basic__format__args.html#a46d01e323ae8a2436a4ec4ed47d379b1',1,'fmt::v5::basic_format_args::basic_format_args(const format_arg *args, size_type count)']]], - ['basic_5fformat_5fargs_3c_20basic_5fformat_5fcontext_3c_20outputit_2c_20char_20_3e_20_3e',['basic_format_args< basic_format_context< OutputIt, Char > >',['../classfmt_1_1v5_1_1basic__format__args.html',1,'fmt::v5']]], - ['basic_5fformat_5fargs_3c_20basic_5fprintf_5fcontext_3c_20outputit_2c_20char_2c_20argformatter_20_3e_20_3e',['basic_format_args< basic_printf_context< OutputIt, Char, ArgFormatter > >',['../classfmt_1_1v5_1_1basic__format__args.html',1,'fmt::v5']]], - ['basic_5fformat_5fargs_3c_20context_20_3e',['basic_format_args< Context >',['../classfmt_1_1v5_1_1basic__format__arg.html#ab8e9e33cc7b78829001a86ef6110ebb6',1,'fmt::v5::basic_format_arg::basic_format_args< Context >()'],['../classfmt_1_1v5_1_1format__arg__store.html#ab8e9e33cc7b78829001a86ef6110ebb6',1,'fmt::v5::format_arg_store::basic_format_args< Context >()']]], - ['basic_5fformat_5fargs_3c_20format_5fcontext_20_3e',['basic_format_args< format_context >',['../classfmt_1_1v5_1_1basic__format__args.html',1,'fmt::v5']]], - ['basic_5fformat_5fargs_3c_20wformat_5fcontext_20_3e',['basic_format_args< wformat_context >',['../classfmt_1_1v5_1_1basic__format__args.html',1,'fmt::v5']]], - ['basic_5fformat_5fcontext',['basic_format_context',['../classfmt_1_1v5_1_1basic__format__context.html',1,'fmt::v5::basic_format_context< OutputIt, Char >'],['../classfmt_1_1v5_1_1basic__format__context.html#adf22dc09de008340bf108c68281724f9',1,'fmt::v5::basic_format_context::basic_format_context()']]], - ['basic_5fformat_5fspecs',['basic_format_specs',['../structfmt_1_1v5_1_1basic__format__specs.html',1,'fmt::v5::basic_format_specs< Char >'],['../structfmt_1_1v5_1_1basic__format__specs.html#a3eea365872084949e7a8e14c7d7131f7',1,'fmt::v5::basic_format_specs::basic_format_specs()']]], - ['basic_5fformat_5fspecs_3c_20char_5ftype_20_3e',['basic_format_specs< char_type >',['../structfmt_1_1v5_1_1basic__format__specs.html',1,'fmt::v5']]], - ['basic_5fformat_5fspecs_3c_20context_3a_3achar_5ftype_20_3e',['basic_format_specs< Context::char_type >',['../structfmt_1_1v5_1_1basic__format__specs.html',1,'fmt::v5']]], - ['basic_5fformat_5fspecs_3c_20parsecontext_3a_3achar_5ftype_20_3e',['basic_format_specs< ParseContext::char_type >',['../structfmt_1_1v5_1_1basic__format__specs.html',1,'fmt::v5']]], - ['basic_5flogger_5fmt',['basic_logger_mt',['../namespacespdlog.html#abd73a6177edaccb77048bf47e3f8ad23',1,'spdlog']]], - ['basic_5flogger_5fst',['basic_logger_st',['../namespacespdlog.html#abc9cd0646191cc0b295b6e50367b22b7',1,'spdlog']]], - ['basic_5fmemory_5fbuffer',['basic_memory_buffer',['../classfmt_1_1v5_1_1basic__memory__buffer.html',1,'fmt::v5::basic_memory_buffer< T, SIZE, Allocator >'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#ad1d2a73db09717e1222e62d8e0f64e27',1,'fmt::v5::basic_memory_buffer::basic_memory_buffer(const Allocator &alloc=Allocator())'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#a4a840dd1d757f57f9ceee5da7442a9d1',1,'fmt::v5::basic_memory_buffer::basic_memory_buffer(basic_memory_buffer &&other)']]], - ['basic_5fmemory_5fbuffer_3c_20char_20_3e',['basic_memory_buffer< Char >',['../classfmt_1_1v5_1_1basic__memory__buffer.html',1,'fmt::v5']]], - ['basic_5fmemory_5fbuffer_3c_20char_2c_20128_20_3e',['basic_memory_buffer< char, 128 >',['../classfmt_1_1v5_1_1basic__memory__buffer.html',1,'fmt::v5']]], - ['basic_5fmemory_5fbuffer_3c_20char_2c_20176_20_3e',['basic_memory_buffer< char, 176 >',['../classfmt_1_1v5_1_1basic__memory__buffer.html',1,'fmt::v5']]], - ['basic_5fparse_5fcontext',['basic_parse_context',['../classfmt_1_1v5_1_1basic__parse__context.html',1,'fmt::v5::basic_parse_context< Char, ErrorHandler >'],['../classfmt_1_1v5_1_1basic__parse__context.html#a2f71955aa8532331a4d3528c086df716',1,'fmt::v5::basic_parse_context::basic_parse_context()']]], - ['basic_5fparse_5fcontext_3c_20char_20_3e',['basic_parse_context< Char >',['../classfmt_1_1v5_1_1basic__parse__context.html',1,'fmt::v5']]], - ['basic_5fprintf_5fcontext',['basic_printf_context',['../classfmt_1_1v5_1_1basic__printf__context.html',1,'fmt::v5::basic_printf_context< OutputIt, Char, ArgFormatter >'],['../classfmt_1_1v5_1_1basic__printf__context.html#a800016bfb5e3a94a379fdd68a8d5d4ca',1,'fmt::v5::basic_printf_context::basic_printf_context()']]], - ['basic_5fprintf_5fcontext_5ft',['basic_printf_context_t',['../structfmt_1_1v5_1_1basic__printf__context__t.html',1,'fmt::v5']]], - ['basic_5fstring_5fview',['basic_string_view',['../classfmt_1_1v5_1_1basic__string__view.html',1,'fmt::v5::basic_string_view< Char >'],['../classfmt_1_1v5_1_1basic__string__view.html#af700667b227e1aa54fa10e5536f0dd60',1,'fmt::v5::basic_string_view::basic_string_view()'],['../classfmt_1_1v5_1_1basic__string__view.html#a9a52d640307af79b979b7f29d18f8f34',1,'fmt::v5::basic_string_view::basic_string_view(const Char *s, size_t count)'],['../classfmt_1_1v5_1_1basic__string__view.html#ab45c1b7cf97a9d4b7d6290ab374df761',1,'fmt::v5::basic_string_view::basic_string_view(const Char *s)'],['../classfmt_1_1v5_1_1basic__string__view.html#a796a7a1089f143f40585a5604983bb68',1,'fmt::v5::basic_string_view::basic_string_view(const std::basic_string< Char, Alloc > &s)']]], - ['basic_5fstring_5fview_3c_20char_20_3e',['basic_string_view< char >',['../classfmt_1_1v5_1_1basic__string__view.html',1,'fmt::v5']]], - ['basic_5fstring_5fview_3c_20char8_5ft_20_3e',['basic_string_view< char8_t >',['../classfmt_1_1v5_1_1basic__string__view.html',1,'fmt::v5']]], - ['basic_5fstring_5fview_3c_20char_5ftype_20_3e',['basic_string_view< char_type >',['../classfmt_1_1v5_1_1basic__string__view.html',1,'fmt::v5']]], - ['basic_5fwriter',['basic_writer',['../classfmt_1_1v5_1_1basic__writer.html',1,'fmt::v5::basic_writer< Range >'],['../classfmt_1_1v5_1_1basic__writer.html#aeb6a206671e6d416a4696343e940ea33',1,'fmt::v5::basic_writer::basic_writer()']]], - ['begin',['begin',['../structfmt_1_1v5_1_1arg__join.html#a51f66865c2e307da6d7d1f98a78fda59',1,'fmt::v5::arg_join::begin()'],['../classspdlog_1_1details_1_1bytes__range.html#abe7813dcd59c848fd56b0c33e5bbc134',1,'spdlog::details::bytes_range::begin()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8d9a7509b995a14fda3e033789be636e',1,'fmt::v5::internal::basic_buffer::begin()'],['../classfmt_1_1v5_1_1basic__string__view.html#af73f0e919e28f3c38245937887268bc2',1,'fmt::v5::basic_string_view::begin()'],['../classfmt_1_1v5_1_1basic__parse__context.html#a026a5f2c3de8569b7527c7570009ecc6',1,'fmt::v5::basic_parse_context::begin()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#a002ecd520551aef8a4af81c9cc94eb91',1,'fmt::v5::internal::context_base::begin()'],['../classfmt_1_1v5_1_1output__range.html#ad67186390eb4062ee39779478d554b98',1,'fmt::v5::output_range::begin()'],['../namespacefmt_1_1v5_1_1internal.html#ae3eb46c4e73a862893cc2f99a58938a4',1,'fmt::v5::internal::begin(const C &c) -> decltype(c.begin())'],['../namespacefmt_1_1v5_1_1internal.html#aa579a1942a92c8b98d2759981faad596',1,'fmt::v5::internal::begin(T(&array)[N])']]], - ['beige',['beige',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aefc5f4b470619b932aed03953e50ce60',1,'fmt::v5']]], - ['bg',['bg',['../classfmt_1_1v5_1_1text__style.html#a72bef1c6e5993308ca69290a262468b0',1,'fmt::v5::text_style::bg()'],['../namespacefmt_1_1v5.html#adf2b181704d47b13c292a0c201c157d3',1,'fmt::v5::bg()']]], - ['bin_5fto_5fhex_2eh',['bin_to_hex.h',['../bin__to__hex_8h.html',1,'']]], - ['bin_5fwriter',['bin_writer',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html',1,'fmt::v5::basic_writer::int_writer']]], - ['bisque',['bisque',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ac7357031b08389007e6da9f56ea145e0',1,'fmt::v5']]], - ['bit_5fcast',['bit_cast',['../namespacefmt_1_1v5_1_1internal.html#aee0ff53560cd7c3f16500a4cdbf3655e',1,'fmt::v5::internal']]], - ['black',['black',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#afe5bffc4e1d4977d2a351c8772f2f676',1,'spdlog::sinks::ansicolor_sink::black()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a1ffd9e753c8054cc61456ac7fac1ac89',1,'fmt::v5::black()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa1ffd9e753c8054cc61456ac7fac1ac89',1,'fmt::v5::black()']]], - ['blanched_5falmond',['blanched_almond',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a7fbe63cdab154c0227420b368fcaea3d',1,'fmt::v5']]], - ['blink',['blink',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#addca553132fac957295bd585ce6f59a8',1,'spdlog::sinks::ansicolor_sink']]], - ['block',['block',['../namespacespdlog.html#a42e109759a11c9514d3f6313a7709852a14511f2f5564650d129ca7cabc333278',1,'spdlog']]], - ['blue',['blue',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#aa5f719a0fe17fe167d2c90e65173865d',1,'spdlog::sinks::ansicolor_sink::blue()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a48d6215903dff56238e52e8891380c8f',1,'fmt::v5::blue()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa48d6215903dff56238e52e8891380c8f',1,'fmt::v5::blue()']]], - ['blue_5fviolet',['blue_violet',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a25d876582c42c77bd9fe6c152f88a752',1,'fmt::v5']]], - ['bold',['bold',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab3b3847f7cfac7e21e5a4300ef0295f0',1,'spdlog::sinks::ansicolor_sink::bold()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a77ef730edcfe9f6f000bed8c846aa6bf',1,'spdlog::sinks::wincolor_sink::BOLD()'],['../namespacefmt_1_1v5.html#a3c18bfe3f941ca2b94688cb6d54f1ceca69dcab4a73aeec2113f69b61e6263da8',1,'fmt::v5::bold()']]], - ['bool_5ftype',['bool_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13aecccd88040ba51af7e74784567384260',1,'fmt::v5::internal']]], - ['bright_5fblack',['bright_black',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa74474ae20bf3ef3bce6fd679194ce383',1,'fmt::v5']]], - ['bright_5fblue',['bright_blue',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaac5b47880b4b2ec37179078d63a85def3',1,'fmt::v5']]], - ['bright_5fcyan',['bright_cyan',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaacc69f9955c2bf916bb9a83f38141432f',1,'fmt::v5']]], - ['bright_5fgreen',['bright_green',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaabd5b4652dffd84bab66529361d0c4974',1,'fmt::v5']]], - ['bright_5fmagenta',['bright_magenta',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa37553b57ad1d7f61b0c51f5a535f72bf',1,'fmt::v5']]], - ['bright_5fred',['bright_red',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa8b84c6e788e91a3a45b9dabedb160590',1,'fmt::v5']]], - ['bright_5fwhite',['bright_white',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaada7527acf78cb4e7b582e8163a1f642a',1,'fmt::v5']]], - ['bright_5fyellow',['bright_yellow',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa75dd76d162b9554ec8b63736bc22d93e',1,'fmt::v5']]], - ['broadcast_5fcode',['broadcast_code',['../struct_device_info.html#ac176ce6c12803b25c3aedf6b65af90ca',1,'DeviceInfo::broadcast_code()'],['../struct_broadcast_device_info.html#a7564c9b360647ac5a0b982612f89a773',1,'BroadcastDeviceInfo::broadcast_code()'],['../struct_connected_lidar_info.html#a0e349a8cef82212da0d7116cb37b5fdd',1,'ConnectedLidarInfo::broadcast_code()'],['../struct_lidar_mode_request_item.html#a608649769c4b601a2499f61cd0965e0b',1,'LidarModeRequestItem::broadcast_code()'],['../struct_return_code.html#a6009b33a757ec7864e0b77a40b42b8c9',1,'ReturnCode::broadcast_code()'],['../struct_device_broadcast_code.html#a92b5ee4638f09060bf3d1d8322619229',1,'DeviceBroadcastCode::broadcast_code()'],['../struct_rain_fog_suppress_request_item.html#ae533c935fdd671d704ab1f9419795eab',1,'RainFogSuppressRequestItem::broadcast_code()'],['../struct_extrinsic_parameter_request_item.html#aeaa77f9da3a5df1ecc36c93641241942',1,'ExtrinsicParameterRequestItem::broadcast_code()'],['../struct_extrinsic_parameter_response_item.html#ab22d94ca17e363344d9dfd43fd7d81c9',1,'ExtrinsicParameterResponseItem::broadcast_code()'],['../struct_lidar_state_item.html#a42089310e0005a55e89fe97bdca1dacb',1,'LidarStateItem::broadcast_code()']]], - ['broadcastdeviceinfo',['BroadcastDeviceInfo',['../struct_broadcast_device_info.html',1,'']]], - ['brown',['brown',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a6ff47afa5dc7daa42cc705a03fca8a9b',1,'fmt::v5']]], - ['buf',['buf',['../structlivox_1_1_port_cache.html#a0162595514fe1687637993072bfad504',1,'livox::PortCache::buf()'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aa4a4294911effee4c142bc68fcdd2518',1,'fmt::v5::internal::prettify_handler::buf()']]], - ['buffer',['buffer',['../namespacefmt_1_1v5_1_1internal.html#ae63557fe9ccf973c29dc6dd122fa4ae0',1,'fmt::v5::internal']]], - ['buffer_5fcontext',['buffer_context',['../structfmt_1_1v5_1_1buffer__context.html',1,'fmt::v5']]], - ['buffered_5ffile',['buffered_file',['../classfmt_1_1v5_1_1buffered__file.html',1,'fmt::v5::buffered_file'],['../classfmt_1_1v5_1_1buffered__file.html#abeb561e30fd613877c25ebf031eb1104',1,'fmt::v5::buffered_file::buffered_file()'],['../classfmt_1_1v5_1_1buffered__file.html#a89aed138335acd38e0dc1a1618b6b52c',1,'fmt::v5::buffered_file::buffered_file(buffered_file &&other)'],['../classfmt_1_1v5_1_1buffered__file.html#a9acebcee0bfc79cd3b49b12c2db0b2ee',1,'fmt::v5::buffered_file::buffered_file(cstring_view filename, cstring_view mode)']]], - ['burly_5fwood',['burly_wood',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad238c6c8a44f8e1933911fe10de064f7',1,'fmt::v5']]], - ['bytes_5frange',['bytes_range',['../classspdlog_1_1details_1_1bytes__range.html',1,'spdlog::details::bytes_range< It >'],['../classspdlog_1_1details_1_1bytes__range.html#aa623616735396b0422737b9b62bdd46e',1,'spdlog::details::bytes_range::bytes_range()']]] + ['a_5fformatter',['a_formatter',['../classspdlog_1_1details_1_1a__formatter.html',1,'spdlog::details::a_formatter'],['../classspdlog_1_1details_1_1_a__formatter.html',1,'spdlog::details::A_formatter'],['../classspdlog_1_1details_1_1a__formatter.html#a48d1f1eba77e826b69ff1e6eea389b63',1,'spdlog::details::a_formatter::a_formatter()'],['../classspdlog_1_1details_1_1_a__formatter.html#aaa0b668428ff16e07a5258575b711955',1,'spdlog::details::A_formatter::A_formatter()']]], + ['abs_5fvalue',['abs_value',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html#ac9041c9b005e35c05a5296f3233954e3',1,'fmt::v5::basic_writer::int_writer::dec_writer::abs_value()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html#aa24440fe129d052f4a8a628675d437c9',1,'fmt::v5::basic_writer::int_writer::bin_writer::abs_value()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html#a94c9f59f76f17baa5e58a9f1d2d825d8',1,'fmt::v5::basic_writer::int_writer::num_writer::abs_value()']]], + ['add_5fch',['add_ch',['../classspdlog_1_1details_1_1aggregate__formatter.html#aa4a450cafac2ed6ef1fdc6dbda962ac6',1,'spdlog::details::aggregate_formatter']]], + ['add_5fdelimiter_5fspaces',['add_delimiter_spaces',['../structfmt_1_1v5_1_1formatting__range.html#ad500eea3b7cf615169158b129d966e26',1,'fmt::v5::formatting_range::add_delimiter_spaces()'],['../structfmt_1_1v5_1_1formatting__tuple.html#adcf53359096ce668a312c2d338bfe226',1,'fmt::v5::formatting_tuple::add_delimiter_spaces()']]], + ['add_5fprepostfix_5fspace',['add_prepostfix_space',['../structfmt_1_1v5_1_1formatting__range.html#acaa8a58402e2e006e8c74eb5dd616182',1,'fmt::v5::formatting_range::add_prepostfix_space()'],['../structfmt_1_1v5_1_1formatting__tuple.html#ae2da340c4f35de9a4fe2a5d1f016accc',1,'fmt::v5::formatting_tuple::add_prepostfix_space()']]], + ['add_5fsink',['add_sink',['../classspdlog_1_1sinks_1_1dist__sink.html#ae2250f59f23ecaf3214da6059198ad3c',1,'spdlog::sinks::dist_sink']]], + ['add_5fthousands_5fsep',['add_thousands_sep',['../classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html',1,'fmt::v5::internal::add_thousands_sep< Char >'],['../classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#abf5e4ae8e94f8574fcd68d2f049df8d2',1,'fmt::v5::internal::add_thousands_sep::add_thousands_sep()']]], + ['addhubtoconnect',['AddHubToConnect',['../livox__sdk_8h.html#ac055ce23f0dd1178665ae7f584ce9f50',1,'livox_sdk.h']]], + ['addlidartoconnect',['AddLidarToConnect',['../livox__sdk_8h.html#a993eddc8d0714c7d7b7a9f08c524639c',1,'livox_sdk.h']]], + ['advance_5fto',['advance_to',['../classfmt_1_1v5_1_1basic__parse__context.html#a4ae214f4e777ec14ab4f7de4b312d2a6',1,'fmt::v5::basic_parse_context::advance_to()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#ae6257fa7c87f16830f7bbb9263991ef8',1,'fmt::v5::internal::context_base::advance_to()']]], + ['aggregate_5fformatter',['aggregate_formatter',['../classspdlog_1_1details_1_1aggregate__formatter.html',1,'spdlog::details::aggregate_formatter'],['../classspdlog_1_1details_1_1aggregate__formatter.html#a068c157540411ecb4932860266effb82',1,'spdlog::details::aggregate_formatter::aggregate_formatter()']]], + ['alice_5fblue',['alice_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a6d65173999078f89f8d4e01036aea8a4',1,'fmt::v5']]], + ['align',['align',['../structfmt_1_1v5_1_1align__spec.html#a970282b2f4fa19d907a7067d905304a7',1,'fmt::v5::align_spec']]], + ['align_5f',['align_',['../structfmt_1_1v5_1_1align__spec.html#a5c40750e67850f9e430ac1278890f96d',1,'fmt::v5::align_spec']]], + ['align_5fcenter',['ALIGN_CENTER',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8a6cf58d6a173204a962db3dae30a01d8c',1,'fmt::v5']]], + ['align_5fdefault',['ALIGN_DEFAULT',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8a32f6d887598434ed14e7579a0b15e1be',1,'fmt::v5']]], + ['align_5fleft',['ALIGN_LEFT',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8a824a96ce4113d35438ba2c14845de1c3',1,'fmt::v5']]], + ['align_5fnumeric',['ALIGN_NUMERIC',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8aa3ce3cd4b41a0dfcb8376a8072a75cda',1,'fmt::v5']]], + ['align_5fright',['ALIGN_RIGHT',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8ab47b991779038b4bc5f4558423a749b1',1,'fmt::v5']]], + ['align_5fspec',['align_spec',['../structfmt_1_1v5_1_1align__spec.html',1,'fmt::v5::align_spec'],['../structfmt_1_1v5_1_1align__spec.html#a74632126deecb543f2e2d08ad0d52d1c',1,'fmt::v5::align_spec::align_spec()']]], + ['alignment',['alignment',['../namespacefmt_1_1v5.html#a0da085ecacb88b605244ce76332bd8d8',1,'fmt::v5']]], + ['allocate',['allocate',['../namespacefmt_1_1v5_1_1internal.html#aa1fa61dacd2056cf7bbc9010b6c3e9ff',1,'fmt::v5::internal']]], + ['alternative',['alternative',['../namespacefmt_1_1v5_1_1internal.html#a8217980ba3189c7d8c3ce93f7d8e4c74aa04fe4e390a7c7d5d4583f85d24e164d',1,'fmt::v5::internal']]], + ['ampm',['ampm',['../namespacespdlog_1_1details.html#a6c1d83e70c17aa8427909d1c14bb1dc4',1,'spdlog::details']]], + ['android_5flogger_5fmt',['android_logger_mt',['../namespacespdlog.html#a0811adb1075181f73abc87c624fbff7e',1,'spdlog']]], + ['android_5flogger_5fst',['android_logger_st',['../namespacespdlog.html#aab5b508d51de238919a570cf3ca6d3db',1,'spdlog']]], + ['android_5fsink',['android_sink',['../classspdlog_1_1sinks_1_1android__sink.html',1,'spdlog::sinks::android_sink< Mutex >'],['../classspdlog_1_1sinks_1_1android__sink.html#afc2727bf62737809cd3f2105e5637540',1,'spdlog::sinks::android_sink::android_sink()']]], + ['android_5fsink_2eh',['android_sink.h',['../android__sink_8h.html',1,'']]], + ['android_5fsink_5fmt',['android_sink_mt',['../namespacespdlog_1_1sinks.html#afa3ee88e3e87a4908cd80f8ccd4fdd3e',1,'spdlog::sinks']]], + ['android_5fsink_5fst',['android_sink_st',['../namespacespdlog_1_1sinks.html#a38acf93862031f1db0e4bdcf8e8b18f3',1,'spdlog::sinks']]], + ['ansi_5fcolor_5fescape',['ansi_color_escape',['../structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html',1,'fmt::v5::internal::ansi_color_escape< Char >'],['../structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#a83152518bf4a4ee78ab164994593b134',1,'fmt::v5::internal::ansi_color_escape::ansi_color_escape(internal::color_type text_color, const char *esc)'],['../structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#a508568e9d0e8a08a672dde8e7d416330',1,'fmt::v5::internal::ansi_color_escape::ansi_color_escape(emphasis em)']]], + ['ansicolor_5fsink',['ansicolor_sink',['../classspdlog_1_1sinks_1_1ansicolor__sink.html',1,'spdlog::sinks::ansicolor_sink< TargetStream, ConsoleMutex >'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#aed8c41cc6f792b27bc37d2f46536268d',1,'spdlog::sinks::ansicolor_sink::ansicolor_sink()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab169c076bac30ee54cf369a7f6bfb2ea',1,'spdlog::sinks::ansicolor_sink::ansicolor_sink(const ansicolor_sink &other)=delete']]], + ['ansicolor_5fsink_2eh',['ansicolor_sink.h',['../ansicolor__sink_8h.html',1,'']]], + ['ansicolor_5fstderr_5fsink_5fmt',['ansicolor_stderr_sink_mt',['../namespacespdlog_1_1sinks.html#aa12104ff6999c8908f687c3eb87d827e',1,'spdlog::sinks']]], + ['ansicolor_5fstderr_5fsink_5fst',['ansicolor_stderr_sink_st',['../namespacespdlog_1_1sinks.html#a3d8d6c5070124583420003b8c00ec441',1,'spdlog::sinks']]], + ['ansicolor_5fstdout_5fsink_5fmt',['ansicolor_stdout_sink_mt',['../namespacespdlog_1_1sinks.html#a10475192b7db414c386fbccb7401d852',1,'spdlog::sinks']]], + ['ansicolor_5fstdout_5fsink_5fst',['ansicolor_stdout_sink_st',['../namespacespdlog_1_1sinks.html#aa30d2f8d27e36f73043723a42199fd7b',1,'spdlog::sinks']]], + ['antique_5fwhite',['antique_white',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5478409977d30af9f13744df6850c5ac',1,'fmt::v5']]], + ['append',['append',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a5c6d1a6230a4c8e713244bbdd63a1a24',1,'fmt::v5::internal::basic_buffer::append()'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a5a8b13e38107753a839767adae553ed2',1,'fmt::v5::internal::prettify_handler::append(ptrdiff_t n, char c)'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aa0537d2fca130c630cdbc7d7e06bc4cf',1,'fmt::v5::internal::prettify_handler::append(char c)'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#a0c5ba7253e9f0080698e4771cd4332b1',1,'fmt::v5::internal::char_counter::append(ptrdiff_t n, char)'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#a30c9aa9646ae4d285e4f850dc7c7d51c',1,'fmt::v5::internal::char_counter::append(char)']]], + ['append_5fbuf',['append_buf',['../namespacespdlog_1_1details_1_1fmt__helper.html#a1cd64e7ba833d726c77344aa9fb85e6a',1,'spdlog::details::fmt_helper']]], + ['append_5fint',['append_int',['../namespacespdlog_1_1details_1_1fmt__helper.html#a0d2621043fa718e54ffcaa2e9812dfa4',1,'spdlog::details::fmt_helper']]], + ['append_5fstring_5fview',['append_string_view',['../namespacespdlog_1_1details_1_1fmt__helper.html#a603f4d0d8853a61610a0042d5d62fe94',1,'spdlog::details::fmt_helper']]], + ['apply_5fall',['apply_all',['../classspdlog_1_1details_1_1registry.html#a781454ea62603cfaebddf14ec2ec9985',1,'spdlog::details::registry::apply_all()'],['../namespacespdlog.html#a33b888a87a0fccc7b7dd5b89413ce6b7',1,'spdlog::apply_all()']]], + ['aqua',['aqua',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a65cb59645b852c2394ba3ff8b295e83c',1,'fmt::v5']]], + ['aquamarine',['aquamarine',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a39d8e1a1a14670b0a3be357c318867ac',1,'fmt::v5']]], + ['arg',['arg',['../structfmt_1_1v5_1_1format__handler.html#a9df20283c6cfc3b40e350665aa2bf021',1,'fmt::v5::format_handler::arg()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#a6d08d519c4919fba06e32e08f7395cba',1,'fmt::v5::internal::context_base::arg()'],['../namespacefmt_1_1v5.html#a3ef982cd96cf71b5fa7c37269012dafd',1,'fmt::v5::arg(string_view name, const T &arg)'],['../namespacefmt_1_1v5.html#a988bfc81f48221fec1910c217bc0dfcc',1,'fmt::v5::arg(wstring_view name, const T &arg)'],['../namespacefmt_1_1v5.html#a829ae121113d346b82fd668a780a671c',1,'fmt::v5::arg(S, internal::named_arg< T, Char >)=delete']]], + ['arg_5fconverter',['arg_converter',['../classfmt_1_1v5_1_1internal_1_1arg__converter.html',1,'fmt::v5::internal::arg_converter< T, Context >'],['../classfmt_1_1v5_1_1internal_1_1arg__converter.html#aef40801d8966d8da086dd0507a0e88b3',1,'fmt::v5::internal::arg_converter::arg_converter()']]], + ['arg_5fformatter',['arg_formatter',['../classfmt_1_1v5_1_1arg__formatter.html',1,'fmt::v5::arg_formatter< Range >'],['../classfmt_1_1v5_1_1arg__formatter.html#a0925c1315a81b793b5e020e496c9234c',1,'fmt::v5::arg_formatter::arg_formatter(context_type &ctx, format_specs *spec=NULL)'],['../classfmt_1_1v5_1_1arg__formatter.html#adcd84c55fb1ae473917660743d000153',1,'fmt::v5::arg_formatter::arg_formatter(context_type &ctx, format_specs &spec)']]], + ['arg_5fformatter_5fbase',['arg_formatter_base',['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html',1,'fmt::v5::internal::arg_formatter_base< Range >'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a1f09a08ddcb054ae0d7dec1e8183ec9a',1,'fmt::v5::internal::arg_formatter_base::arg_formatter_base()']]], + ['arg_5fjoin',['arg_join',['../structfmt_1_1v5_1_1arg__join.html',1,'fmt::v5::arg_join< It, Char >'],['../structfmt_1_1v5_1_1arg__join.html#a6d52e78c112984ea0d5a0344d8be2ae4',1,'fmt::v5::arg_join::arg_join()']]], + ['arg_5fmap',['arg_map',['../classfmt_1_1v5_1_1internal_1_1arg__map.html',1,'fmt::v5::internal::arg_map< Context >'],['../classfmt_1_1v5_1_1internal_1_1arg__map.html#a88a37695bca579d00ebc51586639b592',1,'fmt::v5::internal::arg_map::arg_map()']]], + ['arg_5fmap_3c_20fmt_3a_3av5_3a_3abasic_5fformat_5fcontext_20_3e',['arg_map< fmt::v5::basic_format_context >',['../classfmt_1_1v5_1_1internal_1_1arg__map.html',1,'fmt::v5::internal']]], + ['arg_5fref',['arg_ref',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html',1,'fmt::v5::internal::arg_ref< Char >'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#acdc7af3b0c98da49b1d8200d8a9c23ff',1,'fmt::v5::internal::arg_ref::arg_ref()'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a830077cd847dfe72567f92bdb9a7b847',1,'fmt::v5::internal::arg_ref::arg_ref(unsigned index)'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a283634a312bcc2e6a5eaf7483a27860b',1,'fmt::v5::internal::arg_ref::arg_ref(basic_string_view< Char > nm)']]], + ['arg_5fref_3c_20char_5ftype_20_3e',['arg_ref< char_type >',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html',1,'fmt::v5::internal']]], + ['args',['args',['../classfmt_1_1v5_1_1internal_1_1context__base.html#a47af48a658d7c01909e2a7f5f522702a',1,'fmt::v5::internal::context_base']]], + ['args_5f',['args_',['../classfmt_1_1v5_1_1basic__format__args.html#aae77a07c32a92e56243ff0a76f51eaff',1,'fmt::v5::basic_format_args']]], + ['as_5fnamed_5farg',['as_named_arg',['../classfmt_1_1v5_1_1internal_1_1value.html#a98a35538aba4deefa8e5f640f1d96648',1,'fmt::v5::internal::value']]], + ['async_2eh',['async.h',['../async_8h.html',1,'']]], + ['async_5ffactory',['async_factory',['../namespacespdlog.html#a962b94a80258f9a202d590888349577c',1,'spdlog']]], + ['async_5ffactory_5fimpl',['async_factory_impl',['../structspdlog_1_1async__factory__impl.html',1,'spdlog']]], + ['async_5ffactory_5fnonblock',['async_factory_nonblock',['../namespacespdlog.html#a796f2e548cff4f12a5b2a52b07d3128b',1,'spdlog']]], + ['async_5flogger',['async_logger',['../classspdlog_1_1async__logger.html',1,'spdlog::async_logger'],['../classspdlog_1_1async__logger.html#a2a74bf8d8d850ea760396ba8ae55d552',1,'spdlog::async_logger::async_logger(std::string logger_name, It begin, It end, std::weak_ptr< details::thread_pool > tp, async_overflow_policy overflow_policy=async_overflow_policy::block)'],['../classspdlog_1_1async__logger.html#ad42c05a733917cc7e7b3d9d2ad10a47f',1,'spdlog::async_logger::async_logger(std::string logger_name, sinks_init_list sinks_list, std::weak_ptr< details::thread_pool > tp, async_overflow_policy overflow_policy=async_overflow_policy::block)'],['../classspdlog_1_1async__logger.html#a99dcf454b74db04fe3300c68baff4d79',1,'spdlog::async_logger::async_logger(std::string logger_name, sink_ptr single_sink, std::weak_ptr< details::thread_pool > tp, async_overflow_policy overflow_policy=async_overflow_policy::block)']]], + ['async_5flogger_2eh',['async_logger.h',['../async__logger_8h.html',1,'']]], + ['async_5flogger_5fimpl_2eh',['async_logger_impl.h',['../async__logger__impl_8h.html',1,'']]], + ['async_5flogger_5fptr',['async_logger_ptr',['../namespacespdlog_1_1details.html#a9b6989c16b6150f7e4658ea2aee01bc2',1,'spdlog::details']]], + ['async_5fmsg',['async_msg',['../structspdlog_1_1details_1_1async__msg.html',1,'spdlog::details::async_msg'],['../structspdlog_1_1details_1_1async__msg.html#a1639729ae0bbefc841ec4b87c3369274',1,'spdlog::details::async_msg::async_msg()=default'],['../structspdlog_1_1details_1_1async__msg.html#ac61cf7969d3c60aa377cf4a40df6e6a7',1,'spdlog::details::async_msg::async_msg(const async_msg &)=delete'],['../structspdlog_1_1details_1_1async__msg.html#a2e618e34ed69ba387e8e5f069543f94a',1,'spdlog::details::async_msg::async_msg(async_msg &&)=default'],['../structspdlog_1_1details_1_1async__msg.html#aa525d6ee1ca7b82755a0f39b62283638',1,'spdlog::details::async_msg::async_msg(async_logger_ptr &&worker, async_msg_type the_type, details::log_msg &m)'],['../structspdlog_1_1details_1_1async__msg.html#ace5999e830cd28f7b14f804952925379',1,'spdlog::details::async_msg::async_msg(async_logger_ptr &&worker, async_msg_type the_type)'],['../structspdlog_1_1details_1_1async__msg.html#a466b9eb427b14c12f59afeeeb98c0e01',1,'spdlog::details::async_msg::async_msg(async_msg_type the_type)']]], + ['async_5fmsg_5ftype',['async_msg_type',['../namespacespdlog_1_1details.html#a22274995cf879a5d0a08d1f7513ee4fb',1,'spdlog::details']]], + ['async_5foverflow_5fpolicy',['async_overflow_policy',['../namespacespdlog.html#a42e109759a11c9514d3f6313a7709852',1,'spdlog']]], + ['auto_5fid',['auto_id',['../structfmt_1_1v5_1_1internal_1_1auto__id.html',1,'fmt::v5::internal']]], + ['azure',['azure',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0acf04a02e37b774fc311a48f605c3c597',1,'fmt::v5']]] ]; diff --git a/docs/search/all_3.js b/docs/search/all_3.js index 4ca1a5c..87868ee 100644 --- a/docs/search/all_3.js +++ b/docs/search/all_3.js @@ -1,111 +1,80 @@ var searchData= [ - ['c_5fformatter',['C_formatter',['../classspdlog_1_1details_1_1_c__formatter.html',1,'spdlog::details::C_formatter'],['../classspdlog_1_1details_1_1c__formatter.html',1,'spdlog::details::c_formatter'],['../classspdlog_1_1details_1_1c__formatter.html#aa16ea42a3648637a5223ed85d711aa50',1,'spdlog::details::c_formatter::c_formatter()'],['../classspdlog_1_1details_1_1_c__formatter.html#a8b9038a7449cb208fd2a6b1a886b7be8',1,'spdlog::details::C_formatter::C_formatter()']]], - ['c_5fstr',['c_str',['../classfmt_1_1v5_1_1format__int.html#a4081316c3a2859d74be8aec0c614cfa4',1,'fmt::v5::format_int::c_str()'],['../classfmt_1_1v5_1_1basic__cstring__view.html#a3fd9fc51eb41ceeae397a70712a68af5',1,'fmt::v5::basic_cstring_view::c_str()']]], - ['cache_5frefresh',['cache_refresh',['../classspdlog_1_1details_1_1z__formatter.html#a804a8b5035af28939f4803033c951edc',1,'spdlog::details::z_formatter']]], - ['cadet_5fblue',['cadet_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a068e93b58ca276fdd6337535386b0a78',1,'fmt::v5']]], - ['calc_5ffilename',['calc_filename',['../structspdlog_1_1sinks_1_1daily__filename__calculator.html#ae8461e586d3426987a3b11a00b158db2',1,'spdlog::sinks::daily_filename_calculator::calc_filename()'],['../classspdlog_1_1sinks_1_1rotating__file__sink.html#a05d77d7013bc54f55cac702c122ac1c9',1,'spdlog::sinks::rotating_file_sink::calc_filename()']]], - ['capacity',['capacity',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a7bf5da24d9aec9ed9b5e42b912a38a7b',1,'fmt::v5::internal::basic_buffer']]], - ['center',['center',['../structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942eab923ecb127cd5e213f9d9711b5a72fb0',1,'spdlog::details::padding_info']]], - ['ch_5fformatter',['ch_formatter',['../classspdlog_1_1details_1_1ch__formatter.html',1,'spdlog::details::ch_formatter'],['../classspdlog_1_1details_1_1ch__formatter.html#a0ea7f88fed22209cce188238bf103a35',1,'spdlog::details::ch_formatter::ch_formatter()']]], - ['char8_5ft',['char8_t',['../namespacefmt_1_1v5.html#aa9df55c2a1be07baac1ee84d206683f5',1,'fmt::v5']]], - ['char_5fconverter',['char_converter',['../classfmt_1_1v5_1_1internal_1_1char__converter.html',1,'fmt::v5::internal::char_converter< Context >'],['../classfmt_1_1v5_1_1internal_1_1char__converter.html#a593d53809eb74f168c694c62d1aa1c53',1,'fmt::v5::internal::char_converter::char_converter()']]], - ['char_5fcounter',['char_counter',['../structfmt_1_1v5_1_1internal_1_1char__counter.html',1,'fmt::v5::internal']]], - ['char_5fspec_5fhandler',['char_spec_handler',['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html',1,'fmt::v5::internal::arg_formatter_base< Range >::char_spec_handler'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#a9ee2328a2106f91620d78431401d19ae',1,'fmt::v5::internal::arg_formatter_base::char_spec_handler::char_spec_handler()']]], - ['char_5fspecs_5fchecker',['char_specs_checker',['../classfmt_1_1v5_1_1internal_1_1char__specs__checker.html',1,'fmt::v5::internal::char_specs_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#a6f720937604863fca737c9f48c7bbef5',1,'fmt::v5::internal::char_specs_checker::char_specs_checker()']]], - ['char_5ft',['char_t',['../structfmt_1_1v5_1_1internal_1_1char__t.html',1,'fmt::v5::internal::char_t< S >'],['../structfmt_1_1v5_1_1char__t.html',1,'fmt::v5::char_t< S >']]], - ['char_5ftraits',['char_traits',['../structfmt_1_1v5_1_1internal_1_1char__traits.html',1,'fmt::v5::internal']]], - ['char_5ftraits_3c_20char_20_3e',['char_traits< char >',['../structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html',1,'fmt::v5::internal']]], - ['char_5ftraits_3c_20wchar_5ft_20_3e',['char_traits< wchar_t >',['../structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html',1,'fmt::v5::internal']]], - ['char_5ftype',['char_type',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ae0c74a5cd09f1a944f76da410d337c60',1,'fmt::v5::internal::chrono_formatter::char_type()'],['../classfmt_1_1v5_1_1basic__string__view.html#a7dd9c65338332c1e3beb611a7ab883e5',1,'fmt::v5::basic_string_view::char_type()'],['../structfmt_1_1v5_1_1internal_1_1dummy__string__view.html#a1a7f6fcc70a0b038374b78d2b5e34a60',1,'fmt::v5::internal::dummy_string_view::char_type()'],['../classfmt_1_1v5_1_1internal_1_1value.html#abe1bc7d3e37d07c320314586f0156bd4',1,'fmt::v5::internal::value::char_type()'],['../classfmt_1_1v5_1_1basic__parse__context.html#afd4905f512940ea15cb2e1fccc1e7473',1,'fmt::v5::basic_parse_context::char_type()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#af36b86d06d85ba210da04541cfb22389',1,'fmt::v5::internal::context_base::char_type()'],['../classfmt_1_1v5_1_1basic__format__context.html#aac5c87132bab71007a567bd1820f1a16',1,'fmt::v5::basic_format_context::char_type()'],['../classfmt_1_1v5_1_1u8string__view.html#aa0aaed9e4977fa2cbec789178ea3b694',1,'fmt::v5::u8string_view::char_type()'],['../structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#ad1e7da945143945bd5cd6934620331d9',1,'fmt::v5::internal::no_thousands_sep::char_type()'],['../classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a0bd627a0529dc333328af15cbd2d7f77',1,'fmt::v5::internal::add_thousands_sep::char_type()'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a065412840bd7bab950a7f4df38fbc94b',1,'fmt::v5::internal::arg_formatter_base::char_type()'],['../classfmt_1_1v5_1_1internal_1_1specs__handler.html#ab634b0a93a600c943d708af3ba46805e',1,'fmt::v5::internal::specs_handler::char_type()'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a91e483d3cf1a54ee8c6163572442888a',1,'fmt::v5::internal::dynamic_specs_handler::char_type()'],['../classfmt_1_1v5_1_1basic__writer.html#ad0ee54da443751f74466a16b033ab9f6',1,'fmt::v5::basic_writer::char_type()'],['../classfmt_1_1v5_1_1basic__printf__context.html#a410acf2a67e657f4262e299e8edb6573',1,'fmt::v5::basic_printf_context::char_type()'],['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a4291d26029047911bc456839856ea64d',1,'fmt::v5::internal::char_type()']]], - ['chartreuse',['chartreuse',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a3efea3cccdbed48be1f1db03de4fa20e',1,'fmt::v5']]], - ['check_5farg_5fid',['check_arg_id',['../classfmt_1_1v5_1_1basic__parse__context.html#a1b0beb2ee86041582086cffa5070d02b',1,'fmt::v5::basic_parse_context::check_arg_id(unsigned)'],['../classfmt_1_1v5_1_1basic__parse__context.html#aeb20a1952bd3f6186c0157341326315a',1,'fmt::v5::basic_parse_context::check_arg_id(basic_string_view< Char >)']]], - ['check_5fformat_5fstring',['check_format_string',['../namespacefmt_1_1v5_1_1internal.html#acd0741048e2d4d76c3a549c5a6d9d857',1,'fmt::v5::internal::check_format_string(const S &)'],['../namespacefmt_1_1v5_1_1internal.html#a1e8f98191fb8cde7f6fa0b768dccdab2',1,'fmt::v5::internal::check_format_string(S)']]], - ['check_5fpointer_5ftype_5fspec',['check_pointer_type_spec',['../namespacefmt_1_1v5_1_1internal.html#ab9c093637a8328c1d798547a91ca1a5b',1,'fmt::v5::internal']]], - ['check_5fstring_5ftype_5fspec',['check_string_type_spec',['../namespacefmt_1_1v5_1_1internal.html#a83526f0a8d3c8e9cc85b24a7a00e8496',1,'fmt::v5::internal']]], - ['checked',['checked',['../structfmt_1_1v5_1_1internal_1_1checked.html',1,'fmt::v5::internal']]], - ['checked_5fargs',['checked_args',['../structfmt_1_1v5_1_1internal_1_1checked__args.html',1,'fmt::v5::internal::checked_args< S, Args >'],['../structfmt_1_1v5_1_1internal_1_1checked__args.html#a9b9dcf34426ab439f1df375db66b677c',1,'fmt::v5::internal::checked_args::checked_args()']]], - ['checkpacket',['CheckPacket',['../classlivox_1_1_protocol.html#af29b4a6d2966e31e19b7f640414ebeb7',1,'livox::Protocol']]], - ['checkpreamble',['CheckPreamble',['../classlivox_1_1_protocol.html#acaf1a7dbf16f2deee49ded19e17a998a',1,'livox::Protocol']]], - ['chocolate',['chocolate',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ac378985d629e99a4e86213db0cd5e70d',1,'fmt::v5']]], - ['chrono_2eh',['chrono.h',['../chrono_8h.html',1,'']]], - ['chrono_5fformat_5fchecker',['chrono_format_checker',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html',1,'fmt::v5::internal']]], - ['chrono_5fformatter',['chrono_formatter',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html',1,'fmt::v5::internal::chrono_formatter< FormatContext, OutputIt >'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a283a7a70218041ce28b0f3cea007655f',1,'fmt::v5::internal::chrono_formatter::chrono_formatter()']]], - ['circular_5fq',['circular_q',['../classspdlog_1_1details_1_1circular__q.html',1,'spdlog::details::circular_q< T >'],['../classspdlog_1_1details_1_1circular__q.html#ab0aae072dd38824fee65ed9d48568c2f',1,'spdlog::details::circular_q::circular_q()']]], - ['circular_5fq_2eh',['circular_q.h',['../circular__q_8h.html',1,'']]], - ['circular_5fq_3c_20item_5ftype_20_3e',['circular_q< item_type >',['../classspdlog_1_1details_1_1circular__q.html',1,'spdlog::details']]], - ['clear',['clear',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ae92aa3486601bb4ba757be96b3c6bee3',1,'fmt::v5::internal::basic_buffer']]], - ['clear_5fline',['clear_line',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#aa52fbe671a7c1fbeaf784b8a325745c6',1,'spdlog::sinks::ansicolor_sink']]], - ['clone',['clone',['../classspdlog_1_1async__logger.html#aef60bc96b78ff98a471dc08977d4cb5c',1,'spdlog::async_logger::clone()'],['../classspdlog_1_1pattern__formatter.html#a73a60f53c23e860a2c1229c0781819f9',1,'spdlog::pattern_formatter::clone()'],['../classspdlog_1_1formatter.html#ae9857a794904d98a4a9527a742e37129',1,'spdlog::formatter::clone()'],['../classspdlog_1_1logger.html#a649a3c1a1b380e2488a93f9c3ae694de',1,'spdlog::logger::clone()']]], - ['close',['close',['../classspdlog_1_1details_1_1file__helper.html#a6a6d7a75014ae880857b4fe4fd01dc7a',1,'spdlog::details::file_helper::close()'],['../classfmt_1_1v5_1_1buffered__file.html#a884ec99b9150cee0ead3c62613befe04',1,'fmt::v5::buffered_file::close()'],['../classfmt_1_1v5_1_1file.html#ab3959bb606e2fd0349dcc3d61c12620d',1,'fmt::v5::file::close()']]], - ['cmd_5fcode',['cmd_code',['../structlivox_1_1_comm_packet.html#a69485605f4d8113b178163d388defa89',1,'livox::CommPacket']]], - ['cmd_5fport',['cmd_port',['../struct_device_info.html#abb8bbc33f437058af59aa6611137b2f1',1,'DeviceInfo::cmd_port()'],['../struct_handshake_request.html#a6a7a7ba0f5b928481ab263c6216af37b',1,'HandshakeRequest::cmd_port()']]], - ['cmd_5fset',['cmd_set',['../structlivox_1_1_comm_packet.html#af288b1ff799a0d0a9a1a8d0870bb5dd0',1,'livox::CommPacket']]], - ['code_5flist',['code_list',['../struct_hub_get_extrinsic_parameter_request.html#a30257b6481b394e07c28a5be493e5c4f',1,'HubGetExtrinsicParameterRequest']]], - ['color',['color',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0',1,'fmt::v5']]], - ['color_2eh',['color.h',['../color_8h.html',1,'']]], - ['color_5frange_5fend',['color_range_end',['../structspdlog_1_1details_1_1log__msg.html#a0dfc2763f8e6b73ca34e4cb7c5a9950a',1,'spdlog::details::log_msg']]], - ['color_5frange_5fstart',['color_range_start',['../structspdlog_1_1details_1_1log__msg.html#a87cb1c5f1ecd7415412722123e35d491',1,'spdlog::details::log_msg']]], - ['color_5fstart_5fformatter',['color_start_formatter',['../classspdlog_1_1details_1_1color__start__formatter.html',1,'spdlog::details::color_start_formatter'],['../classspdlog_1_1details_1_1color__start__formatter.html#a5222b004ac21f1b4db466400a324ad21',1,'spdlog::details::color_start_formatter::color_start_formatter()']]], - ['color_5fstop_5fformatter',['color_stop_formatter',['../classspdlog_1_1details_1_1color__stop__formatter.html',1,'spdlog::details::color_stop_formatter'],['../classspdlog_1_1details_1_1color__stop__formatter.html#ae91bec8b6dec2965b7406026925d1cdc',1,'spdlog::details::color_stop_formatter::color_stop_formatter()']]], - ['color_5ftype',['color_type',['../structfmt_1_1v5_1_1internal_1_1color__type.html',1,'fmt::v5::internal::color_type'],['../structfmt_1_1v5_1_1internal_1_1color__type.html#a160b5a017452a64fb874b331153ada6e',1,'fmt::v5::internal::color_type::color_type()'],['../structfmt_1_1v5_1_1internal_1_1color__type.html#a288984b7a227bda31470628567a894fa',1,'fmt::v5::internal::color_type::color_type(color rgb_color)'],['../structfmt_1_1v5_1_1internal_1_1color__type.html#a6ccc6a1b7eabca5301b99a7d6c0dc0b9',1,'fmt::v5::internal::color_type::color_type(rgb rgb_color)'],['../structfmt_1_1v5_1_1internal_1_1color__type.html#a858e477eabe77aa1062ef358089691de',1,'fmt::v5::internal::color_type::color_type(terminal_color term_color)']]], - ['color_5funion',['color_union',['../unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html',1,'fmt::v5::internal::color_type']]], - ['comm_5fport_2eh',['comm_port.h',['../comm__port_8h.html',1,'']]], - ['common_2eh',['common.h',['../common_8h.html',1,'']]], - ['commoncommandcallback',['CommonCommandCallback',['../livox__sdk_8h.html#aa86d8ae1586fc96b9cfd11ce8cf528d2',1,'livox_sdk.h']]], - ['commpacket',['CommPacket',['../structlivox_1_1_comm_packet.html',1,'livox::CommPacket'],['../namespacelivox.html#af4e436d907dcafb14fcc88a760f75090',1,'livox::CommPacket()']]], - ['commport',['CommPort',['../classlivox_1_1_comm_port.html',1,'livox::CommPort'],['../classlivox_1_1_comm_port.html#a5a159a37a2b90e3e99a8a2258494c374',1,'livox::CommPort::CommPort()']]], - ['compare',['compare',['../classfmt_1_1v5_1_1basic__string__view.html#a4e8a2b1d8a6a749c17b43a8f4dbc09c1',1,'fmt::v5::basic_string_view']]], - ['compile_5fstring',['compile_string',['../structfmt_1_1v5_1_1compile__string.html',1,'fmt::v5']]], - ['compute_5fboundaries',['compute_boundaries',['../classfmt_1_1v5_1_1internal_1_1fp.html#ab9070b4fc350e45c0d3c9685e8240fc2',1,'fmt::v5::internal::fp']]], - ['concealed',['concealed',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a681736d8ce3d3551bdb51e053a839fc3',1,'spdlog::sinks::ansicolor_sink']]], - ['conditional_5fhelper',['conditional_helper',['../structfmt_1_1v5_1_1internal_1_1conditional__helper.html',1,'fmt::v5::internal']]], - ['config_5flist',['config_list',['../struct_hub_set_mode_request.html#a288defb8dd0478bc52b8cdd9a6315c27',1,'HubSetModeRequest']]], - ['connectedlidarinfo',['ConnectedLidarInfo',['../struct_connected_lidar_info.html',1,'']]], - ['console_5fglobals_2eh',['console_globals.h',['../console__globals_8h.html',1,'']]], - ['console_5fmutex',['console_mutex',['../structspdlog_1_1details_1_1console__mutex.html',1,'spdlog::details']]], - ['console_5fnullmutex',['console_nullmutex',['../structspdlog_1_1details_1_1console__nullmutex.html',1,'spdlog::details']]], - ['console_5fstderr',['console_stderr',['../structspdlog_1_1details_1_1console__stderr.html',1,'spdlog::details']]], - ['console_5fstdout',['console_stdout',['../structspdlog_1_1details_1_1console__stdout.html',1,'spdlog::details']]], - ['const_5fcheck',['const_check',['../namespacefmt_1_1v5_1_1internal.html#a8d6d08e76d5ee6a3289c5e010e6db950',1,'fmt::v5::internal']]], - ['const_5freference',['const_reference',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#abfe6d821425b515382f5001823d40836',1,'fmt::v5::internal::basic_buffer::const_reference()'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#a137e3161cc2723cb0b0ec2561f879348',1,'fmt::v5::basic_memory_buffer::const_reference()']]], - ['container_5fbuffer',['container_buffer',['../classfmt_1_1v5_1_1internal_1_1container__buffer.html',1,'fmt::v5::internal::container_buffer< Container >'],['../classfmt_1_1v5_1_1internal_1_1container__buffer.html#a5f7834eecd73531a1f57993f9b9e3977',1,'fmt::v5::internal::container_buffer::container_buffer()']]], - ['context',['context',['../structfmt_1_1v5_1_1internal_1_1checked__args.html#a08f5fb05bf1d8da4eee00b15438c9f5d',1,'fmt::v5::internal::checked_args::context()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a5836908b0ff253946807ec94b74885d6',1,'fmt::v5::internal::chrono_formatter::context()'],['../structfmt_1_1v5_1_1format__handler.html#adcffafbbb51c42a17357ffc66e697fc7',1,'fmt::v5::format_handler::context()']]], - ['context_5fbase',['context_base',['../classfmt_1_1v5_1_1internal_1_1context__base.html',1,'fmt::v5::internal::context_base< OutputIt, Context, Char >'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#a1619fee676f24de9cb69faab79584278',1,'fmt::v5::internal::context_base::context_base()']]], - ['context_5fbase_3c_20outputit_2c_20basic_5fformat_5fcontext_3c_20outputit_2c_20char_20_3e_2c_20char_20_3e',['context_base< OutputIt, basic_format_context< OutputIt, Char >, Char >',['../classfmt_1_1v5_1_1internal_1_1context__base.html',1,'fmt::v5::internal']]], - ['context_5fbase_3c_20outputit_2c_20basic_5fprintf_5fcontext_3c_20outputit_2c_20char_2c_20argformatter_20_3e_2c_20char_20_3e',['context_base< OutputIt, basic_printf_context< OutputIt, Char, ArgFormatter >, Char >',['../classfmt_1_1v5_1_1internal_1_1context__base.html',1,'fmt::v5::internal']]], - ['convert_5farg',['convert_arg',['../namespacefmt_1_1v5_1_1internal.html#acb73020810b7b8d56b3538a416d97988',1,'fmt::v5::internal']]], - ['convert_5fto_5fint',['convert_to_int',['../structfmt_1_1v5_1_1convert__to__int.html',1,'fmt::v5']]], - ['convert_5fto_5fint_3c_20t_2c_20char_2c_20void_20_3e',['convert_to_int< T, Char, void >',['../structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html',1,'fmt::v5']]], - ['copy',['copy',['../namespacefmt_1_1v5_1_1internal.html#afe980acdb2bb4cb83729a07c105159d1',1,'fmt::v5::internal::copy(const RangeT &range, OutputIterator out)'],['../namespacefmt_1_1v5_1_1internal.html#aef961c9d2b2fb8caa86202923a35e1dc',1,'fmt::v5::internal::copy(const char *str, OutputIterator out)'],['../namespacefmt_1_1v5_1_1internal.html#a285a2b81053ae5ac35df5f3e91a7c406',1,'fmt::v5::internal::copy(char ch, OutputIterator out)']]], - ['copy_5fstr',['copy_str',['../namespacefmt_1_1v5_1_1internal.html#a32fc9971391c76e82f000d301ebe6a4c',1,'fmt::v5::internal::copy_str(InputIt begin, InputIt end, OutputIt it)'],['../namespacefmt_1_1v5_1_1internal.html#a0a4fd70e18eba9d0da494fcb4f0fc32c',1,'fmt::v5::internal::copy_str(InputIt begin, InputIt end, OutputIt it)']]], - ['coral',['coral',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad2ebed4eaf58509dcc358e1782c38fea',1,'fmt::v5']]], - ['core_2eh',['core.h',['../core_8h.html',1,'']]], - ['core_5fformat_5fspecs',['core_format_specs',['../structfmt_1_1v5_1_1core__format__specs.html',1,'fmt::v5::core_format_specs'],['../structfmt_1_1v5_1_1core__format__specs.html#af2f270216f9f408f402e94ad1033fe26',1,'fmt::v5::core_format_specs::core_format_specs()']]], - ['cornflower_5fblue',['cornflower_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0abc432826c5179d5332c28e32f2ff58a0',1,'fmt::v5']]], - ['cornsilk',['cornsilk',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aea26b11983535b3792d71954aa4d41d8',1,'fmt::v5']]], - ['count',['count',['../struct_hub_query_lidar_information_response.html#aeef7d6cc430c1c408287f029ad9cf67d',1,'HubQueryLidarInformationResponse::count()'],['../struct_hub_set_mode_request.html#a74ea714230b28433f927565c98305292',1,'HubSetModeRequest::count()'],['../struct_hub_set_mode_response.html#a737a969dcc4bb59f45aa4c0a842d50d3',1,'HubSetModeResponse::count()'],['../struct_hub_set_extrinsic_parameter_request.html#a99dcdcfcadd639e7b341f03f36ba8a88',1,'HubSetExtrinsicParameterRequest::count()'],['../struct_hub_set_extrinsic_parameter_response.html#a41076bb2abf1e04ef490fd910964643d',1,'HubSetExtrinsicParameterResponse::count()'],['../struct_hub_get_extrinsic_parameter_request.html#a411353af6f79a0ecca12b8c7f106f322',1,'HubGetExtrinsicParameterRequest::count()'],['../struct_hub_get_extrinsic_parameter_response.html#ad0f3a2cd721c3dea6999799a02f5b3ce',1,'HubGetExtrinsicParameterResponse::count()'],['../struct_hub_query_lidar_status_response.html#a6059f781c5eef3231def143ad1b9490b',1,'HubQueryLidarStatusResponse::count()'],['../struct_hub_rain_fog_suppress_request.html#a3f14c799e8f96e2897c65191c96973ec',1,'HubRainFogSuppressRequest::count()'],['../struct_hub_rain_fog_suppress_response.html#a3e070f7d0477cf0ccf8fc8161fe8d9d3',1,'HubRainFogSuppressResponse::count()'],['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#af0879937c615e146111e361db9a393d9',1,'fmt::v5::internal::counting_iterator::count()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a56850280db1992628ce9afaab31c8637',1,'fmt::v5::internal::truncating_iterator_base::count()']]], - ['count_5f',['count_',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a16eabcb848e779b567918d0935904b7b',1,'fmt::v5::internal::truncating_iterator_base']]], - ['count_5fcode_5fpoints',['count_code_points',['../namespacefmt_1_1v5_1_1internal.html#a6c2c4c3c6a5dc4e3559ed105c44c4d9e',1,'fmt::v5::internal::count_code_points(basic_string_view< Char > s)'],['../namespacefmt_1_1v5_1_1internal.html#aca60c11758ae1d5b422178e883252bba',1,'fmt::v5::internal::count_code_points(basic_string_view< char8_t > s)']]], - ['count_5fdigits',['count_digits',['../namespacespdlog_1_1details_1_1fmt__helper.html#a976eeb3c4a42ccfb05437aa9a0d4d9f7',1,'spdlog::details::fmt_helper::count_digits()'],['../namespacefmt_1_1v5_1_1internal.html#a1b8c0cdffe57c5fe9dc629babe471316',1,'fmt::v5::internal::count_digits()']]], - ['counting_5fiterator',['counting_iterator',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html',1,'fmt::v5::internal::counting_iterator< T >'],['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a9d2f0224d9f4a23484dc28c67ac81f13',1,'fmt::v5::internal::counting_iterator::counting_iterator()']]], - ['crc32_5fcalc',['crc32_calc',['../class_fast_c_r_c32.html#ade987c2d06975707d94aa2eaa203a480',1,'FastCRC32']]], - ['create',['create',['../structspdlog_1_1async__factory__impl.html#aa39b4c4216d822e1788beccde29160d9',1,'spdlog::async_factory_impl::create()'],['../structspdlog_1_1synchronous__factory.html#acde09e4f9f33281ab1e663de5ef703b5',1,'spdlog::synchronous_factory::create()'],['../namespacespdlog.html#a852b420dc3dd5e5193a21f61f8577e62',1,'spdlog::create()']]], - ['create_5fasync',['create_async',['../namespacespdlog.html#a220f834b057b45ef730c435bcc60b0aa',1,'spdlog']]], - ['create_5fasync_5fnb',['create_async_nb',['../namespacespdlog.html#ac5db26987120ac7b1ba0fbefe551ee52',1,'spdlog']]], - ['crimson',['crimson',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5fa3ccc64c973db27e9fcade0810423e',1,'fmt::v5']]], - ['critical',['critical',['../classspdlog_1_1logger.html#a3d11416764fe7ead94868d4c6438f583',1,'spdlog::logger::critical(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#a3c5140393ec153b2b8478361aac80eb6',1,'spdlog::logger::critical(const T &msg)'],['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8ba309b214a2b8629b6cf0048ce916e8a58',1,'spdlog::level::critical()'],['../namespacespdlog.html#a753989ee0011b7d977e04a278b9380a2',1,'spdlog::critical(const char *fmt, const Args &... args)'],['../namespacespdlog.html#a2c707fb3d3d12a244ebfe3e40b417edc',1,'spdlog::critical(const T &msg)']]], - ['cstring_5fspec_5fhandler',['cstring_spec_handler',['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html',1,'fmt::v5::internal::arg_formatter_base< Range >::cstring_spec_handler'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#aa61244d241d6d4b5a8859df32e8d1c41',1,'fmt::v5::internal::arg_formatter_base::cstring_spec_handler::cstring_spec_handler()']]], - ['cstring_5ftype',['cstring_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a73df9a3576f5a9596c4651fddef7dfac',1,'fmt::v5::internal']]], - ['cstring_5ftype_5fchecker',['cstring_type_checker',['../classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html',1,'fmt::v5::internal::cstring_type_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#a121cc7c3aa7c96aafe802123ca731226',1,'fmt::v5::internal::cstring_type_checker::cstring_type_checker()']]], - ['cstring_5fview',['cstring_view',['../namespacefmt_1_1v5.html#aefed7eb96cd309b6f9d5dab1f9fae2f6',1,'fmt::v5']]], - ['custom',['custom',['../classfmt_1_1v5_1_1internal_1_1value.html#a2f3ea08c07ddaf1679366b007f54d728',1,'fmt::v5::internal::value']]], - ['custom_5fformatter',['custom_formatter',['../classfmt_1_1v5_1_1internal_1_1custom__formatter.html',1,'fmt::v5::internal::custom_formatter< Char, Context >'],['../classfmt_1_1v5_1_1internal_1_1custom__formatter.html#ac2612121f51ea49d01b48a368899cbe9',1,'fmt::v5::internal::custom_formatter::custom_formatter()']]], - ['custom_5ftype',['custom_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a2bf13ea13c39343d5656a3804f53508a',1,'fmt::v5::internal']]], - ['custom_5fvalue',['custom_value',['../structfmt_1_1v5_1_1internal_1_1custom__value.html',1,'fmt::v5::internal']]], - ['custom_5fvalue_3c_20basic_5fformat_5fcontext_3c_20outputit_2c_20char_20_3e_20_3e',['custom_value< basic_format_context< OutputIt, Char > >',['../structfmt_1_1v5_1_1internal_1_1custom__value.html',1,'fmt::v5::internal']]], - ['custom_5fvalue_3c_20basic_5fprintf_5fcontext_3c_20outputit_2c_20char_2c_20argformatter_20_3e_20_3e',['custom_value< basic_printf_context< OutputIt, Char, ArgFormatter > >',['../structfmt_1_1v5_1_1internal_1_1custom__value.html',1,'fmt::v5::internal']]], - ['custom_5fvalue_3c_20format_5fcontext_20_3e',['custom_value< format_context >',['../structfmt_1_1v5_1_1internal_1_1custom__value.html',1,'fmt::v5::internal']]], - ['custom_5fvalue_3c_20wformat_5fcontext_20_3e',['custom_value< wformat_context >',['../structfmt_1_1v5_1_1internal_1_1custom__value.html',1,'fmt::v5::internal']]], - ['cyan',['cyan',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a6b2e0a6f8d365e054a255b631c4d4046',1,'spdlog::sinks::ansicolor_sink::cyan()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a6cbc30363fd20b20c1cd0f22211f0612',1,'spdlog::sinks::wincolor_sink::CYAN()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a6411532ba4971f378391776a9db629d3',1,'fmt::v5::cyan()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa6411532ba4971f378391776a9db629d3',1,'fmt::v5::cyan()']]] + ['b',['b',['../structfmt_1_1v5_1_1rgb.html#a8643af9dc4da837fce1b6f633b07bb34',1,'fmt::v5::rgb']]], + ['b_5fformatter',['B_formatter',['../classspdlog_1_1details_1_1_b__formatter.html',1,'spdlog::details::B_formatter'],['../classspdlog_1_1details_1_1b__formatter.html',1,'spdlog::details::b_formatter'],['../classspdlog_1_1details_1_1b__formatter.html#a08418409ea0e59ea9b79d27974e30824',1,'spdlog::details::b_formatter::b_formatter()'],['../classspdlog_1_1details_1_1_b__formatter.html#a2dde180e941a7b44a65b7967fec4d359',1,'spdlog::details::B_formatter::B_formatter()']]], + ['back_5finsert_5frange',['back_insert_range',['../classfmt_1_1v5_1_1back__insert__range.html',1,'fmt::v5::back_insert_range< Container >'],['../classfmt_1_1v5_1_1back__insert__range.html#a7ac1989e9b9da2e27d42113a75ff8f33',1,'fmt::v5::back_insert_range::back_insert_range(Container &c)'],['../classfmt_1_1v5_1_1back__insert__range.html#abc01c2e16db484f994b86a47b133acab',1,'fmt::v5::back_insert_range::back_insert_range(typename base::iterator it)']]], + ['backend_5fflush_5f',['backend_flush_',['../classspdlog_1_1async__logger.html#a24a37552c3339c7b129a38a2c4702689',1,'spdlog::async_logger']]], + ['backend_5flog_5f',['backend_log_',['../classspdlog_1_1async__logger.html#a50a7de9842c326ab5b99cbcc851d9c60',1,'spdlog::async_logger']]], + ['background_5fcolor',['BACKGROUND_COLOR',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#a5ea6f88946a0959275332ac157eb9775',1,'fmt::v5::internal::basic_data']]], + ['base',['base',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#aa704255e4ff2778a7149a7d2cf687e5f',1,'fmt::v5::internal::truncating_iterator_base']]], + ['base_5fsink',['base_sink',['../classspdlog_1_1sinks_1_1base__sink.html',1,'spdlog::sinks::base_sink< Mutex >'],['../classspdlog_1_1sinks_1_1base__sink.html#a38658ba620d110065ce93e178b9ec60e',1,'spdlog::sinks::base_sink::base_sink()=default'],['../classspdlog_1_1sinks_1_1base__sink.html#a9639062f2ce3598203c0d958576491d1',1,'spdlog::sinks::base_sink::base_sink(const base_sink &)=delete']]], + ['base_5fsink_2eh',['base_sink.h',['../base__sink_8h.html',1,'']]], + ['basic_5fbuffer',['basic_buffer',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html',1,'fmt::v5::internal::basic_buffer< T >'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a590c6a8e6f850c98dbc82ffea1b50650',1,'fmt::v5::internal::basic_buffer::basic_buffer(std::size_t sz)'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8a3f3c0ba824744bfc879e042c691dca',1,'fmt::v5::internal::basic_buffer::basic_buffer(T *p=NULL, std::size_t sz=0, std::size_t cap=0)']]], + ['basic_5fbuffer_3c_20char_20_3e',['basic_buffer< Char >',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html',1,'fmt::v5::internal::basic_buffer< Char >'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html',1,'fmt::v5::internal::basic_buffer< char >']]], + ['basic_5fbuffer_3c_20container_3a_3avalue_5ftype_20_3e',['basic_buffer< Container::value_type >',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html',1,'fmt::v5::internal']]], + ['basic_5fcstring_5fview',['basic_cstring_view',['../classfmt_1_1v5_1_1basic__cstring__view.html',1,'fmt::v5::basic_cstring_view< Char >'],['../classfmt_1_1v5_1_1basic__cstring__view.html#ad21a04a526524ac3477761399a792fda',1,'fmt::v5::basic_cstring_view::basic_cstring_view(const Char *s)'],['../classfmt_1_1v5_1_1basic__cstring__view.html#a56c61688f005a3f7495d45b443d78d1c',1,'fmt::v5::basic_cstring_view::basic_cstring_view(const std::basic_string< Char > &s)']]], + ['basic_5fdata',['basic_data',['../structfmt_1_1v5_1_1internal_1_1basic__data.html',1,'fmt::v5::internal']]], + ['basic_5ffile_5fsink',['basic_file_sink',['../classspdlog_1_1sinks_1_1basic__file__sink.html',1,'spdlog::sinks::basic_file_sink< Mutex >'],['../classspdlog_1_1sinks_1_1basic__file__sink.html#a799e95cc46fd69b03f4ef7497aa21436',1,'spdlog::sinks::basic_file_sink::basic_file_sink()']]], + ['basic_5ffile_5fsink_2eh',['basic_file_sink.h',['../basic__file__sink_8h.html',1,'']]], + ['basic_5ffile_5fsink_5fmt',['basic_file_sink_mt',['../namespacespdlog_1_1sinks.html#a3c2170781ef0f706f8cea55f8d6b0609',1,'spdlog::sinks']]], + ['basic_5ffile_5fsink_5fst',['basic_file_sink_st',['../namespacespdlog_1_1sinks.html#ab6d38313481cd7fedfb8aeb68c2c61d1',1,'spdlog::sinks']]], + ['basic_5fformat_5farg',['basic_format_arg',['../classfmt_1_1v5_1_1basic__format__arg.html',1,'fmt::v5::basic_format_arg< Context >'],['../classfmt_1_1v5_1_1basic__format__arg.html#ab92c5293847324e1383d7bab6c7b9f35',1,'fmt::v5::basic_format_arg::basic_format_arg()']]], + ['basic_5fformat_5fargs',['basic_format_args',['../classfmt_1_1v5_1_1basic__format__args.html',1,'fmt::v5::basic_format_args< Context >'],['../classfmt_1_1v5_1_1basic__format__args.html#a324ac8280585ccbee69bcf0a75c3765a',1,'fmt::v5::basic_format_args::basic_format_args()'],['../classfmt_1_1v5_1_1basic__format__args.html#abbaf332be8c119f7ed6b05e71ebde3c9',1,'fmt::v5::basic_format_args::basic_format_args(const format_arg_store< Context, Args... > &store)'],['../classfmt_1_1v5_1_1basic__format__args.html#a46d01e323ae8a2436a4ec4ed47d379b1',1,'fmt::v5::basic_format_args::basic_format_args(const format_arg *args, size_type count)']]], + ['basic_5fformat_5fargs_3c_20basic_5fformat_5fcontext_3c_20outputit_2c_20char_20_3e_20_3e',['basic_format_args< basic_format_context< OutputIt, Char > >',['../classfmt_1_1v5_1_1basic__format__args.html',1,'fmt::v5']]], + ['basic_5fformat_5fargs_3c_20basic_5fprintf_5fcontext_3c_20outputit_2c_20char_2c_20argformatter_20_3e_20_3e',['basic_format_args< basic_printf_context< OutputIt, Char, ArgFormatter > >',['../classfmt_1_1v5_1_1basic__format__args.html',1,'fmt::v5']]], + ['basic_5fformat_5fargs_3c_20context_20_3e',['basic_format_args< Context >',['../classfmt_1_1v5_1_1basic__format__arg.html#ab8e9e33cc7b78829001a86ef6110ebb6',1,'fmt::v5::basic_format_arg::basic_format_args< Context >()'],['../classfmt_1_1v5_1_1format__arg__store.html#ab8e9e33cc7b78829001a86ef6110ebb6',1,'fmt::v5::format_arg_store::basic_format_args< Context >()']]], + ['basic_5fformat_5fargs_3c_20format_5fcontext_20_3e',['basic_format_args< format_context >',['../classfmt_1_1v5_1_1basic__format__args.html',1,'fmt::v5']]], + ['basic_5fformat_5fargs_3c_20wformat_5fcontext_20_3e',['basic_format_args< wformat_context >',['../classfmt_1_1v5_1_1basic__format__args.html',1,'fmt::v5']]], + ['basic_5fformat_5fcontext',['basic_format_context',['../classfmt_1_1v5_1_1basic__format__context.html',1,'fmt::v5::basic_format_context< OutputIt, Char >'],['../classfmt_1_1v5_1_1basic__format__context.html#adf22dc09de008340bf108c68281724f9',1,'fmt::v5::basic_format_context::basic_format_context()']]], + ['basic_5fformat_5fspecs',['basic_format_specs',['../structfmt_1_1v5_1_1basic__format__specs.html',1,'fmt::v5::basic_format_specs< Char >'],['../structfmt_1_1v5_1_1basic__format__specs.html#a3eea365872084949e7a8e14c7d7131f7',1,'fmt::v5::basic_format_specs::basic_format_specs()']]], + ['basic_5fformat_5fspecs_3c_20char_5ftype_20_3e',['basic_format_specs< char_type >',['../structfmt_1_1v5_1_1basic__format__specs.html',1,'fmt::v5']]], + ['basic_5fformat_5fspecs_3c_20context_3a_3achar_5ftype_20_3e',['basic_format_specs< Context::char_type >',['../structfmt_1_1v5_1_1basic__format__specs.html',1,'fmt::v5']]], + ['basic_5fformat_5fspecs_3c_20parsecontext_3a_3achar_5ftype_20_3e',['basic_format_specs< ParseContext::char_type >',['../structfmt_1_1v5_1_1basic__format__specs.html',1,'fmt::v5']]], + ['basic_5flogger_5fmt',['basic_logger_mt',['../namespacespdlog.html#abd73a6177edaccb77048bf47e3f8ad23',1,'spdlog']]], + ['basic_5flogger_5fst',['basic_logger_st',['../namespacespdlog.html#abc9cd0646191cc0b295b6e50367b22b7',1,'spdlog']]], + ['basic_5fmemory_5fbuffer',['basic_memory_buffer',['../classfmt_1_1v5_1_1basic__memory__buffer.html',1,'fmt::v5::basic_memory_buffer< T, SIZE, Allocator >'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#ad1d2a73db09717e1222e62d8e0f64e27',1,'fmt::v5::basic_memory_buffer::basic_memory_buffer(const Allocator &alloc=Allocator())'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#a4a840dd1d757f57f9ceee5da7442a9d1',1,'fmt::v5::basic_memory_buffer::basic_memory_buffer(basic_memory_buffer &&other)']]], + ['basic_5fmemory_5fbuffer_3c_20char_20_3e',['basic_memory_buffer< Char >',['../classfmt_1_1v5_1_1basic__memory__buffer.html',1,'fmt::v5']]], + ['basic_5fmemory_5fbuffer_3c_20char_2c_20128_20_3e',['basic_memory_buffer< char, 128 >',['../classfmt_1_1v5_1_1basic__memory__buffer.html',1,'fmt::v5']]], + ['basic_5fmemory_5fbuffer_3c_20char_2c_20176_20_3e',['basic_memory_buffer< char, 176 >',['../classfmt_1_1v5_1_1basic__memory__buffer.html',1,'fmt::v5']]], + ['basic_5fparse_5fcontext',['basic_parse_context',['../classfmt_1_1v5_1_1basic__parse__context.html',1,'fmt::v5::basic_parse_context< Char, ErrorHandler >'],['../classfmt_1_1v5_1_1basic__parse__context.html#a2f71955aa8532331a4d3528c086df716',1,'fmt::v5::basic_parse_context::basic_parse_context()']]], + ['basic_5fparse_5fcontext_3c_20char_20_3e',['basic_parse_context< Char >',['../classfmt_1_1v5_1_1basic__parse__context.html',1,'fmt::v5']]], + ['basic_5fprintf_5fcontext',['basic_printf_context',['../classfmt_1_1v5_1_1basic__printf__context.html',1,'fmt::v5::basic_printf_context< OutputIt, Char, ArgFormatter >'],['../classfmt_1_1v5_1_1basic__printf__context.html#a800016bfb5e3a94a379fdd68a8d5d4ca',1,'fmt::v5::basic_printf_context::basic_printf_context()']]], + ['basic_5fprintf_5fcontext_5ft',['basic_printf_context_t',['../structfmt_1_1v5_1_1basic__printf__context__t.html',1,'fmt::v5']]], + ['basic_5fstring_5fview',['basic_string_view',['../classfmt_1_1v5_1_1basic__string__view.html',1,'fmt::v5::basic_string_view< Char >'],['../classfmt_1_1v5_1_1basic__string__view.html#af700667b227e1aa54fa10e5536f0dd60',1,'fmt::v5::basic_string_view::basic_string_view()'],['../classfmt_1_1v5_1_1basic__string__view.html#a9a52d640307af79b979b7f29d18f8f34',1,'fmt::v5::basic_string_view::basic_string_view(const Char *s, size_t count)'],['../classfmt_1_1v5_1_1basic__string__view.html#ab45c1b7cf97a9d4b7d6290ab374df761',1,'fmt::v5::basic_string_view::basic_string_view(const Char *s)'],['../classfmt_1_1v5_1_1basic__string__view.html#a796a7a1089f143f40585a5604983bb68',1,'fmt::v5::basic_string_view::basic_string_view(const std::basic_string< Char, Alloc > &s)']]], + ['basic_5fstring_5fview_3c_20char_20_3e',['basic_string_view< char >',['../classfmt_1_1v5_1_1basic__string__view.html',1,'fmt::v5']]], + ['basic_5fstring_5fview_3c_20char8_5ft_20_3e',['basic_string_view< char8_t >',['../classfmt_1_1v5_1_1basic__string__view.html',1,'fmt::v5']]], + ['basic_5fstring_5fview_3c_20char_5ftype_20_3e',['basic_string_view< char_type >',['../classfmt_1_1v5_1_1basic__string__view.html',1,'fmt::v5']]], + ['basic_5fwriter',['basic_writer',['../classfmt_1_1v5_1_1basic__writer.html',1,'fmt::v5::basic_writer< Range >'],['../classfmt_1_1v5_1_1basic__writer.html#aeb6a206671e6d416a4696343e940ea33',1,'fmt::v5::basic_writer::basic_writer()']]], + ['begin',['begin',['../structfmt_1_1v5_1_1arg__join.html#a51f66865c2e307da6d7d1f98a78fda59',1,'fmt::v5::arg_join::begin()'],['../classspdlog_1_1details_1_1bytes__range.html#abe7813dcd59c848fd56b0c33e5bbc134',1,'spdlog::details::bytes_range::begin()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a8d9a7509b995a14fda3e033789be636e',1,'fmt::v5::internal::basic_buffer::begin()'],['../classfmt_1_1v5_1_1basic__string__view.html#af73f0e919e28f3c38245937887268bc2',1,'fmt::v5::basic_string_view::begin()'],['../classfmt_1_1v5_1_1basic__parse__context.html#a026a5f2c3de8569b7527c7570009ecc6',1,'fmt::v5::basic_parse_context::begin()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#a002ecd520551aef8a4af81c9cc94eb91',1,'fmt::v5::internal::context_base::begin()'],['../classfmt_1_1v5_1_1output__range.html#ad67186390eb4062ee39779478d554b98',1,'fmt::v5::output_range::begin()'],['../namespacefmt_1_1v5_1_1internal.html#ae3eb46c4e73a862893cc2f99a58938a4',1,'fmt::v5::internal::begin(const C &c) -> decltype(c.begin())'],['../namespacefmt_1_1v5_1_1internal.html#aa579a1942a92c8b98d2759981faad596',1,'fmt::v5::internal::begin(T(&array)[N])']]], + ['beige',['beige',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aefc5f4b470619b932aed03953e50ce60',1,'fmt::v5']]], + ['bg',['bg',['../classfmt_1_1v5_1_1text__style.html#a72bef1c6e5993308ca69290a262468b0',1,'fmt::v5::text_style::bg()'],['../namespacefmt_1_1v5.html#adf2b181704d47b13c292a0c201c157d3',1,'fmt::v5::bg()']]], + ['bin_5fto_5fhex_2eh',['bin_to_hex.h',['../bin__to__hex_8h.html',1,'']]], + ['bin_5fwriter',['bin_writer',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html',1,'fmt::v5::basic_writer::int_writer']]], + ['bisque',['bisque',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ac7357031b08389007e6da9f56ea145e0',1,'fmt::v5']]], + ['bit_5fcast',['bit_cast',['../namespacefmt_1_1v5_1_1internal.html#aee0ff53560cd7c3f16500a4cdbf3655e',1,'fmt::v5::internal']]], + ['black',['black',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#afe5bffc4e1d4977d2a351c8772f2f676',1,'spdlog::sinks::ansicolor_sink::black()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a1ffd9e753c8054cc61456ac7fac1ac89',1,'fmt::v5::black()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa1ffd9e753c8054cc61456ac7fac1ac89',1,'fmt::v5::black()']]], + ['blanched_5falmond',['blanched_almond',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a7fbe63cdab154c0227420b368fcaea3d',1,'fmt::v5']]], + ['blink',['blink',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#addca553132fac957295bd585ce6f59a8',1,'spdlog::sinks::ansicolor_sink']]], + ['block',['block',['../namespacespdlog.html#a42e109759a11c9514d3f6313a7709852a14511f2f5564650d129ca7cabc333278',1,'spdlog']]], + ['blue',['blue',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#aa5f719a0fe17fe167d2c90e65173865d',1,'spdlog::sinks::ansicolor_sink::blue()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a48d6215903dff56238e52e8891380c8f',1,'fmt::v5::blue()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa48d6215903dff56238e52e8891380c8f',1,'fmt::v5::blue()']]], + ['blue_5fviolet',['blue_violet',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a25d876582c42c77bd9fe6c152f88a752',1,'fmt::v5']]], + ['bold',['bold',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab3b3847f7cfac7e21e5a4300ef0295f0',1,'spdlog::sinks::ansicolor_sink::bold()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a77ef730edcfe9f6f000bed8c846aa6bf',1,'spdlog::sinks::wincolor_sink::BOLD()'],['../namespacefmt_1_1v5.html#a3c18bfe3f941ca2b94688cb6d54f1ceca69dcab4a73aeec2113f69b61e6263da8',1,'fmt::v5::bold()']]], + ['bool_5ftype',['bool_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13aecccd88040ba51af7e74784567384260',1,'fmt::v5::internal']]], + ['bright_5fblack',['bright_black',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa74474ae20bf3ef3bce6fd679194ce383',1,'fmt::v5']]], + ['bright_5fblue',['bright_blue',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaac5b47880b4b2ec37179078d63a85def3',1,'fmt::v5']]], + ['bright_5fcyan',['bright_cyan',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaacc69f9955c2bf916bb9a83f38141432f',1,'fmt::v5']]], + ['bright_5fgreen',['bright_green',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaabd5b4652dffd84bab66529361d0c4974',1,'fmt::v5']]], + ['bright_5fmagenta',['bright_magenta',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa37553b57ad1d7f61b0c51f5a535f72bf',1,'fmt::v5']]], + ['bright_5fred',['bright_red',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa8b84c6e788e91a3a45b9dabedb160590',1,'fmt::v5']]], + ['bright_5fwhite',['bright_white',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaada7527acf78cb4e7b582e8163a1f642a',1,'fmt::v5']]], + ['bright_5fyellow',['bright_yellow',['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa75dd76d162b9554ec8b63736bc22d93e',1,'fmt::v5']]], + ['broadcast_5fcode',['broadcast_code',['../struct_device_info.html#ac176ce6c12803b25c3aedf6b65af90ca',1,'DeviceInfo::broadcast_code()'],['../struct_broadcast_device_info.html#a7564c9b360647ac5a0b982612f89a773',1,'BroadcastDeviceInfo::broadcast_code()'],['../struct_connected_lidar_info.html#a0e349a8cef82212da0d7116cb37b5fdd',1,'ConnectedLidarInfo::broadcast_code()'],['../struct_lidar_mode_request_item.html#a608649769c4b601a2499f61cd0965e0b',1,'LidarModeRequestItem::broadcast_code()'],['../struct_return_code.html#a6009b33a757ec7864e0b77a40b42b8c9',1,'ReturnCode::broadcast_code()'],['../struct_device_broadcast_code.html#a92b5ee4638f09060bf3d1d8322619229',1,'DeviceBroadcastCode::broadcast_code()'],['../struct_rain_fog_suppress_request_item.html#ae533c935fdd671d704ab1f9419795eab',1,'RainFogSuppressRequestItem::broadcast_code()'],['../struct_extrinsic_parameter_request_item.html#aeaa77f9da3a5df1ecc36c93641241942',1,'ExtrinsicParameterRequestItem::broadcast_code()'],['../struct_extrinsic_parameter_response_item.html#ab22d94ca17e363344d9dfd43fd7d81c9',1,'ExtrinsicParameterResponseItem::broadcast_code()'],['../struct_lidar_state_item.html#a42089310e0005a55e89fe97bdca1dacb',1,'LidarStateItem::broadcast_code()']]], + ['broadcastdeviceinfo',['BroadcastDeviceInfo',['../struct_broadcast_device_info.html',1,'']]], + ['brown',['brown',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a6ff47afa5dc7daa42cc705a03fca8a9b',1,'fmt::v5']]], + ['buf',['buf',['../structlivox_1_1_port_cache.html#a0162595514fe1687637993072bfad504',1,'livox::PortCache::buf()'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#aa4a4294911effee4c142bc68fcdd2518',1,'fmt::v5::internal::prettify_handler::buf()']]], + ['buffer',['buffer',['../namespacefmt_1_1v5_1_1internal.html#ae63557fe9ccf973c29dc6dd122fa4ae0',1,'fmt::v5::internal']]], + ['buffer_5fcontext',['buffer_context',['../structfmt_1_1v5_1_1buffer__context.html',1,'fmt::v5']]], + ['buffered_5ffile',['buffered_file',['../classfmt_1_1v5_1_1buffered__file.html',1,'fmt::v5::buffered_file'],['../classfmt_1_1v5_1_1buffered__file.html#abeb561e30fd613877c25ebf031eb1104',1,'fmt::v5::buffered_file::buffered_file()'],['../classfmt_1_1v5_1_1buffered__file.html#a89aed138335acd38e0dc1a1618b6b52c',1,'fmt::v5::buffered_file::buffered_file(buffered_file &&other)'],['../classfmt_1_1v5_1_1buffered__file.html#a9acebcee0bfc79cd3b49b12c2db0b2ee',1,'fmt::v5::buffered_file::buffered_file(cstring_view filename, cstring_view mode)']]], + ['burly_5fwood',['burly_wood',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad238c6c8a44f8e1933911fe10de064f7',1,'fmt::v5']]], + ['bytes_5frange',['bytes_range',['../classspdlog_1_1details_1_1bytes__range.html',1,'spdlog::details::bytes_range< It >'],['../classspdlog_1_1details_1_1bytes__range.html#aa623616735396b0422737b9b62bdd46e',1,'spdlog::details::bytes_range::bytes_range()']]] ]; diff --git a/docs/search/all_4.js b/docs/search/all_4.js index 152288c..4ca1a5c 100644 --- a/docs/search/all_4.js +++ b/docs/search/all_4.js @@ -1,86 +1,111 @@ var searchData= [ - ['d_5fformatter',['D_formatter',['../classspdlog_1_1details_1_1_d__formatter.html',1,'spdlog::details::D_formatter'],['../classspdlog_1_1details_1_1d__formatter.html',1,'spdlog::details::d_formatter'],['../classspdlog_1_1details_1_1_d__formatter.html#a2df2757737cfb0580fcf50edd83efd02',1,'spdlog::details::D_formatter::D_formatter()'],['../classspdlog_1_1details_1_1d__formatter.html#aa5c9a67121b2ab9395b3bed60f5e56a8',1,'spdlog::details::d_formatter::d_formatter()']]], - ['daily_5ffile_5fsink',['daily_file_sink',['../classspdlog_1_1sinks_1_1daily__file__sink.html',1,'spdlog::sinks::daily_file_sink< Mutex, FileNameCalc >'],['../classspdlog_1_1sinks_1_1daily__file__sink.html#a442164b0813283bc631ad39708fb3669',1,'spdlog::sinks::daily_file_sink::daily_file_sink()']]], - ['daily_5ffile_5fsink_2eh',['daily_file_sink.h',['../daily__file__sink_8h.html',1,'']]], - ['daily_5ffile_5fsink_5fmt',['daily_file_sink_mt',['../namespacespdlog_1_1sinks.html#a61124c3792c83b90aad230770f627525',1,'spdlog::sinks']]], - ['daily_5ffile_5fsink_5fst',['daily_file_sink_st',['../namespacespdlog_1_1sinks.html#a1f1c8468d4251073ce96194a5db1fb9e',1,'spdlog::sinks']]], - ['daily_5ffilename_5fcalculator',['daily_filename_calculator',['../structspdlog_1_1sinks_1_1daily__filename__calculator.html',1,'spdlog::sinks']]], - ['daily_5flogger_5fmt',['daily_logger_mt',['../namespacespdlog.html#aeab720351e32788bc6cdf8ada42b0f1f',1,'spdlog']]], - ['daily_5flogger_5fst',['daily_logger_st',['../namespacespdlog.html#a887beb44c55ef32f4bc62fa16451c77e',1,'spdlog']]], - ['dark',['dark',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a3802a11d60d725bb27b3a6aaff62bfed',1,'spdlog::sinks::ansicolor_sink']]], - ['dark_5fblue',['dark_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a27e3a57f752eac25c69739545fccef73',1,'fmt::v5']]], - ['dark_5fcyan',['dark_cyan',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0abfa3108ee9c64dae693a704959e2c25e',1,'fmt::v5']]], - ['dark_5fgolden_5frod',['dark_golden_rod',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9047140da3bd5d20676eb94102443e5a',1,'fmt::v5']]], - ['dark_5fgray',['dark_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a49dba686026a18435dd23b5e83eb5cfd',1,'fmt::v5']]], - ['dark_5fgreen',['dark_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a609a1b0e5d49d6de91c649fa962e545d',1,'fmt::v5']]], - ['dark_5fkhaki',['dark_khaki',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae21cb3066a44318e0b096d0d9e010f09',1,'fmt::v5']]], - ['dark_5fmagenta',['dark_magenta',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aa1876a44fe9d3e277e5a90a14fd1d375',1,'fmt::v5']]], - ['dark_5folive_5fgreen',['dark_olive_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ab88072f7e28a64cfd1a36370be8450bb',1,'fmt::v5']]], - ['dark_5forange',['dark_orange',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aaac43a86b5d19ed2ff0aefa6b0758fe3',1,'fmt::v5']]], - ['dark_5forchid',['dark_orchid',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5afa2a600463278912509f72d9d18ba3',1,'fmt::v5']]], - ['dark_5fred',['dark_red',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9c2398f188d23be4d9676cadf1c2909f',1,'fmt::v5']]], - ['dark_5fsalmon',['dark_salmon',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a541cf8ef71e19f44c9fa646ad9196b3f',1,'fmt::v5']]], - ['dark_5fsea_5fgreen',['dark_sea_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5546cc776b6e0df7f4fe922f02cb6154',1,'fmt::v5']]], - ['dark_5fslate_5fblue',['dark_slate_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a486c9b835e518cd7b0c998ca7a37c893',1,'fmt::v5']]], - ['dark_5fslate_5fgray',['dark_slate_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae707e58e389e4f7cda44cd1254a6d1fc',1,'fmt::v5']]], - ['dark_5fturquoise',['dark_turquoise',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0af6b3c061d92535983e73d0e6c1b8338c',1,'fmt::v5']]], - ['dark_5fviolet',['dark_violet',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4b1668d660111fbf3b86b4238b285677',1,'fmt::v5']]], - ['data',['data',['../structlivox_1_1_comm_packet.html#a7ba25954258f461a079911c180da2669',1,'livox::CommPacket::data()'],['../struct_livox_eth_packet.html#a8a474f23d910eed792e7ad98914dfe7c',1,'LivoxEthPacket::data()'],['../structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a00b749531f5c3f26f7360080f900d5b2',1,'fmt::v5::internal::named_arg_base::data()'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a218e3b77fad28065c54461d33f82c8fb',1,'fmt::v5::internal::prettify_handler::data()'],['../structfmt_1_1v5_1_1internal_1_1dummy__int.html#a9bcdf394ef31a10161975dcdbed86c25',1,'fmt::v5::internal::dummy_int::data()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a384f1304da6ce18c4713368327354479',1,'fmt::v5::internal::basic_buffer::data()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a9ab5672bca28a46bb98f25d424e242cd',1,'fmt::v5::internal::basic_buffer::data() const'],['../classfmt_1_1v5_1_1basic__string__view.html#a517e9e8fc58c52c7816fa647d5e69f9f',1,'fmt::v5::basic_string_view::data()'],['../classfmt_1_1v5_1_1format__int.html#afde6e35fd703a48b346c0dd969bd6b1c',1,'fmt::v5::format_int::data()'],['../namespacefmt_1_1v5_1_1internal.html#ac62a332ee64650f2ebe0e8095fa8e7c0',1,'fmt::v5::internal::data()']]], - ['data_5flen',['data_len',['../structlivox_1_1_comm_packet.html#a9586bf3ae947c5809c25d40aa3091ef7',1,'livox::CommPacket']]], - ['data_5fport',['data_port',['../struct_device_info.html#aa3d0a3e3476880be7d9735fc91929024',1,'DeviceInfo::data_port()'],['../struct_handshake_request.html#a6e38ca96eeba69cdcc7a2544cbe347e1',1,'HandshakeRequest::data_port()']]], - ['data_5ftype',['data_type',['../struct_livox_eth_packet.html#abd6d282748a4cd8c11853afae5d456ae',1,'LivoxEthPacket']]], - ['datacallback',['DataCallback',['../livox__sdk_8h.html#a7b6ad0f6c2c1e198bb8df861368cf5e0',1,'livox_sdk.h']]], - ['days',['days',['../namespacespdlog_1_1details.html#a94e52301ec7a1a0be693a4a971af0525',1,'spdlog::details']]], - ['debug',['debug',['../classspdlog_1_1logger.html#a1f60afc8308e0127c2eab2619ae352d5',1,'spdlog::logger::debug(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#aca96637e71ab459738ccc7287be28c2e',1,'spdlog::logger::debug(const T &msg)'],['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8baea632f71a316dac4dbaf2d98534c7ca5',1,'spdlog::level::debug()'],['../namespacespdlog.html#a29e62b80052a1440e526853d4b2c3c5c',1,'spdlog::debug(const char *fmt, const Args &... args)'],['../namespacespdlog.html#a93c284cebdb3b3dab204f2a87344e4b5',1,'spdlog::debug(const T &msg)']]], - ['dec_5fwriter',['dec_writer',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html',1,'fmt::v5::basic_writer::int_writer']]], - ['decimal_5fformatter',['decimal_formatter',['../classfmt_1_1v5_1_1internal_1_1decimal__formatter.html',1,'fmt::v5::internal::decimal_formatter'],['../classfmt_1_1v5_1_1internal_1_1decimal__formatter.html#ae9628f9ead0c072984e75532438c0182',1,'fmt::v5::internal::decimal_formatter::decimal_formatter()']]], - ['decimal_5fformatter_5fnull',['decimal_formatter_null',['../classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html',1,'fmt::v5::internal::decimal_formatter_null'],['../classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html#ad0faad0e42c161621f7460207abe3498',1,'fmt::v5::internal::decimal_formatter_null::decimal_formatter_null()']]], - ['declval',['declval',['../namespacefmt_1_1v5_1_1internal.html#ae8ef7d855b651c42243a7c6b109cd94b',1,'fmt::v5::internal']]], - ['deep_5fpink',['deep_pink',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a350b14335681ec97282ca0452dd5e7dc',1,'fmt::v5']]], - ['deep_5fsky_5fblue',['deep_sky_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a384d3f701794afb076dd9e92980bdd91',1,'fmt::v5']]], - ['default_5fasync_5fq_5fsize',['default_async_q_size',['../namespacespdlog_1_1details.html#a050e412794a5af8916ef36e4ed100c25',1,'spdlog::details']]], - ['default_5feol',['default_eol',['../namespacespdlog_1_1details_1_1os.html#a1db4824c9cd5bc09a5f3dd7f248f1c51',1,'spdlog::details::os']]], - ['default_5ferr_5fhandler_5f',['default_err_handler_',['../classspdlog_1_1logger.html#a3432e21bdc19d74024b57cc3f26a8471',1,'spdlog::logger']]], - ['default_5ffactory',['default_factory',['../namespacespdlog.html#a349fb42bd8e759a32021b46fcdaca6c6',1,'spdlog']]], - ['default_5flevel',['default_level',['../classspdlog_1_1logger.html#a0d0307a6501a9f56689c386a006991fe',1,'spdlog::logger']]], - ['default_5flogger',['default_logger',['../classspdlog_1_1details_1_1registry.html#af6c1f16e0433b6400aef5219fa1b81ea',1,'spdlog::details::registry::default_logger()'],['../namespacespdlog.html#a9e6a16853c325306188a7f6f642eba94',1,'spdlog::default_logger()']]], - ['default_5flogger_5fraw',['default_logger_raw',['../namespacespdlog.html#a2c623c9fadba3efc09b48dac8a3990be',1,'spdlog']]], - ['delimiter',['delimiter',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ae269e1463930629ea37d0d93d0d726c5',1,'fmt::formatter< spdlog::details::bytes_range< T > >::delimiter()'],['../structfmt_1_1v5_1_1formatting__range.html#a399497b7b12286bb0147f7d89699835a',1,'fmt::v5::formatting_range::delimiter()'],['../structfmt_1_1v5_1_1formatting__tuple.html#a233d1ca96854cb2b81bfc30ccca8e5d2',1,'fmt::v5::formatting_tuple::delimiter()']]], - ['dequeue_5ffor',['dequeue_for',['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#af4015ea1657b393755f34d76c97a28d1',1,'spdlog::details::mpmc_blocking_queue']]], - ['descriptor',['descriptor',['../classfmt_1_1v5_1_1file.html#a75a2feb65318ccbbb04e36fc1eecf74a',1,'fmt::v5::file']]], - ['deserialize',['deserialize',['../structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a9c38b418312ad17bcea0feafe39f22ce',1,'fmt::v5::internal::named_arg_base']]], - ['dev_5ftype',['dev_type',['../struct_broadcast_device_info.html#a4aa57f62efdd8c0c1ebbf45fb2e5d4f9',1,'BroadcastDeviceInfo::dev_type()'],['../struct_connected_lidar_info.html#a761199df36d30b25dbc40cf60f954601',1,'ConnectedLidarInfo::dev_type()']]], - ['device_5finfo_5flist',['device_info_list',['../struct_hub_query_lidar_information_response.html#a44e0516899b3d5ff069d6cadf5380761',1,'HubQueryLidarInformationResponse']]], - ['devicebroadcastcallback',['DeviceBroadcastCallback',['../livox__sdk_8h.html#a52822167d10dcc25a680a3883601d3c5',1,'livox_sdk.h']]], - ['devicebroadcastcode',['DeviceBroadcastCode',['../struct_device_broadcast_code.html',1,'']]], - ['deviceevent',['DeviceEvent',['../livox__def_8h.html#a52a002900b5c97625b3689e34474f1af',1,'livox_def.h']]], - ['deviceinfo',['DeviceInfo',['../struct_device_info.html',1,'']]], - ['deviceinformationcallback',['DeviceInformationCallback',['../livox__sdk_8h.html#a45ffd835efcfce16a23fc19488f0b433',1,'livox_sdk.h']]], - ['deviceinformationresponse',['DeviceInformationResponse',['../struct_device_information_response.html',1,'']]], - ['devicestateupdatecallback',['DeviceStateUpdateCallback',['../livox__sdk_8h.html#af20793bf9227b07f07c27e83c4fb5fb5',1,'livox_sdk.h']]], - ['devicetype',['DeviceType',['../livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9',1,'livox_def.h']]], - ['difference_5ftype',['difference_type',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#ae0812a3e1c2651b160e6a4a617fde5c3',1,'fmt::v5::internal::counting_iterator::difference_type()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a9b0fdd9f2efbd8d05a5184bf12b375fe',1,'fmt::v5::internal::truncating_iterator_base::difference_type()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#afd8140268676a9a3d036d0a7184739ea',1,'fmt::v5::internal::null_terminating_iterator::difference_type()']]], - ['digits',['DIGITS',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#ad815e597b46d92023beb025b464b4520',1,'fmt::v5::internal::basic_data']]], - ['dim_5fgray',['dim_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a75435e6bea50867263766b9e5f9bc08d',1,'fmt::v5']]], - ['dist_5fsink',['dist_sink',['../classspdlog_1_1sinks_1_1dist__sink.html',1,'spdlog::sinks::dist_sink< Mutex >'],['../classspdlog_1_1sinks_1_1dist__sink.html#ab5cfe7f044b6381435eac6dc273384e5',1,'spdlog::sinks::dist_sink::dist_sink()=default'],['../classspdlog_1_1sinks_1_1dist__sink.html#afadef20aeb435c8b62b2efa2f0906de5',1,'spdlog::sinks::dist_sink::dist_sink(const dist_sink &)=delete']]], - ['dist_5fsink_2eh',['dist_sink.h',['../dist__sink_8h.html',1,'']]], - ['dist_5fsink_5fmt',['dist_sink_mt',['../namespacespdlog_1_1sinks.html#a1ec468592fd56492075c61a4917acd12',1,'spdlog::sinks']]], - ['dist_5fsink_5fst',['dist_sink_st',['../namespacespdlog_1_1sinks.html#a08b36045f24c178daafc48778df0ce5a',1,'spdlog::sinks']]], - ['do_5fcheck_5fformat_5fstring',['do_check_format_string',['../namespacefmt_1_1v5_1_1internal.html#adbcd0335b87494a6785e0416aced9b09',1,'fmt::v5::internal']]], - ['do_5fget_5farg',['do_get_arg',['../classfmt_1_1v5_1_1internal_1_1context__base.html#abcc9c36e7effb35bcd76c698b478fbe6',1,'fmt::v5::internal::context_base']]], - ['dodger_5fblue',['dodger_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5c090aa7c47fc1b6a05035e07ec9fbb9',1,'fmt::v5']]], - ['double_5ftype',['double_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a9c4e587796c3f3ad1777bd960a717e39',1,'fmt::v5::internal']]], - ['double_5fvalue',['double_value',['../classfmt_1_1v5_1_1internal_1_1value.html#ae1b4342c0188c4f9a366e0223a4b0836',1,'fmt::v5::internal::value']]], - ['drop',['drop',['../classspdlog_1_1details_1_1registry.html#a21f513aa5a7da6a21fe35a5077b2db74',1,'spdlog::details::registry::drop()'],['../namespacespdlog.html#af2ec5792fb30798cf285da36cb5c9377',1,'spdlog::drop()']]], - ['drop_5fall',['drop_all',['../classspdlog_1_1details_1_1registry.html#a127ccc3786f6ddef57f16d354ba4db91',1,'spdlog::details::registry::drop_all()'],['../namespacespdlog.html#ab1211636fc47637f4dc5ee9a18aa1bce',1,'spdlog::drop_all()']]], - ['dummy_5fint',['dummy_int',['../structfmt_1_1v5_1_1internal_1_1dummy__int.html',1,'fmt::v5::internal']]], - ['dummy_5fstring_5fview',['dummy_string_view',['../structfmt_1_1v5_1_1internal_1_1dummy__string__view.html',1,'fmt::v5::internal']]], - ['dup',['dup',['../classfmt_1_1v5_1_1file.html#ab5d469c88f8a9e460ca0aaa9fa1d05f4',1,'fmt::v5::file']]], - ['dup2',['dup2',['../classfmt_1_1v5_1_1file.html#a9585f4793f5036e19dafabd782858f9d',1,'fmt::v5::file::dup2(int fd)'],['../classfmt_1_1v5_1_1file.html#a639739325a65165ec4fbb1a74b5f24df',1,'fmt::v5::file::dup2(int fd, error_code &ec)']]], - ['dynamic_5fformat_5fspecs',['dynamic_format_specs',['../structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html',1,'fmt::v5::internal']]], - ['dynamic_5fformat_5fspecs_3c_20char_5ftype_20_3e',['dynamic_format_specs< char_type >',['../structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html',1,'fmt::v5::internal']]], - ['dynamic_5fformatter',['dynamic_formatter',['../classfmt_1_1v5_1_1dynamic__formatter.html',1,'fmt::v5']]], - ['dynamic_5fspecs_5fhandler',['dynamic_specs_handler',['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html',1,'fmt::v5::internal::dynamic_specs_handler< ParseContext >'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#aeca213f76448b8e011beaa446d70203d',1,'fmt::v5::internal::dynamic_specs_handler::dynamic_specs_handler(dynamic_format_specs< char_type > &specs, ParseContext &ctx)'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a5c4733e658ce853293a499f06461f7c9',1,'fmt::v5::internal::dynamic_specs_handler::dynamic_specs_handler(const dynamic_specs_handler &other)']]], - ['thread_5fpool',['thread_pool',['../classspdlog_1_1async__logger.html#a67ce2a7de422d11203d66f1f6da4be03',1,'spdlog::async_logger']]] + ['c_5fformatter',['C_formatter',['../classspdlog_1_1details_1_1_c__formatter.html',1,'spdlog::details::C_formatter'],['../classspdlog_1_1details_1_1c__formatter.html',1,'spdlog::details::c_formatter'],['../classspdlog_1_1details_1_1c__formatter.html#aa16ea42a3648637a5223ed85d711aa50',1,'spdlog::details::c_formatter::c_formatter()'],['../classspdlog_1_1details_1_1_c__formatter.html#a8b9038a7449cb208fd2a6b1a886b7be8',1,'spdlog::details::C_formatter::C_formatter()']]], + ['c_5fstr',['c_str',['../classfmt_1_1v5_1_1format__int.html#a4081316c3a2859d74be8aec0c614cfa4',1,'fmt::v5::format_int::c_str()'],['../classfmt_1_1v5_1_1basic__cstring__view.html#a3fd9fc51eb41ceeae397a70712a68af5',1,'fmt::v5::basic_cstring_view::c_str()']]], + ['cache_5frefresh',['cache_refresh',['../classspdlog_1_1details_1_1z__formatter.html#a804a8b5035af28939f4803033c951edc',1,'spdlog::details::z_formatter']]], + ['cadet_5fblue',['cadet_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a068e93b58ca276fdd6337535386b0a78',1,'fmt::v5']]], + ['calc_5ffilename',['calc_filename',['../structspdlog_1_1sinks_1_1daily__filename__calculator.html#ae8461e586d3426987a3b11a00b158db2',1,'spdlog::sinks::daily_filename_calculator::calc_filename()'],['../classspdlog_1_1sinks_1_1rotating__file__sink.html#a05d77d7013bc54f55cac702c122ac1c9',1,'spdlog::sinks::rotating_file_sink::calc_filename()']]], + ['capacity',['capacity',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a7bf5da24d9aec9ed9b5e42b912a38a7b',1,'fmt::v5::internal::basic_buffer']]], + ['center',['center',['../structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942eab923ecb127cd5e213f9d9711b5a72fb0',1,'spdlog::details::padding_info']]], + ['ch_5fformatter',['ch_formatter',['../classspdlog_1_1details_1_1ch__formatter.html',1,'spdlog::details::ch_formatter'],['../classspdlog_1_1details_1_1ch__formatter.html#a0ea7f88fed22209cce188238bf103a35',1,'spdlog::details::ch_formatter::ch_formatter()']]], + ['char8_5ft',['char8_t',['../namespacefmt_1_1v5.html#aa9df55c2a1be07baac1ee84d206683f5',1,'fmt::v5']]], + ['char_5fconverter',['char_converter',['../classfmt_1_1v5_1_1internal_1_1char__converter.html',1,'fmt::v5::internal::char_converter< Context >'],['../classfmt_1_1v5_1_1internal_1_1char__converter.html#a593d53809eb74f168c694c62d1aa1c53',1,'fmt::v5::internal::char_converter::char_converter()']]], + ['char_5fcounter',['char_counter',['../structfmt_1_1v5_1_1internal_1_1char__counter.html',1,'fmt::v5::internal']]], + ['char_5fspec_5fhandler',['char_spec_handler',['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html',1,'fmt::v5::internal::arg_formatter_base< Range >::char_spec_handler'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#a9ee2328a2106f91620d78431401d19ae',1,'fmt::v5::internal::arg_formatter_base::char_spec_handler::char_spec_handler()']]], + ['char_5fspecs_5fchecker',['char_specs_checker',['../classfmt_1_1v5_1_1internal_1_1char__specs__checker.html',1,'fmt::v5::internal::char_specs_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#a6f720937604863fca737c9f48c7bbef5',1,'fmt::v5::internal::char_specs_checker::char_specs_checker()']]], + ['char_5ft',['char_t',['../structfmt_1_1v5_1_1internal_1_1char__t.html',1,'fmt::v5::internal::char_t< S >'],['../structfmt_1_1v5_1_1char__t.html',1,'fmt::v5::char_t< S >']]], + ['char_5ftraits',['char_traits',['../structfmt_1_1v5_1_1internal_1_1char__traits.html',1,'fmt::v5::internal']]], + ['char_5ftraits_3c_20char_20_3e',['char_traits< char >',['../structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html',1,'fmt::v5::internal']]], + ['char_5ftraits_3c_20wchar_5ft_20_3e',['char_traits< wchar_t >',['../structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html',1,'fmt::v5::internal']]], + ['char_5ftype',['char_type',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ae0c74a5cd09f1a944f76da410d337c60',1,'fmt::v5::internal::chrono_formatter::char_type()'],['../classfmt_1_1v5_1_1basic__string__view.html#a7dd9c65338332c1e3beb611a7ab883e5',1,'fmt::v5::basic_string_view::char_type()'],['../structfmt_1_1v5_1_1internal_1_1dummy__string__view.html#a1a7f6fcc70a0b038374b78d2b5e34a60',1,'fmt::v5::internal::dummy_string_view::char_type()'],['../classfmt_1_1v5_1_1internal_1_1value.html#abe1bc7d3e37d07c320314586f0156bd4',1,'fmt::v5::internal::value::char_type()'],['../classfmt_1_1v5_1_1basic__parse__context.html#afd4905f512940ea15cb2e1fccc1e7473',1,'fmt::v5::basic_parse_context::char_type()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#af36b86d06d85ba210da04541cfb22389',1,'fmt::v5::internal::context_base::char_type()'],['../classfmt_1_1v5_1_1basic__format__context.html#aac5c87132bab71007a567bd1820f1a16',1,'fmt::v5::basic_format_context::char_type()'],['../classfmt_1_1v5_1_1u8string__view.html#aa0aaed9e4977fa2cbec789178ea3b694',1,'fmt::v5::u8string_view::char_type()'],['../structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#ad1e7da945143945bd5cd6934620331d9',1,'fmt::v5::internal::no_thousands_sep::char_type()'],['../classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a0bd627a0529dc333328af15cbd2d7f77',1,'fmt::v5::internal::add_thousands_sep::char_type()'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a065412840bd7bab950a7f4df38fbc94b',1,'fmt::v5::internal::arg_formatter_base::char_type()'],['../classfmt_1_1v5_1_1internal_1_1specs__handler.html#ab634b0a93a600c943d708af3ba46805e',1,'fmt::v5::internal::specs_handler::char_type()'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a91e483d3cf1a54ee8c6163572442888a',1,'fmt::v5::internal::dynamic_specs_handler::char_type()'],['../classfmt_1_1v5_1_1basic__writer.html#ad0ee54da443751f74466a16b033ab9f6',1,'fmt::v5::basic_writer::char_type()'],['../classfmt_1_1v5_1_1basic__printf__context.html#a410acf2a67e657f4262e299e8edb6573',1,'fmt::v5::basic_printf_context::char_type()'],['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a4291d26029047911bc456839856ea64d',1,'fmt::v5::internal::char_type()']]], + ['chartreuse',['chartreuse',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a3efea3cccdbed48be1f1db03de4fa20e',1,'fmt::v5']]], + ['check_5farg_5fid',['check_arg_id',['../classfmt_1_1v5_1_1basic__parse__context.html#a1b0beb2ee86041582086cffa5070d02b',1,'fmt::v5::basic_parse_context::check_arg_id(unsigned)'],['../classfmt_1_1v5_1_1basic__parse__context.html#aeb20a1952bd3f6186c0157341326315a',1,'fmt::v5::basic_parse_context::check_arg_id(basic_string_view< Char >)']]], + ['check_5fformat_5fstring',['check_format_string',['../namespacefmt_1_1v5_1_1internal.html#acd0741048e2d4d76c3a549c5a6d9d857',1,'fmt::v5::internal::check_format_string(const S &)'],['../namespacefmt_1_1v5_1_1internal.html#a1e8f98191fb8cde7f6fa0b768dccdab2',1,'fmt::v5::internal::check_format_string(S)']]], + ['check_5fpointer_5ftype_5fspec',['check_pointer_type_spec',['../namespacefmt_1_1v5_1_1internal.html#ab9c093637a8328c1d798547a91ca1a5b',1,'fmt::v5::internal']]], + ['check_5fstring_5ftype_5fspec',['check_string_type_spec',['../namespacefmt_1_1v5_1_1internal.html#a83526f0a8d3c8e9cc85b24a7a00e8496',1,'fmt::v5::internal']]], + ['checked',['checked',['../structfmt_1_1v5_1_1internal_1_1checked.html',1,'fmt::v5::internal']]], + ['checked_5fargs',['checked_args',['../structfmt_1_1v5_1_1internal_1_1checked__args.html',1,'fmt::v5::internal::checked_args< S, Args >'],['../structfmt_1_1v5_1_1internal_1_1checked__args.html#a9b9dcf34426ab439f1df375db66b677c',1,'fmt::v5::internal::checked_args::checked_args()']]], + ['checkpacket',['CheckPacket',['../classlivox_1_1_protocol.html#af29b4a6d2966e31e19b7f640414ebeb7',1,'livox::Protocol']]], + ['checkpreamble',['CheckPreamble',['../classlivox_1_1_protocol.html#acaf1a7dbf16f2deee49ded19e17a998a',1,'livox::Protocol']]], + ['chocolate',['chocolate',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ac378985d629e99a4e86213db0cd5e70d',1,'fmt::v5']]], + ['chrono_2eh',['chrono.h',['../chrono_8h.html',1,'']]], + ['chrono_5fformat_5fchecker',['chrono_format_checker',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html',1,'fmt::v5::internal']]], + ['chrono_5fformatter',['chrono_formatter',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html',1,'fmt::v5::internal::chrono_formatter< FormatContext, OutputIt >'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a283a7a70218041ce28b0f3cea007655f',1,'fmt::v5::internal::chrono_formatter::chrono_formatter()']]], + ['circular_5fq',['circular_q',['../classspdlog_1_1details_1_1circular__q.html',1,'spdlog::details::circular_q< T >'],['../classspdlog_1_1details_1_1circular__q.html#ab0aae072dd38824fee65ed9d48568c2f',1,'spdlog::details::circular_q::circular_q()']]], + ['circular_5fq_2eh',['circular_q.h',['../circular__q_8h.html',1,'']]], + ['circular_5fq_3c_20item_5ftype_20_3e',['circular_q< item_type >',['../classspdlog_1_1details_1_1circular__q.html',1,'spdlog::details']]], + ['clear',['clear',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#ae92aa3486601bb4ba757be96b3c6bee3',1,'fmt::v5::internal::basic_buffer']]], + ['clear_5fline',['clear_line',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#aa52fbe671a7c1fbeaf784b8a325745c6',1,'spdlog::sinks::ansicolor_sink']]], + ['clone',['clone',['../classspdlog_1_1async__logger.html#aef60bc96b78ff98a471dc08977d4cb5c',1,'spdlog::async_logger::clone()'],['../classspdlog_1_1pattern__formatter.html#a73a60f53c23e860a2c1229c0781819f9',1,'spdlog::pattern_formatter::clone()'],['../classspdlog_1_1formatter.html#ae9857a794904d98a4a9527a742e37129',1,'spdlog::formatter::clone()'],['../classspdlog_1_1logger.html#a649a3c1a1b380e2488a93f9c3ae694de',1,'spdlog::logger::clone()']]], + ['close',['close',['../classspdlog_1_1details_1_1file__helper.html#a6a6d7a75014ae880857b4fe4fd01dc7a',1,'spdlog::details::file_helper::close()'],['../classfmt_1_1v5_1_1buffered__file.html#a884ec99b9150cee0ead3c62613befe04',1,'fmt::v5::buffered_file::close()'],['../classfmt_1_1v5_1_1file.html#ab3959bb606e2fd0349dcc3d61c12620d',1,'fmt::v5::file::close()']]], + ['cmd_5fcode',['cmd_code',['../structlivox_1_1_comm_packet.html#a69485605f4d8113b178163d388defa89',1,'livox::CommPacket']]], + ['cmd_5fport',['cmd_port',['../struct_device_info.html#abb8bbc33f437058af59aa6611137b2f1',1,'DeviceInfo::cmd_port()'],['../struct_handshake_request.html#a6a7a7ba0f5b928481ab263c6216af37b',1,'HandshakeRequest::cmd_port()']]], + ['cmd_5fset',['cmd_set',['../structlivox_1_1_comm_packet.html#af288b1ff799a0d0a9a1a8d0870bb5dd0',1,'livox::CommPacket']]], + ['code_5flist',['code_list',['../struct_hub_get_extrinsic_parameter_request.html#a30257b6481b394e07c28a5be493e5c4f',1,'HubGetExtrinsicParameterRequest']]], + ['color',['color',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0',1,'fmt::v5']]], + ['color_2eh',['color.h',['../color_8h.html',1,'']]], + ['color_5frange_5fend',['color_range_end',['../structspdlog_1_1details_1_1log__msg.html#a0dfc2763f8e6b73ca34e4cb7c5a9950a',1,'spdlog::details::log_msg']]], + ['color_5frange_5fstart',['color_range_start',['../structspdlog_1_1details_1_1log__msg.html#a87cb1c5f1ecd7415412722123e35d491',1,'spdlog::details::log_msg']]], + ['color_5fstart_5fformatter',['color_start_formatter',['../classspdlog_1_1details_1_1color__start__formatter.html',1,'spdlog::details::color_start_formatter'],['../classspdlog_1_1details_1_1color__start__formatter.html#a5222b004ac21f1b4db466400a324ad21',1,'spdlog::details::color_start_formatter::color_start_formatter()']]], + ['color_5fstop_5fformatter',['color_stop_formatter',['../classspdlog_1_1details_1_1color__stop__formatter.html',1,'spdlog::details::color_stop_formatter'],['../classspdlog_1_1details_1_1color__stop__formatter.html#ae91bec8b6dec2965b7406026925d1cdc',1,'spdlog::details::color_stop_formatter::color_stop_formatter()']]], + ['color_5ftype',['color_type',['../structfmt_1_1v5_1_1internal_1_1color__type.html',1,'fmt::v5::internal::color_type'],['../structfmt_1_1v5_1_1internal_1_1color__type.html#a160b5a017452a64fb874b331153ada6e',1,'fmt::v5::internal::color_type::color_type()'],['../structfmt_1_1v5_1_1internal_1_1color__type.html#a288984b7a227bda31470628567a894fa',1,'fmt::v5::internal::color_type::color_type(color rgb_color)'],['../structfmt_1_1v5_1_1internal_1_1color__type.html#a6ccc6a1b7eabca5301b99a7d6c0dc0b9',1,'fmt::v5::internal::color_type::color_type(rgb rgb_color)'],['../structfmt_1_1v5_1_1internal_1_1color__type.html#a858e477eabe77aa1062ef358089691de',1,'fmt::v5::internal::color_type::color_type(terminal_color term_color)']]], + ['color_5funion',['color_union',['../unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html',1,'fmt::v5::internal::color_type']]], + ['comm_5fport_2eh',['comm_port.h',['../comm__port_8h.html',1,'']]], + ['common_2eh',['common.h',['../common_8h.html',1,'']]], + ['commoncommandcallback',['CommonCommandCallback',['../livox__sdk_8h.html#aa86d8ae1586fc96b9cfd11ce8cf528d2',1,'livox_sdk.h']]], + ['commpacket',['CommPacket',['../structlivox_1_1_comm_packet.html',1,'livox::CommPacket'],['../namespacelivox.html#af4e436d907dcafb14fcc88a760f75090',1,'livox::CommPacket()']]], + ['commport',['CommPort',['../classlivox_1_1_comm_port.html',1,'livox::CommPort'],['../classlivox_1_1_comm_port.html#a5a159a37a2b90e3e99a8a2258494c374',1,'livox::CommPort::CommPort()']]], + ['compare',['compare',['../classfmt_1_1v5_1_1basic__string__view.html#a4e8a2b1d8a6a749c17b43a8f4dbc09c1',1,'fmt::v5::basic_string_view']]], + ['compile_5fstring',['compile_string',['../structfmt_1_1v5_1_1compile__string.html',1,'fmt::v5']]], + ['compute_5fboundaries',['compute_boundaries',['../classfmt_1_1v5_1_1internal_1_1fp.html#ab9070b4fc350e45c0d3c9685e8240fc2',1,'fmt::v5::internal::fp']]], + ['concealed',['concealed',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a681736d8ce3d3551bdb51e053a839fc3',1,'spdlog::sinks::ansicolor_sink']]], + ['conditional_5fhelper',['conditional_helper',['../structfmt_1_1v5_1_1internal_1_1conditional__helper.html',1,'fmt::v5::internal']]], + ['config_5flist',['config_list',['../struct_hub_set_mode_request.html#a288defb8dd0478bc52b8cdd9a6315c27',1,'HubSetModeRequest']]], + ['connectedlidarinfo',['ConnectedLidarInfo',['../struct_connected_lidar_info.html',1,'']]], + ['console_5fglobals_2eh',['console_globals.h',['../console__globals_8h.html',1,'']]], + ['console_5fmutex',['console_mutex',['../structspdlog_1_1details_1_1console__mutex.html',1,'spdlog::details']]], + ['console_5fnullmutex',['console_nullmutex',['../structspdlog_1_1details_1_1console__nullmutex.html',1,'spdlog::details']]], + ['console_5fstderr',['console_stderr',['../structspdlog_1_1details_1_1console__stderr.html',1,'spdlog::details']]], + ['console_5fstdout',['console_stdout',['../structspdlog_1_1details_1_1console__stdout.html',1,'spdlog::details']]], + ['const_5fcheck',['const_check',['../namespacefmt_1_1v5_1_1internal.html#a8d6d08e76d5ee6a3289c5e010e6db950',1,'fmt::v5::internal']]], + ['const_5freference',['const_reference',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#abfe6d821425b515382f5001823d40836',1,'fmt::v5::internal::basic_buffer::const_reference()'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#a137e3161cc2723cb0b0ec2561f879348',1,'fmt::v5::basic_memory_buffer::const_reference()']]], + ['container_5fbuffer',['container_buffer',['../classfmt_1_1v5_1_1internal_1_1container__buffer.html',1,'fmt::v5::internal::container_buffer< Container >'],['../classfmt_1_1v5_1_1internal_1_1container__buffer.html#a5f7834eecd73531a1f57993f9b9e3977',1,'fmt::v5::internal::container_buffer::container_buffer()']]], + ['context',['context',['../structfmt_1_1v5_1_1internal_1_1checked__args.html#a08f5fb05bf1d8da4eee00b15438c9f5d',1,'fmt::v5::internal::checked_args::context()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a5836908b0ff253946807ec94b74885d6',1,'fmt::v5::internal::chrono_formatter::context()'],['../structfmt_1_1v5_1_1format__handler.html#adcffafbbb51c42a17357ffc66e697fc7',1,'fmt::v5::format_handler::context()']]], + ['context_5fbase',['context_base',['../classfmt_1_1v5_1_1internal_1_1context__base.html',1,'fmt::v5::internal::context_base< OutputIt, Context, Char >'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#a1619fee676f24de9cb69faab79584278',1,'fmt::v5::internal::context_base::context_base()']]], + ['context_5fbase_3c_20outputit_2c_20basic_5fformat_5fcontext_3c_20outputit_2c_20char_20_3e_2c_20char_20_3e',['context_base< OutputIt, basic_format_context< OutputIt, Char >, Char >',['../classfmt_1_1v5_1_1internal_1_1context__base.html',1,'fmt::v5::internal']]], + ['context_5fbase_3c_20outputit_2c_20basic_5fprintf_5fcontext_3c_20outputit_2c_20char_2c_20argformatter_20_3e_2c_20char_20_3e',['context_base< OutputIt, basic_printf_context< OutputIt, Char, ArgFormatter >, Char >',['../classfmt_1_1v5_1_1internal_1_1context__base.html',1,'fmt::v5::internal']]], + ['convert_5farg',['convert_arg',['../namespacefmt_1_1v5_1_1internal.html#acb73020810b7b8d56b3538a416d97988',1,'fmt::v5::internal']]], + ['convert_5fto_5fint',['convert_to_int',['../structfmt_1_1v5_1_1convert__to__int.html',1,'fmt::v5']]], + ['convert_5fto_5fint_3c_20t_2c_20char_2c_20void_20_3e',['convert_to_int< T, Char, void >',['../structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html',1,'fmt::v5']]], + ['copy',['copy',['../namespacefmt_1_1v5_1_1internal.html#afe980acdb2bb4cb83729a07c105159d1',1,'fmt::v5::internal::copy(const RangeT &range, OutputIterator out)'],['../namespacefmt_1_1v5_1_1internal.html#aef961c9d2b2fb8caa86202923a35e1dc',1,'fmt::v5::internal::copy(const char *str, OutputIterator out)'],['../namespacefmt_1_1v5_1_1internal.html#a285a2b81053ae5ac35df5f3e91a7c406',1,'fmt::v5::internal::copy(char ch, OutputIterator out)']]], + ['copy_5fstr',['copy_str',['../namespacefmt_1_1v5_1_1internal.html#a32fc9971391c76e82f000d301ebe6a4c',1,'fmt::v5::internal::copy_str(InputIt begin, InputIt end, OutputIt it)'],['../namespacefmt_1_1v5_1_1internal.html#a0a4fd70e18eba9d0da494fcb4f0fc32c',1,'fmt::v5::internal::copy_str(InputIt begin, InputIt end, OutputIt it)']]], + ['coral',['coral',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad2ebed4eaf58509dcc358e1782c38fea',1,'fmt::v5']]], + ['core_2eh',['core.h',['../core_8h.html',1,'']]], + ['core_5fformat_5fspecs',['core_format_specs',['../structfmt_1_1v5_1_1core__format__specs.html',1,'fmt::v5::core_format_specs'],['../structfmt_1_1v5_1_1core__format__specs.html#af2f270216f9f408f402e94ad1033fe26',1,'fmt::v5::core_format_specs::core_format_specs()']]], + ['cornflower_5fblue',['cornflower_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0abc432826c5179d5332c28e32f2ff58a0',1,'fmt::v5']]], + ['cornsilk',['cornsilk',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aea26b11983535b3792d71954aa4d41d8',1,'fmt::v5']]], + ['count',['count',['../struct_hub_query_lidar_information_response.html#aeef7d6cc430c1c408287f029ad9cf67d',1,'HubQueryLidarInformationResponse::count()'],['../struct_hub_set_mode_request.html#a74ea714230b28433f927565c98305292',1,'HubSetModeRequest::count()'],['../struct_hub_set_mode_response.html#a737a969dcc4bb59f45aa4c0a842d50d3',1,'HubSetModeResponse::count()'],['../struct_hub_set_extrinsic_parameter_request.html#a99dcdcfcadd639e7b341f03f36ba8a88',1,'HubSetExtrinsicParameterRequest::count()'],['../struct_hub_set_extrinsic_parameter_response.html#a41076bb2abf1e04ef490fd910964643d',1,'HubSetExtrinsicParameterResponse::count()'],['../struct_hub_get_extrinsic_parameter_request.html#a411353af6f79a0ecca12b8c7f106f322',1,'HubGetExtrinsicParameterRequest::count()'],['../struct_hub_get_extrinsic_parameter_response.html#ad0f3a2cd721c3dea6999799a02f5b3ce',1,'HubGetExtrinsicParameterResponse::count()'],['../struct_hub_query_lidar_status_response.html#a6059f781c5eef3231def143ad1b9490b',1,'HubQueryLidarStatusResponse::count()'],['../struct_hub_rain_fog_suppress_request.html#a3f14c799e8f96e2897c65191c96973ec',1,'HubRainFogSuppressRequest::count()'],['../struct_hub_rain_fog_suppress_response.html#a3e070f7d0477cf0ccf8fc8161fe8d9d3',1,'HubRainFogSuppressResponse::count()'],['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#af0879937c615e146111e361db9a393d9',1,'fmt::v5::internal::counting_iterator::count()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a56850280db1992628ce9afaab31c8637',1,'fmt::v5::internal::truncating_iterator_base::count()']]], + ['count_5f',['count_',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a16eabcb848e779b567918d0935904b7b',1,'fmt::v5::internal::truncating_iterator_base']]], + ['count_5fcode_5fpoints',['count_code_points',['../namespacefmt_1_1v5_1_1internal.html#a6c2c4c3c6a5dc4e3559ed105c44c4d9e',1,'fmt::v5::internal::count_code_points(basic_string_view< Char > s)'],['../namespacefmt_1_1v5_1_1internal.html#aca60c11758ae1d5b422178e883252bba',1,'fmt::v5::internal::count_code_points(basic_string_view< char8_t > s)']]], + ['count_5fdigits',['count_digits',['../namespacespdlog_1_1details_1_1fmt__helper.html#a976eeb3c4a42ccfb05437aa9a0d4d9f7',1,'spdlog::details::fmt_helper::count_digits()'],['../namespacefmt_1_1v5_1_1internal.html#a1b8c0cdffe57c5fe9dc629babe471316',1,'fmt::v5::internal::count_digits()']]], + ['counting_5fiterator',['counting_iterator',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html',1,'fmt::v5::internal::counting_iterator< T >'],['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a9d2f0224d9f4a23484dc28c67ac81f13',1,'fmt::v5::internal::counting_iterator::counting_iterator()']]], + ['crc32_5fcalc',['crc32_calc',['../class_fast_c_r_c32.html#ade987c2d06975707d94aa2eaa203a480',1,'FastCRC32']]], + ['create',['create',['../structspdlog_1_1async__factory__impl.html#aa39b4c4216d822e1788beccde29160d9',1,'spdlog::async_factory_impl::create()'],['../structspdlog_1_1synchronous__factory.html#acde09e4f9f33281ab1e663de5ef703b5',1,'spdlog::synchronous_factory::create()'],['../namespacespdlog.html#a852b420dc3dd5e5193a21f61f8577e62',1,'spdlog::create()']]], + ['create_5fasync',['create_async',['../namespacespdlog.html#a220f834b057b45ef730c435bcc60b0aa',1,'spdlog']]], + ['create_5fasync_5fnb',['create_async_nb',['../namespacespdlog.html#ac5db26987120ac7b1ba0fbefe551ee52',1,'spdlog']]], + ['crimson',['crimson',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5fa3ccc64c973db27e9fcade0810423e',1,'fmt::v5']]], + ['critical',['critical',['../classspdlog_1_1logger.html#a3d11416764fe7ead94868d4c6438f583',1,'spdlog::logger::critical(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#a3c5140393ec153b2b8478361aac80eb6',1,'spdlog::logger::critical(const T &msg)'],['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8ba309b214a2b8629b6cf0048ce916e8a58',1,'spdlog::level::critical()'],['../namespacespdlog.html#a753989ee0011b7d977e04a278b9380a2',1,'spdlog::critical(const char *fmt, const Args &... args)'],['../namespacespdlog.html#a2c707fb3d3d12a244ebfe3e40b417edc',1,'spdlog::critical(const T &msg)']]], + ['cstring_5fspec_5fhandler',['cstring_spec_handler',['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html',1,'fmt::v5::internal::arg_formatter_base< Range >::cstring_spec_handler'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#aa61244d241d6d4b5a8859df32e8d1c41',1,'fmt::v5::internal::arg_formatter_base::cstring_spec_handler::cstring_spec_handler()']]], + ['cstring_5ftype',['cstring_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a73df9a3576f5a9596c4651fddef7dfac',1,'fmt::v5::internal']]], + ['cstring_5ftype_5fchecker',['cstring_type_checker',['../classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html',1,'fmt::v5::internal::cstring_type_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#a121cc7c3aa7c96aafe802123ca731226',1,'fmt::v5::internal::cstring_type_checker::cstring_type_checker()']]], + ['cstring_5fview',['cstring_view',['../namespacefmt_1_1v5.html#aefed7eb96cd309b6f9d5dab1f9fae2f6',1,'fmt::v5']]], + ['custom',['custom',['../classfmt_1_1v5_1_1internal_1_1value.html#a2f3ea08c07ddaf1679366b007f54d728',1,'fmt::v5::internal::value']]], + ['custom_5fformatter',['custom_formatter',['../classfmt_1_1v5_1_1internal_1_1custom__formatter.html',1,'fmt::v5::internal::custom_formatter< Char, Context >'],['../classfmt_1_1v5_1_1internal_1_1custom__formatter.html#ac2612121f51ea49d01b48a368899cbe9',1,'fmt::v5::internal::custom_formatter::custom_formatter()']]], + ['custom_5ftype',['custom_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a2bf13ea13c39343d5656a3804f53508a',1,'fmt::v5::internal']]], + ['custom_5fvalue',['custom_value',['../structfmt_1_1v5_1_1internal_1_1custom__value.html',1,'fmt::v5::internal']]], + ['custom_5fvalue_3c_20basic_5fformat_5fcontext_3c_20outputit_2c_20char_20_3e_20_3e',['custom_value< basic_format_context< OutputIt, Char > >',['../structfmt_1_1v5_1_1internal_1_1custom__value.html',1,'fmt::v5::internal']]], + ['custom_5fvalue_3c_20basic_5fprintf_5fcontext_3c_20outputit_2c_20char_2c_20argformatter_20_3e_20_3e',['custom_value< basic_printf_context< OutputIt, Char, ArgFormatter > >',['../structfmt_1_1v5_1_1internal_1_1custom__value.html',1,'fmt::v5::internal']]], + ['custom_5fvalue_3c_20format_5fcontext_20_3e',['custom_value< format_context >',['../structfmt_1_1v5_1_1internal_1_1custom__value.html',1,'fmt::v5::internal']]], + ['custom_5fvalue_3c_20wformat_5fcontext_20_3e',['custom_value< wformat_context >',['../structfmt_1_1v5_1_1internal_1_1custom__value.html',1,'fmt::v5::internal']]], + ['cyan',['cyan',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a6b2e0a6f8d365e054a255b631c4d4046',1,'spdlog::sinks::ansicolor_sink::cyan()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a6cbc30363fd20b20c1cd0f22211f0612',1,'spdlog::sinks::wincolor_sink::CYAN()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a6411532ba4971f378391776a9db629d3',1,'fmt::v5::cyan()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa6411532ba4971f378391776a9db629d3',1,'fmt::v5::cyan()']]] ]; diff --git a/docs/search/all_5.js b/docs/search/all_5.js index 5935351..152288c 100644 --- a/docs/search/all_5.js +++ b/docs/search/all_5.js @@ -1,24 +1,86 @@ var searchData= [ - ['e',['e',['../classfmt_1_1v5_1_1internal_1_1fp.html#a1637cce65f488ce657cb23db4c7c0219',1,'fmt::v5::internal::fp']]], - ['e_5fformatter',['e_formatter',['../classspdlog_1_1details_1_1e__formatter.html',1,'spdlog::details::e_formatter'],['../classspdlog_1_1details_1_1_e__formatter.html',1,'spdlog::details::E_formatter'],['../classspdlog_1_1details_1_1e__formatter.html#a75148ba81c9eac2025b6c405acd51ea3',1,'spdlog::details::e_formatter::e_formatter()'],['../classspdlog_1_1details_1_1_e__formatter.html#a6965aa5fe03beb42c5b360b56ca4dc54',1,'spdlog::details::E_formatter::E_formatter()']]], - ['emphasis',['emphasis',['../namespacefmt_1_1v5.html#a3c18bfe3f941ca2b94688cb6d54f1cec',1,'fmt::v5']]], - ['empty',['empty',['../structspdlog_1_1source__loc.html#aa715720ba2447a5b14bf79b453a89e33',1,'spdlog::source_loc::empty()'],['../classspdlog_1_1details_1_1circular__q.html#ae27eea7ecb58860f4471f473e02270f8',1,'spdlog::details::circular_q::empty()']]], - ['enabled',['enabled',['../structspdlog_1_1details_1_1padding__info.html#a2c315d1c5ccdac54957d3d9281830ea9',1,'spdlog::details::padding_info']]], - ['end',['end',['../structfmt_1_1v5_1_1arg__join.html#aea138338c02d417a0633ecebd019e890',1,'fmt::v5::arg_join::end()'],['../classspdlog_1_1details_1_1bytes__range.html#a513faba7dd574f7a32f00504739d6032',1,'spdlog::details::bytes_range::end()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a0b26ffcf1270c07384a57ddaf3a38a35',1,'fmt::v5::internal::basic_buffer::end()'],['../classfmt_1_1v5_1_1basic__string__view.html#afa63ef5e96803f21d21cf1ac0dfee391',1,'fmt::v5::basic_string_view::end()'],['../classfmt_1_1v5_1_1basic__parse__context.html#a5577df5c96ceeefa7f8ea06cd73a4e51',1,'fmt::v5::basic_parse_context::end()'],['../namespacefmt_1_1v5_1_1internal.html#a1f190af8f5561392e03519562384d3b8',1,'fmt::v5::internal::end(const C &c) -> decltype(c.end())'],['../namespacefmt_1_1v5_1_1internal.html#a6d2eb5ad9f38abcc532e048b92070942',1,'fmt::v5::internal::end(T(&array)[N])']]], - ['end_5fprecision',['end_precision',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#af040082b7ccbdc2929c4f0c28aebd744',1,'fmt::v5::internal::specs_setter::end_precision()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#adc19ccf22ffc0997293bdf759711b6e7',1,'fmt::v5::internal::specs_checker::end_precision()']]], - ['enqueue',['enqueue',['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#a3795640b651fcb2de66a21ef2bc221f1',1,'spdlog::details::mpmc_blocking_queue']]], - ['enqueue_5fnowait',['enqueue_nowait',['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#a1280489c9035a705f50f04905a5ed394',1,'spdlog::details::mpmc_blocking_queue']]], - ['err',['err',['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8ba4d723e295b98a75c1263d85fc165045f',1,'spdlog::level']]], - ['err_5fcode',['err_code',['../struct_livox_eth_packet.html#aefcc74089cdc678cf2e43157f01890dd',1,'LivoxEthPacket']]], - ['err_5fhandler_5f',['err_handler_',['../classspdlog_1_1logger.html#a3e623bd54bd38315f66063ae8907ce17',1,'spdlog::logger']]], - ['error',['error',['../classspdlog_1_1logger.html#a144338f88fd2d2bec2cae951e214a9a5',1,'spdlog::logger::error(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#a9ce73acaa12b7dbbecde6ac3bc7353e5',1,'spdlog::logger::error(const T &msg)'],['../namespacespdlog.html#a84fc1d0e60ec7d333fd4f299f9c1e6b2',1,'spdlog::error(const char *fmt, const Args &... args)'],['../namespacespdlog.html#aa274f8a5f4f20ff435d27500ff589234',1,'spdlog::error(const T &msg)']]], - ['error_5fcode',['error_code',['../classfmt_1_1v5_1_1error__code.html',1,'fmt::v5::error_code'],['../struct_error_message.html#a04ae86448632fb4321a84f69f546666c',1,'ErrorMessage::error_code()'],['../classfmt_1_1v5_1_1system__error.html#a0d2342ce3d391ad12df4aa7509bd9ac7',1,'fmt::v5::system_error::error_code()'],['../classfmt_1_1v5_1_1error__code.html#a71a509534cb2d3a5705c6812293dd7f8',1,'fmt::v5::error_code::error_code()']]], - ['error_5fcode_5f',['error_code_',['../classfmt_1_1v5_1_1system__error.html#ac761354e3eb707044395fd140020e796',1,'fmt::v5::system_error']]], - ['error_5fhandler',['error_handler',['../structfmt_1_1v5_1_1internal_1_1error__handler.html',1,'fmt::v5::internal::error_handler'],['../structfmt_1_1v5_1_1internal_1_1error__handler.html#ab0b904ff6b411817d4db4d9bda9240e6',1,'fmt::v5::internal::error_handler::error_handler()'],['../structfmt_1_1v5_1_1internal_1_1error__handler.html#a6649671e792c4497c6264ee839d00b72',1,'fmt::v5::internal::error_handler::error_handler(const error_handler &)'],['../classfmt_1_1v5_1_1basic__parse__context.html#a393517a95a1aaf1b55ea787ecac5ea64',1,'fmt::v5::basic_parse_context::error_handler()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#a5ef3c3b62f0dab625c750986f348c8f8',1,'fmt::v5::internal::context_base::error_handler()'],['../classspdlog_1_1logger.html#ac6c864952112a3bbe4084884cc1d64a1',1,'spdlog::logger::error_handler()']]], - ['error_5funion',['error_union',['../struct_lidar_state_item.html#a080194488c4deceba37fef91c9124f16',1,'LidarStateItem::error_union()'],['../struct_heartbeat_response.html#a0fde073a495b78506b341d3e72e990ba',1,'HeartbeatResponse::error_union()']]], - ['errormessage',['ErrorMessage',['../struct_error_message.html',1,'']]], - ['errormessagecallback',['ErrorMessageCallback',['../livox__sdk_8h.html#a56e4e46cb5abee1fc822f518546a5c8c',1,'livox_sdk.h']]], - ['extrinsicparameterrequestitem',['ExtrinsicParameterRequestItem',['../struct_extrinsic_parameter_request_item.html',1,'']]], - ['extrinsicparameterresponseitem',['ExtrinsicParameterResponseItem',['../struct_extrinsic_parameter_response_item.html',1,'']]] + ['d_5fformatter',['D_formatter',['../classspdlog_1_1details_1_1_d__formatter.html',1,'spdlog::details::D_formatter'],['../classspdlog_1_1details_1_1d__formatter.html',1,'spdlog::details::d_formatter'],['../classspdlog_1_1details_1_1_d__formatter.html#a2df2757737cfb0580fcf50edd83efd02',1,'spdlog::details::D_formatter::D_formatter()'],['../classspdlog_1_1details_1_1d__formatter.html#aa5c9a67121b2ab9395b3bed60f5e56a8',1,'spdlog::details::d_formatter::d_formatter()']]], + ['daily_5ffile_5fsink',['daily_file_sink',['../classspdlog_1_1sinks_1_1daily__file__sink.html',1,'spdlog::sinks::daily_file_sink< Mutex, FileNameCalc >'],['../classspdlog_1_1sinks_1_1daily__file__sink.html#a442164b0813283bc631ad39708fb3669',1,'spdlog::sinks::daily_file_sink::daily_file_sink()']]], + ['daily_5ffile_5fsink_2eh',['daily_file_sink.h',['../daily__file__sink_8h.html',1,'']]], + ['daily_5ffile_5fsink_5fmt',['daily_file_sink_mt',['../namespacespdlog_1_1sinks.html#a61124c3792c83b90aad230770f627525',1,'spdlog::sinks']]], + ['daily_5ffile_5fsink_5fst',['daily_file_sink_st',['../namespacespdlog_1_1sinks.html#a1f1c8468d4251073ce96194a5db1fb9e',1,'spdlog::sinks']]], + ['daily_5ffilename_5fcalculator',['daily_filename_calculator',['../structspdlog_1_1sinks_1_1daily__filename__calculator.html',1,'spdlog::sinks']]], + ['daily_5flogger_5fmt',['daily_logger_mt',['../namespacespdlog.html#aeab720351e32788bc6cdf8ada42b0f1f',1,'spdlog']]], + ['daily_5flogger_5fst',['daily_logger_st',['../namespacespdlog.html#a887beb44c55ef32f4bc62fa16451c77e',1,'spdlog']]], + ['dark',['dark',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a3802a11d60d725bb27b3a6aaff62bfed',1,'spdlog::sinks::ansicolor_sink']]], + ['dark_5fblue',['dark_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a27e3a57f752eac25c69739545fccef73',1,'fmt::v5']]], + ['dark_5fcyan',['dark_cyan',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0abfa3108ee9c64dae693a704959e2c25e',1,'fmt::v5']]], + ['dark_5fgolden_5frod',['dark_golden_rod',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9047140da3bd5d20676eb94102443e5a',1,'fmt::v5']]], + ['dark_5fgray',['dark_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a49dba686026a18435dd23b5e83eb5cfd',1,'fmt::v5']]], + ['dark_5fgreen',['dark_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a609a1b0e5d49d6de91c649fa962e545d',1,'fmt::v5']]], + ['dark_5fkhaki',['dark_khaki',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae21cb3066a44318e0b096d0d9e010f09',1,'fmt::v5']]], + ['dark_5fmagenta',['dark_magenta',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aa1876a44fe9d3e277e5a90a14fd1d375',1,'fmt::v5']]], + ['dark_5folive_5fgreen',['dark_olive_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ab88072f7e28a64cfd1a36370be8450bb',1,'fmt::v5']]], + ['dark_5forange',['dark_orange',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aaac43a86b5d19ed2ff0aefa6b0758fe3',1,'fmt::v5']]], + ['dark_5forchid',['dark_orchid',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5afa2a600463278912509f72d9d18ba3',1,'fmt::v5']]], + ['dark_5fred',['dark_red',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9c2398f188d23be4d9676cadf1c2909f',1,'fmt::v5']]], + ['dark_5fsalmon',['dark_salmon',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a541cf8ef71e19f44c9fa646ad9196b3f',1,'fmt::v5']]], + ['dark_5fsea_5fgreen',['dark_sea_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5546cc776b6e0df7f4fe922f02cb6154',1,'fmt::v5']]], + ['dark_5fslate_5fblue',['dark_slate_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a486c9b835e518cd7b0c998ca7a37c893',1,'fmt::v5']]], + ['dark_5fslate_5fgray',['dark_slate_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae707e58e389e4f7cda44cd1254a6d1fc',1,'fmt::v5']]], + ['dark_5fturquoise',['dark_turquoise',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0af6b3c061d92535983e73d0e6c1b8338c',1,'fmt::v5']]], + ['dark_5fviolet',['dark_violet',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4b1668d660111fbf3b86b4238b285677',1,'fmt::v5']]], + ['data',['data',['../structlivox_1_1_comm_packet.html#a7ba25954258f461a079911c180da2669',1,'livox::CommPacket::data()'],['../struct_livox_eth_packet.html#a8a474f23d910eed792e7ad98914dfe7c',1,'LivoxEthPacket::data()'],['../structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a00b749531f5c3f26f7360080f900d5b2',1,'fmt::v5::internal::named_arg_base::data()'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a218e3b77fad28065c54461d33f82c8fb',1,'fmt::v5::internal::prettify_handler::data()'],['../structfmt_1_1v5_1_1internal_1_1dummy__int.html#a9bcdf394ef31a10161975dcdbed86c25',1,'fmt::v5::internal::dummy_int::data()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a384f1304da6ce18c4713368327354479',1,'fmt::v5::internal::basic_buffer::data()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a9ab5672bca28a46bb98f25d424e242cd',1,'fmt::v5::internal::basic_buffer::data() const'],['../classfmt_1_1v5_1_1basic__string__view.html#a517e9e8fc58c52c7816fa647d5e69f9f',1,'fmt::v5::basic_string_view::data()'],['../classfmt_1_1v5_1_1format__int.html#afde6e35fd703a48b346c0dd969bd6b1c',1,'fmt::v5::format_int::data()'],['../namespacefmt_1_1v5_1_1internal.html#ac62a332ee64650f2ebe0e8095fa8e7c0',1,'fmt::v5::internal::data()']]], + ['data_5flen',['data_len',['../structlivox_1_1_comm_packet.html#a9586bf3ae947c5809c25d40aa3091ef7',1,'livox::CommPacket']]], + ['data_5fport',['data_port',['../struct_device_info.html#aa3d0a3e3476880be7d9735fc91929024',1,'DeviceInfo::data_port()'],['../struct_handshake_request.html#a6e38ca96eeba69cdcc7a2544cbe347e1',1,'HandshakeRequest::data_port()']]], + ['data_5ftype',['data_type',['../struct_livox_eth_packet.html#abd6d282748a4cd8c11853afae5d456ae',1,'LivoxEthPacket']]], + ['datacallback',['DataCallback',['../livox__sdk_8h.html#a7b6ad0f6c2c1e198bb8df861368cf5e0',1,'livox_sdk.h']]], + ['days',['days',['../namespacespdlog_1_1details.html#a94e52301ec7a1a0be693a4a971af0525',1,'spdlog::details']]], + ['debug',['debug',['../classspdlog_1_1logger.html#a1f60afc8308e0127c2eab2619ae352d5',1,'spdlog::logger::debug(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#aca96637e71ab459738ccc7287be28c2e',1,'spdlog::logger::debug(const T &msg)'],['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8baea632f71a316dac4dbaf2d98534c7ca5',1,'spdlog::level::debug()'],['../namespacespdlog.html#a29e62b80052a1440e526853d4b2c3c5c',1,'spdlog::debug(const char *fmt, const Args &... args)'],['../namespacespdlog.html#a93c284cebdb3b3dab204f2a87344e4b5',1,'spdlog::debug(const T &msg)']]], + ['dec_5fwriter',['dec_writer',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html',1,'fmt::v5::basic_writer::int_writer']]], + ['decimal_5fformatter',['decimal_formatter',['../classfmt_1_1v5_1_1internal_1_1decimal__formatter.html',1,'fmt::v5::internal::decimal_formatter'],['../classfmt_1_1v5_1_1internal_1_1decimal__formatter.html#ae9628f9ead0c072984e75532438c0182',1,'fmt::v5::internal::decimal_formatter::decimal_formatter()']]], + ['decimal_5fformatter_5fnull',['decimal_formatter_null',['../classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html',1,'fmt::v5::internal::decimal_formatter_null'],['../classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html#ad0faad0e42c161621f7460207abe3498',1,'fmt::v5::internal::decimal_formatter_null::decimal_formatter_null()']]], + ['declval',['declval',['../namespacefmt_1_1v5_1_1internal.html#ae8ef7d855b651c42243a7c6b109cd94b',1,'fmt::v5::internal']]], + ['deep_5fpink',['deep_pink',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a350b14335681ec97282ca0452dd5e7dc',1,'fmt::v5']]], + ['deep_5fsky_5fblue',['deep_sky_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a384d3f701794afb076dd9e92980bdd91',1,'fmt::v5']]], + ['default_5fasync_5fq_5fsize',['default_async_q_size',['../namespacespdlog_1_1details.html#a050e412794a5af8916ef36e4ed100c25',1,'spdlog::details']]], + ['default_5feol',['default_eol',['../namespacespdlog_1_1details_1_1os.html#a1db4824c9cd5bc09a5f3dd7f248f1c51',1,'spdlog::details::os']]], + ['default_5ferr_5fhandler_5f',['default_err_handler_',['../classspdlog_1_1logger.html#a3432e21bdc19d74024b57cc3f26a8471',1,'spdlog::logger']]], + ['default_5ffactory',['default_factory',['../namespacespdlog.html#a349fb42bd8e759a32021b46fcdaca6c6',1,'spdlog']]], + ['default_5flevel',['default_level',['../classspdlog_1_1logger.html#a0d0307a6501a9f56689c386a006991fe',1,'spdlog::logger']]], + ['default_5flogger',['default_logger',['../classspdlog_1_1details_1_1registry.html#af6c1f16e0433b6400aef5219fa1b81ea',1,'spdlog::details::registry::default_logger()'],['../namespacespdlog.html#a9e6a16853c325306188a7f6f642eba94',1,'spdlog::default_logger()']]], + ['default_5flogger_5fraw',['default_logger_raw',['../namespacespdlog.html#a2c623c9fadba3efc09b48dac8a3990be',1,'spdlog']]], + ['delimiter',['delimiter',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#ae269e1463930629ea37d0d93d0d726c5',1,'fmt::formatter< spdlog::details::bytes_range< T > >::delimiter()'],['../structfmt_1_1v5_1_1formatting__range.html#a399497b7b12286bb0147f7d89699835a',1,'fmt::v5::formatting_range::delimiter()'],['../structfmt_1_1v5_1_1formatting__tuple.html#a233d1ca96854cb2b81bfc30ccca8e5d2',1,'fmt::v5::formatting_tuple::delimiter()']]], + ['dequeue_5ffor',['dequeue_for',['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#af4015ea1657b393755f34d76c97a28d1',1,'spdlog::details::mpmc_blocking_queue']]], + ['descriptor',['descriptor',['../classfmt_1_1v5_1_1file.html#a75a2feb65318ccbbb04e36fc1eecf74a',1,'fmt::v5::file']]], + ['deserialize',['deserialize',['../structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a9c38b418312ad17bcea0feafe39f22ce',1,'fmt::v5::internal::named_arg_base']]], + ['dev_5ftype',['dev_type',['../struct_broadcast_device_info.html#a4aa57f62efdd8c0c1ebbf45fb2e5d4f9',1,'BroadcastDeviceInfo::dev_type()'],['../struct_connected_lidar_info.html#a761199df36d30b25dbc40cf60f954601',1,'ConnectedLidarInfo::dev_type()']]], + ['device_5finfo_5flist',['device_info_list',['../struct_hub_query_lidar_information_response.html#a44e0516899b3d5ff069d6cadf5380761',1,'HubQueryLidarInformationResponse']]], + ['devicebroadcastcallback',['DeviceBroadcastCallback',['../livox__sdk_8h.html#a52822167d10dcc25a680a3883601d3c5',1,'livox_sdk.h']]], + ['devicebroadcastcode',['DeviceBroadcastCode',['../struct_device_broadcast_code.html',1,'']]], + ['deviceevent',['DeviceEvent',['../livox__def_8h.html#a52a002900b5c97625b3689e34474f1af',1,'livox_def.h']]], + ['deviceinfo',['DeviceInfo',['../struct_device_info.html',1,'']]], + ['deviceinformationcallback',['DeviceInformationCallback',['../livox__sdk_8h.html#a45ffd835efcfce16a23fc19488f0b433',1,'livox_sdk.h']]], + ['deviceinformationresponse',['DeviceInformationResponse',['../struct_device_information_response.html',1,'']]], + ['devicestateupdatecallback',['DeviceStateUpdateCallback',['../livox__sdk_8h.html#af20793bf9227b07f07c27e83c4fb5fb5',1,'livox_sdk.h']]], + ['devicetype',['DeviceType',['../livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9',1,'livox_def.h']]], + ['difference_5ftype',['difference_type',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#ae0812a3e1c2651b160e6a4a617fde5c3',1,'fmt::v5::internal::counting_iterator::difference_type()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a9b0fdd9f2efbd8d05a5184bf12b375fe',1,'fmt::v5::internal::truncating_iterator_base::difference_type()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#afd8140268676a9a3d036d0a7184739ea',1,'fmt::v5::internal::null_terminating_iterator::difference_type()']]], + ['digits',['DIGITS',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#ad815e597b46d92023beb025b464b4520',1,'fmt::v5::internal::basic_data']]], + ['dim_5fgray',['dim_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a75435e6bea50867263766b9e5f9bc08d',1,'fmt::v5']]], + ['dist_5fsink',['dist_sink',['../classspdlog_1_1sinks_1_1dist__sink.html',1,'spdlog::sinks::dist_sink< Mutex >'],['../classspdlog_1_1sinks_1_1dist__sink.html#ab5cfe7f044b6381435eac6dc273384e5',1,'spdlog::sinks::dist_sink::dist_sink()=default'],['../classspdlog_1_1sinks_1_1dist__sink.html#afadef20aeb435c8b62b2efa2f0906de5',1,'spdlog::sinks::dist_sink::dist_sink(const dist_sink &)=delete']]], + ['dist_5fsink_2eh',['dist_sink.h',['../dist__sink_8h.html',1,'']]], + ['dist_5fsink_5fmt',['dist_sink_mt',['../namespacespdlog_1_1sinks.html#a1ec468592fd56492075c61a4917acd12',1,'spdlog::sinks']]], + ['dist_5fsink_5fst',['dist_sink_st',['../namespacespdlog_1_1sinks.html#a08b36045f24c178daafc48778df0ce5a',1,'spdlog::sinks']]], + ['do_5fcheck_5fformat_5fstring',['do_check_format_string',['../namespacefmt_1_1v5_1_1internal.html#adbcd0335b87494a6785e0416aced9b09',1,'fmt::v5::internal']]], + ['do_5fget_5farg',['do_get_arg',['../classfmt_1_1v5_1_1internal_1_1context__base.html#abcc9c36e7effb35bcd76c698b478fbe6',1,'fmt::v5::internal::context_base']]], + ['dodger_5fblue',['dodger_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5c090aa7c47fc1b6a05035e07ec9fbb9',1,'fmt::v5']]], + ['double_5ftype',['double_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a9c4e587796c3f3ad1777bd960a717e39',1,'fmt::v5::internal']]], + ['double_5fvalue',['double_value',['../classfmt_1_1v5_1_1internal_1_1value.html#ae1b4342c0188c4f9a366e0223a4b0836',1,'fmt::v5::internal::value']]], + ['drop',['drop',['../classspdlog_1_1details_1_1registry.html#a21f513aa5a7da6a21fe35a5077b2db74',1,'spdlog::details::registry::drop()'],['../namespacespdlog.html#af2ec5792fb30798cf285da36cb5c9377',1,'spdlog::drop()']]], + ['drop_5fall',['drop_all',['../classspdlog_1_1details_1_1registry.html#a127ccc3786f6ddef57f16d354ba4db91',1,'spdlog::details::registry::drop_all()'],['../namespacespdlog.html#ab1211636fc47637f4dc5ee9a18aa1bce',1,'spdlog::drop_all()']]], + ['dummy_5fint',['dummy_int',['../structfmt_1_1v5_1_1internal_1_1dummy__int.html',1,'fmt::v5::internal']]], + ['dummy_5fstring_5fview',['dummy_string_view',['../structfmt_1_1v5_1_1internal_1_1dummy__string__view.html',1,'fmt::v5::internal']]], + ['dup',['dup',['../classfmt_1_1v5_1_1file.html#ab5d469c88f8a9e460ca0aaa9fa1d05f4',1,'fmt::v5::file']]], + ['dup2',['dup2',['../classfmt_1_1v5_1_1file.html#a9585f4793f5036e19dafabd782858f9d',1,'fmt::v5::file::dup2(int fd)'],['../classfmt_1_1v5_1_1file.html#a639739325a65165ec4fbb1a74b5f24df',1,'fmt::v5::file::dup2(int fd, error_code &ec)']]], + ['dynamic_5fformat_5fspecs',['dynamic_format_specs',['../structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html',1,'fmt::v5::internal']]], + ['dynamic_5fformat_5fspecs_3c_20char_5ftype_20_3e',['dynamic_format_specs< char_type >',['../structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html',1,'fmt::v5::internal']]], + ['dynamic_5fformatter',['dynamic_formatter',['../classfmt_1_1v5_1_1dynamic__formatter.html',1,'fmt::v5']]], + ['dynamic_5fspecs_5fhandler',['dynamic_specs_handler',['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html',1,'fmt::v5::internal::dynamic_specs_handler< ParseContext >'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#aeca213f76448b8e011beaa446d70203d',1,'fmt::v5::internal::dynamic_specs_handler::dynamic_specs_handler(dynamic_format_specs< char_type > &specs, ParseContext &ctx)'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a5c4733e658ce853293a499f06461f7c9',1,'fmt::v5::internal::dynamic_specs_handler::dynamic_specs_handler(const dynamic_specs_handler &other)']]], + ['thread_5fpool',['thread_pool',['../classspdlog_1_1async__logger.html#a67ce2a7de422d11203d66f1f6da4be03',1,'spdlog::async_logger']]] ]; diff --git a/docs/search/all_6.js b/docs/search/all_6.js index 0d615a3..5935351 100644 --- a/docs/search/all_6.js +++ b/docs/search/all_6.js @@ -1,184 +1,24 @@ var searchData= [ - ['f',['f',['../classfmt_1_1v5_1_1internal_1_1fp.html#ad52e794a6624dfc7d992bd2eea3ab23f',1,'fmt::v5::internal::fp']]], - ['f_5fformatter',['F_formatter',['../classspdlog_1_1details_1_1_f__formatter.html',1,'spdlog::details::F_formatter'],['../classspdlog_1_1details_1_1f__formatter.html',1,'spdlog::details::f_formatter'],['../classspdlog_1_1details_1_1f__formatter.html#a7e6998176a0bace8105a555ff56fce73',1,'spdlog::details::f_formatter::f_formatter()'],['../classspdlog_1_1details_1_1_f__formatter.html#a932cd91a68880bfedd402ebf934ccd77',1,'spdlog::details::F_formatter::F_formatter()']]], - ['fastcrc_2eh',['FastCRC.h',['../_fast_c_r_c_8h.html',1,'']]], - ['fastcrc16',['FastCRC16',['../class_fast_c_r_c16.html',1,'FastCRC16'],['../class_fast_c_r_c16.html#a5b5fba9414abaf0eadca4c268828884b',1,'FastCRC16::FastCRC16()']]], - ['fastcrc32',['FastCRC32',['../class_fast_c_r_c32.html',1,'FastCRC32'],['../class_fast_c_r_c32.html#ae139e3fbeeb7adec610d50d638607c7d',1,'FastCRC32::FastCRC32()']]], - ['fdopen',['fdopen',['../classfmt_1_1v5_1_1file.html#a931c02ed40bfffd9e0205b35f28fbbb8',1,'fmt::v5::file']]], - ['feature',['feature',['../struct_device_info.html#a1ddd6dc50ae7fe4230b3fa0e2644fb60',1,'DeviceInfo::feature()'],['../struct_rain_fog_suppress_request_item.html#aa8cf24d5a1d3a6067ce68887fdf0a6dd',1,'RainFogSuppressRequestItem::feature()'],['../struct_lidar_state_item.html#a9f20d10119d28df0163702b25513367b',1,'LidarStateItem::feature()'],['../struct_heartbeat_response.html#a4813706674e2312b2132151f7688ff22',1,'HeartbeatResponse::feature()']]], - ['fetchcachefreespace',['FetchCacheFreeSpace',['../classlivox_1_1_comm_port.html#abb44afd20231d53d38f477e4b5861711',1,'livox::CommPort']]], - ['fg',['fg',['../classfmt_1_1v5_1_1text__style.html#a1f53d64ef2910e2e461777bf78077c59',1,'fmt::v5::text_style::fg()'],['../namespacefmt_1_1v5.html#ab1446fdc80a1153bd985da7d83bd79c7',1,'fmt::v5::fg()']]], - ['file',['file',['../classfmt_1_1v5_1_1file.html',1,'fmt::v5::file'],['../classfmt_1_1v5_1_1buffered__file.html#a686a90482e62dd1618201a3c79f9aae6',1,'fmt::v5::buffered_file::file()'],['../classfmt_1_1v5_1_1file.html#a19a7f8f226393c0ccd49e2a9c9480e8e',1,'fmt::v5::file::file()'],['../classfmt_1_1v5_1_1file.html#af0e0090d1b35c42a52ed73086541660d',1,'fmt::v5::file::file(cstring_view path, int oflag)'],['../classfmt_1_1v5_1_1file.html#a7e1ec236bdb4eebe9c1dc948e811fbfd',1,'fmt::v5::file::file(file &&other)']]], - ['file_5fexists',['file_exists',['../classspdlog_1_1details_1_1file__helper.html#a8c5f69588e8a54f436c3565317c233bd',1,'spdlog::details::file_helper::file_exists()'],['../namespacespdlog_1_1details_1_1os.html#afd466bafef75b9792e0ca62e7fdd8dc1',1,'spdlog::details::os::file_exists()']]], - ['file_5fhelper',['file_helper',['../classspdlog_1_1details_1_1file__helper.html',1,'spdlog::details::file_helper'],['../classspdlog_1_1details_1_1file__helper.html#aa11a5129c9d7492638a68d849d66d47d',1,'spdlog::details::file_helper::file_helper()=default'],['../classspdlog_1_1details_1_1file__helper.html#ab68b7720555f7656a8f387f8e0dcb37d',1,'spdlog::details::file_helper::file_helper(const file_helper &)=delete']]], - ['file_5fhelper_2eh',['file_helper.h',['../file__helper_8h.html',1,'']]], - ['filename',['filename',['../structspdlog_1_1source__loc.html#af67920703a5ba0a5557eb86667e09c80',1,'spdlog::source_loc::filename()'],['../classspdlog_1_1details_1_1file__helper.html#a76610058a1769b25bd6ed52a1443b552',1,'spdlog::details::file_helper::filename()'],['../classspdlog_1_1sinks_1_1basic__file__sink.html#a5efef88cd9a88234e61a94ffd2f0312e',1,'spdlog::sinks::basic_file_sink::filename()'],['../classspdlog_1_1sinks_1_1daily__file__sink.html#a5563c23f71ed255510c79bafd5084339',1,'spdlog::sinks::daily_file_sink::filename()'],['../classspdlog_1_1sinks_1_1rotating__file__sink.html#a16489efcc8bd112bbc0151f54ba46f2e',1,'spdlog::sinks::rotating_file_sink::filename()']]], - ['filename_5ft',['filename_t',['../namespacespdlog.html#acf7ce125b3622e44f8f1702d699e0b06',1,'spdlog']]], - ['filename_5fto_5fstr',['filename_to_str',['../namespacespdlog_1_1details_1_1os.html#ac7c0d6af1f3f652f23e57f057217b9a7',1,'spdlog::details::os']]], - ['fileno',['fileno',['../classfmt_1_1v5_1_1buffered__file.html#a14ef73faa397ecb015418d1c3635e6f5',1,'fmt::v5::buffered_file']]], - ['filesize',['filesize',['../namespacespdlog_1_1details_1_1os.html#a6d2fb5a293e8515f651288992d5443cc',1,'spdlog::details::os']]], - ['fill',['fill',['../structfmt_1_1v5_1_1internal_1_1fill.html',1,'fmt::v5::internal::fill'],['../structfmt_1_1v5_1_1align__spec.html#a0ead63b1fb62d8c631d5df7ca495b725',1,'fmt::v5::align_spec::fill()']]], - ['fill_5f',['fill_',['../structfmt_1_1v5_1_1align__spec.html#ac7badcecfcb9d58db73d06eee0888fbe',1,'fmt::v5::align_spec']]], - ['find',['find',['../classfmt_1_1v5_1_1internal_1_1arg__map.html#af6c96f7f7daeece4fa5fa43c373dc8c7',1,'fmt::v5::internal::arg_map::find()'],['../namespacefmt_1_1v5_1_1internal.html#aaa8ec781ec26a204da9f38e66a8ede8f',1,'fmt::v5::internal::find()']]], - ['find_3c_20false_2c_20char_20_3e',['find< false, char >',['../namespacefmt_1_1v5_1_1internal.html#a5b9fc2504a981744ae35cf292930b4a6',1,'fmt::v5::internal']]], - ['fire_5fbrick',['fire_brick',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a306cb0ed46dda6adb63820cb57960bb0',1,'fmt::v5']]], - ['firmware_5fversion',['firmware_version',['../struct_device_information_response.html#a3c12af3f01b1baac1888070a4d08cbff',1,'DeviceInformationResponse']]], - ['fits_5fin_5fint',['fits_in_int',['../structfmt_1_1v5_1_1internal_1_1int__checker.html#adc6b04d8bcc090c05a01e25080f920a5',1,'fmt::v5::internal::int_checker::fits_in_int(T value)'],['../structfmt_1_1v5_1_1internal_1_1int__checker.html#a3e21f15ef6ad577314d04a9822485b76',1,'fmt::v5::internal::int_checker::fits_in_int(bool)'],['../structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html#ab06277d4ea35fde2ad8a12db818dfc89',1,'fmt::v5::internal::int_checker< true >::fits_in_int(T value)'],['../structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html#a3260e491c4aafcf66b231bb65393a2ec',1,'fmt::v5::internal::int_checker< true >::fits_in_int(int)']]], - ['fixed',['fixed',['../structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#a46a9d3e58fa1f2918ee6285933762786',1,'fmt::v5::internal::gen_digits_params']]], - ['flag_5fformatter',['flag_formatter',['../classspdlog_1_1details_1_1flag__formatter.html',1,'spdlog::details::flag_formatter'],['../classspdlog_1_1details_1_1flag__formatter.html#a7f775ab8ad4027546c3490f2f299bf43',1,'spdlog::details::flag_formatter::flag_formatter(padding_info padinfo)'],['../classspdlog_1_1details_1_1flag__formatter.html#a19fcada419b07c4c0db0080b0fbf8b46',1,'spdlog::details::flag_formatter::flag_formatter()=default']]], - ['flags',['flags',['../structfmt_1_1v5_1_1core__format__specs.html#a08766778b893b5a8057b9580db36da9c',1,'fmt::v5::core_format_specs']]], - ['float_5fspec_5fhandler',['float_spec_handler',['../structfmt_1_1v5_1_1float__spec__handler.html',1,'fmt::v5::float_spec_handler'],['../structfmt_1_1v5_1_1float__spec__handler.html#a6cb6583cc6285ffa6fc492ff0862d4e3',1,'fmt::v5::float_spec_handler::float_spec_handler()']]], - ['float_5ftype_5fchecker',['float_type_checker',['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html',1,'fmt::v5::internal::float_type_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#ab4f77925d9c95b66e8b0ad5bdba8855b',1,'fmt::v5::internal::float_type_checker::float_type_checker()']]], - ['floral_5fwhite',['floral_white',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a996483b6f227bb90a1a066a4d1d6ce10',1,'fmt::v5']]], - ['flush',['flush',['../classspdlog_1_1details_1_1file__helper.html#a1a75f29ec0c13d9fbc269bcd8378b18b',1,'spdlog::details::file_helper::flush()'],['../classspdlog_1_1logger.html#a861bb4d4e65de07966148822075bee86',1,'spdlog::logger::flush()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a3c0587e868d2a42f96b878c6031333a0',1,'spdlog::sinks::ansicolor_sink::flush()'],['../classspdlog_1_1sinks_1_1base__sink.html#a2de93f1edc37e891555685ed4e520343',1,'spdlog::sinks::base_sink::flush()'],['../classspdlog_1_1sinks_1_1sink.html#a8a0674ae3bca8f1617aef820e23a2ccd',1,'spdlog::sinks::sink::flush()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#af3a13cc82215681bdd7ca5e33a7c28b5',1,'spdlog::sinks::stdout_sink::flush()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a3746a35fc36218e76dc3080e52fe6233',1,'spdlog::sinks::wincolor_sink::flush()'],['../namespacespdlog_1_1details.html#a22274995cf879a5d0a08d1f7513ee4fba86f354b8575a1a736775ae003fa344e5',1,'spdlog::details::flush()']]], - ['flush_5f',['flush_',['../classspdlog_1_1async__logger.html#ae7eeca32af4d650bc1e2dd06122d0224',1,'spdlog::async_logger::flush_()'],['../classspdlog_1_1logger.html#a98981b19089a6000fdfa8765af52ef0e',1,'spdlog::logger::flush_()'],['../classspdlog_1_1sinks_1_1android__sink.html#ac71785899fb01c7b0328b66b3727e2c3',1,'spdlog::sinks::android_sink::flush_()'],['../classspdlog_1_1sinks_1_1base__sink.html#a5ac2b237c60f68a18122a1ca09b812b4',1,'spdlog::sinks::base_sink::flush_()'],['../classspdlog_1_1sinks_1_1basic__file__sink.html#a689a12d9459d081edff7f8c7d3af227c',1,'spdlog::sinks::basic_file_sink::flush_()'],['../classspdlog_1_1sinks_1_1daily__file__sink.html#a37199f25868ac70b91e4f126bcc4b3f8',1,'spdlog::sinks::daily_file_sink::flush_()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a790a80f63276473cedbce99047adcab0',1,'spdlog::sinks::dist_sink::flush_()'],['../classspdlog_1_1sinks_1_1null__sink.html#a074c0d22167808789440953111a97926',1,'spdlog::sinks::null_sink::flush_()'],['../classspdlog_1_1sinks_1_1ostream__sink.html#a96458aa6b79019744ef4cb61979c39e0',1,'spdlog::sinks::ostream_sink::flush_()'],['../classspdlog_1_1sinks_1_1rotating__file__sink.html#ae93e4792b76f73bb0be8e50b5c5e889b',1,'spdlog::sinks::rotating_file_sink::flush_()'],['../classspdlog_1_1sinks_1_1syslog__sink.html#a6afb5ba7ef5e5f2950e624ec650fb562',1,'spdlog::sinks::syslog_sink::flush_()']]], - ['flush_5fall',['flush_all',['../classspdlog_1_1details_1_1registry.html#a3abe5826eebb056d51dd0dd75beed42d',1,'spdlog::details::registry']]], - ['flush_5fevery',['flush_every',['../classspdlog_1_1details_1_1registry.html#a78eb75a31640c0bb204d7f2123ba825c',1,'spdlog::details::registry::flush_every()'],['../namespacespdlog.html#a70d5763d644df282a67999baf4680dde',1,'spdlog::flush_every()']]], - ['flush_5flevel',['flush_level',['../classspdlog_1_1logger.html#a1b9b7304f017163d181692e41101b648',1,'spdlog::logger']]], - ['flush_5flevel_5f',['flush_level_',['../classspdlog_1_1logger.html#a69f7cbb7e1b2d5204a409906a62c1e94',1,'spdlog::logger']]], - ['flush_5fon',['flush_on',['../classspdlog_1_1details_1_1registry.html#a34841160632afca0f2063f1d55629d73',1,'spdlog::details::registry::flush_on()'],['../classspdlog_1_1logger.html#a47c021d339c1f246758e1a87a41668e3',1,'spdlog::logger::flush_on()'],['../namespacespdlog.html#afac55b239302064cba773add59b635d1',1,'spdlog::flush_on()']]], - ['fmt',['fmt',['../namespacefmt.html',1,'']]], - ['fmt_2eh',['fmt.h',['../fmt_8h.html',1,'']]], - ['fmt_5falways_5finline',['FMT_ALWAYS_INLINE',['../format_8h.html#a701339e31b08c541a11ed944cc20b856',1,'format.h']]], - ['fmt_5fapi',['FMT_API',['../core_8h.html#a9a4960b70582ed2620911a0b75dce0b5',1,'core.h']]], - ['fmt_5fassert',['FMT_ASSERT',['../core_8h.html#a03e7ee720f43adc7d83c652a6a5dd5f8',1,'core.h']]], - ['fmt_5fbegin_5fnamespace',['FMT_BEGIN_NAMESPACE',['../core_8h.html#a887c191adf8cfaf06ed40b5c4d487343',1,'core.h']]], - ['fmt_5fcatch',['FMT_CATCH',['../format-inl_8h.html#ab8efe0100a6d7cc74729f5bf7537799c',1,'format-inl.h']]], - ['fmt_5fchar',['FMT_CHAR',['../core_8h.html#a30260f394fa5dca5ec3c6db9a0acb02e',1,'core.h']]], - ['fmt_5fclang_5fversion',['FMT_CLANG_VERSION',['../format_8h.html#a058e2c3eea88d232a1056a0bc6487e37',1,'format.h']]], - ['fmt_5fconstexpr',['FMT_CONSTEXPR',['../core_8h.html#a69201cb276383873487bf68b4ef8b4cd',1,'core.h']]], - ['fmt_5fconstexpr11',['FMT_CONSTEXPR11',['../core_8h.html#a056f29fbe3ea234ac0cc417fb866a189',1,'core.h']]], - ['fmt_5fconstexpr_5fdecl',['FMT_CONSTEXPR_DECL',['../core_8h.html#af4388801466a5994a363d6005616371a',1,'core.h']]], - ['fmt_5fcuda_5fversion',['FMT_CUDA_VERSION',['../format_8h.html#af87bd0133efd40a100a5d27980c75f99',1,'format.h']]], - ['fmt_5fdetected_5fnoexcept',['FMT_DETECTED_NOEXCEPT',['../core_8h.html#a809ce36bdf78b55c536fbca340bfec9c',1,'core.h']]], - ['fmt_5fenable_5fif_5ft',['FMT_ENABLE_IF_T',['../core_8h.html#a515a4ead7f137e2c96a61e2aa87ae862',1,'core.h']]], - ['fmt_5fend_5fnamespace',['FMT_END_NAMESPACE',['../core_8h.html#ae0d2fbdf031547a949fc7e1c0b3c97f1',1,'core.h']]], - ['fmt_5fexceptions',['FMT_EXCEPTIONS',['../core_8h.html#a5d3b416a99857b69e3b7de8e88c71ff3',1,'core.h']]], - ['fmt_5fexplicit',['FMT_EXPLICIT',['../core_8h.html#ac5e450936052d8a4292d6e609e73e2bd',1,'core.h']]], - ['fmt_5ffallthrough',['FMT_FALLTHROUGH',['../format-inl_8h.html#a35d4bc2bf717ac7731de7713c54175bb',1,'format-inl.h']]], - ['fmt_5ffunc',['FMT_FUNC',['../format_8h.html#a02c8898388e0ae59aab58be14fcd4e05',1,'format.h']]], - ['fmt_5fgcc_5fversion',['FMT_GCC_VERSION',['../core_8h.html#a4f5db4f97e31a127b1236d1ff412bb0c',1,'core.h']]], - ['fmt_5fhas_5fbuiltin',['FMT_HAS_BUILTIN',['../format_8h.html#a160d3314a3cdbd49e187b75d6ce2a652',1,'format.h']]], - ['fmt_5fhas_5fcpp_5fattribute',['FMT_HAS_CPP_ATTRIBUTE',['../core_8h.html#a55d7b78b0300ddda018f77208e80f3e9',1,'core.h']]], - ['fmt_5fhas_5fcxx11_5fnoexcept',['FMT_HAS_CXX11_NOEXCEPT',['../core_8h.html#a8e7a33185c7fc32dd026773a8ece00b8',1,'core.h']]], - ['fmt_5fhas_5ffeature',['FMT_HAS_FEATURE',['../core_8h.html#a749169f277bb21ccf12b1c665e68e88a',1,'core.h']]], - ['fmt_5fhas_5fgxx_5fcxx11',['FMT_HAS_GXX_CXX11',['../core_8h.html#a1e3ffe834c427bc295b6880efcd17976',1,'core.h']]], - ['fmt_5fhas_5finclude',['FMT_HAS_INCLUDE',['../core_8h.html#afa144e698f8df527d6e51688eb9abbd1',1,'core.h']]], - ['fmt_5fheader_5fonly',['FMT_HEADER_ONLY',['../fmt_8h.html#a27b3249db8d77bd236109bda307bc263',1,'FMT_HEADER_ONLY(): fmt.h'],['../ostr_8h.html#a27b3249db8d77bd236109bda307bc263',1,'FMT_HEADER_ONLY(): ostr.h']]], - ['fmt_5fhelper_2eh',['fmt_helper.h',['../fmt__helper_8h.html',1,'']]], - ['fmt_5ficc_5fversion',['FMT_ICC_VERSION',['../format_8h.html#a061a90c1c2008acd7b0161cde41c1a11',1,'format.h']]], - ['fmt_5finline_5fnamespace',['FMT_INLINE_NAMESPACE',['../core_8h.html#a750d1276ba35fb73b8f2998389a5f8c6',1,'core.h']]], - ['fmt_5fmake_5fvalue',['FMT_MAKE_VALUE',['../core_8h.html#a0af13074db7b689a71bd9ae94f8745a1',1,'core.h']]], - ['fmt_5fmake_5fvalue_5fsame',['FMT_MAKE_VALUE_SAME',['../core_8h.html#ad0cd7007be07fae4a096c1a646c50c30',1,'core.h']]], - ['fmt_5fmsc_5fver',['FMT_MSC_VER',['../core_8h.html#a363cb0623e6975ff2b357a52a03e4728',1,'core.h']]], - ['fmt_5fnoexcept',['FMT_NOEXCEPT',['../core_8h.html#aef128913e8400683b1cbd1a3a2e11df3',1,'core.h']]], - ['fmt_5fnomacro',['FMT_NOMACRO',['../time_8h.html#a0c2d874e178da493766bca4f1b898780',1,'time.h']]], - ['fmt_5fnull',['FMT_NULL',['../core_8h.html#af7f827e50dd7667484c279ac1d38f30b',1,'core.h']]], - ['fmt_5foverride',['FMT_OVERRIDE',['../core_8h.html#a023c6c178e254d81d578b90921804b1c',1,'core.h']]], - ['fmt_5fposix',['FMT_POSIX',['../posix_8h.html#a6fa0773ef89920062fe6ab8b6e3cf337',1,'posix.h']]], - ['fmt_5fposix_5fcall',['FMT_POSIX_CALL',['../posix_8h.html#aa693a9f0c55e9b081f1ea5bf04968dd7',1,'posix.h']]], - ['fmt_5fpowers_5fof_5f10',['FMT_POWERS_OF_10',['../format-inl_8h.html#aeff75c93a29bc942ca36b31a4b634fe9',1,'format-inl.h']]], - ['fmt_5frange_5foutput_5flength_5flimit',['FMT_RANGE_OUTPUT_LENGTH_LIMIT',['../ranges_8h.html#ad1c3ab4ad2c95d3f313323dbef5585df',1,'ranges.h']]], - ['fmt_5fretry',['FMT_RETRY',['../posix_8h.html#a9d6790ac79298b8abd2472500422e138',1,'posix.h']]], - ['fmt_5fretry_5fval',['FMT_RETRY_VAL',['../posix_8h.html#a54f7e73fc1fc6ded8358c6339b51bde7',1,'posix.h']]], - ['fmt_5fsecure_5fscl',['FMT_SECURE_SCL',['../format_8h.html#a47258eefd01b3b6278d8057e5c89616a',1,'format.h']]], - ['fmt_5fsnprintf',['FMT_SNPRINTF',['../format-inl_8h.html#a9a9bb3caa94066b3adc175bb24cb1783',1,'format-inl.h']]], - ['fmt_5fstring',['FMT_STRING',['../format_8h.html#a09119ad072f708d17b88704fa898aff0',1,'format.h']]], - ['fmt_5fswprintf',['FMT_SWPRINTF',['../format-inl_8h.html#a7b59f9b149f610d3edd05ed99536253c',1,'format-inl.h']]], - ['fmt_5fsystem',['FMT_SYSTEM',['../posix_8h.html#acca658935a0993e7cf549b4a5be255a3',1,'posix.h']]], - ['fmt_5fthrow',['FMT_THROW',['../format_8h.html#ad9e2ed6d3b432a04c9622c34a2495304',1,'format.h']]], - ['fmt_5ftry',['FMT_TRY',['../format-inl_8h.html#a4aa79926398ee27fe7d6db8b0dd54edf',1,'format-inl.h']]], - ['fmt_5fudl_5ftemplate',['FMT_UDL_TEMPLATE',['../format_8h.html#abc818826093af36c21cd5f464462ed35',1,'format.h']]], - ['fmt_5fuse_5falias_5ftemplates',['FMT_USE_ALIAS_TEMPLATES',['../core_8h.html#a7cc44a51931bcec486a5eaa08598082b',1,'core.h']]], - ['fmt_5fuse_5fconstexpr',['FMT_USE_CONSTEXPR',['../core_8h.html#a739a7ff96b6dfd65a4de8fe003f5b233',1,'core.h']]], - ['fmt_5fuse_5fconstexpr11',['FMT_USE_CONSTEXPR11',['../core_8h.html#a33c15cec4035f1a3dc6fe5d4ae05c746',1,'core.h']]], - ['fmt_5fuse_5fexplicit',['FMT_USE_EXPLICIT',['../core_8h.html#a25c22ca313078429a88938f673059ae8',1,'core.h']]], - ['fmt_5fuse_5fextern_5ftemplates',['FMT_USE_EXTERN_TEMPLATES',['../format_8h.html#a3ae8cc1f3fba8eb2083d6a34aa73b5e1',1,'format.h']]], - ['fmt_5fuse_5fgrisu',['FMT_USE_GRISU',['../format_8h.html#a25c2cdf9765d15576333ed86298422c5',1,'format.h']]], - ['fmt_5fuse_5fnoexcept',['FMT_USE_NOEXCEPT',['../core_8h.html#a65490b89e8bd22fd0b8ae4491643d60c',1,'core.h']]], - ['fmt_5fuse_5fnullptr',['FMT_USE_NULLPTR',['../core_8h.html#a0b05bc8192a59d32f57c7644ef0d610b',1,'core.h']]], - ['fmt_5fuse_5ftrailing_5freturn',['FMT_USE_TRAILING_RETURN',['../format_8h.html#a8fac45c66b31da44ca3fc83ed6f7e4ab',1,'format.h']]], - ['fmt_5fuse_5fuser_5fdefined_5fliterals',['FMT_USE_USER_DEFINED_LITERALS',['../format_8h.html#a7c29e7b4a54045f13bd664979804998d',1,'format.h']]], - ['fmt_5fuse_5fwindows_5fh',['FMT_USE_WINDOWS_H',['../format_8h.html#a66278651d81592645cef28ca33a6ab92',1,'FMT_USE_WINDOWS_H(): format.h'],['../fmt_8h.html#a66278651d81592645cef28ca33a6ab92',1,'FMT_USE_WINDOWS_H(): fmt.h']]], - ['fmt_5fversion',['FMT_VERSION',['../core_8h.html#a1a322107307b020b6eac933958da94f6',1,'core.h']]], - ['folder_5fsep',['folder_sep',['../namespacespdlog_1_1details_1_1os.html#afd9823831f24054f4fd6d734b90b7bc4',1,'spdlog::details::os']]], - ['fopen_5fs',['fopen_s',['../namespacespdlog_1_1details_1_1os.html#af2d11a0b892e2f0cb3c6beba4c659a47',1,'spdlog::details::os']]], - ['for_5feach',['for_each',['../namespacefmt_1_1v5_1_1internal.html#a6b8696284389831febcd4667332cdbc9',1,'fmt::v5::internal::for_each(index_sequence< Is... >, Tuple &&tup, F &&f)'],['../namespacefmt_1_1v5_1_1internal.html#ac2b8685e665715026bb15b952f62dfb2',1,'fmt::v5::internal::for_each(Tuple &&tup, F &&f)']]], - ['force_5fflush_5f',['force_flush_',['../classspdlog_1_1sinks_1_1ostream__sink.html#a5778019dfdf7dc09ea798c490810eaed',1,'spdlog::sinks::ostream_sink']]], - ['foreground_5fcolor',['FOREGROUND_COLOR',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#ad9d536a7e57a5e2dd100c1cbbb4f1100',1,'fmt::v5::internal::basic_data']]], - ['forest_5fgreen',['forest_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a95084a1747e0d0fbdd9cf4de527e93a6',1,'fmt::v5']]], - ['format',['format',['../structfmt_1_1v5_1_1internal_1_1custom__value.html#ac45d1a6dc108a21b27aea69d628f315c',1,'fmt::v5::internal::custom_value::format()'],['../classspdlog_1_1details_1_1flag__formatter.html#a33fb3e42a4c8200cceb833d92b53fb67',1,'spdlog::details::flag_formatter::format()'],['../classspdlog_1_1details_1_1name__formatter.html#ac7e2adb4e29b3fbf06ef3c0e236d64de',1,'spdlog::details::name_formatter::format()'],['../classspdlog_1_1details_1_1level__formatter.html#a36967967164ade9221ad216e0b617749',1,'spdlog::details::level_formatter::format()'],['../classspdlog_1_1details_1_1short__level__formatter.html#acf241e8ab58e6142e02a9c493034f81d',1,'spdlog::details::short_level_formatter::format()'],['../classspdlog_1_1details_1_1a__formatter.html#a0dbb4322f91afd22b82fc0c0b20a35db',1,'spdlog::details::a_formatter::format()'],['../classspdlog_1_1details_1_1_a__formatter.html#a4df40ed70fbad25284e8479aefa680bb',1,'spdlog::details::A_formatter::format()'],['../classspdlog_1_1details_1_1b__formatter.html#a3943edd9e27eb217e4871abf06b91df5',1,'spdlog::details::b_formatter::format()'],['../classspdlog_1_1details_1_1_b__formatter.html#a5f17328272b26d5d107e59bad150fac8',1,'spdlog::details::B_formatter::format()'],['../classspdlog_1_1details_1_1c__formatter.html#a1b09d9e9e1d84b29fc2fb8d37fa07d57',1,'spdlog::details::c_formatter::format()'],['../classspdlog_1_1details_1_1_c__formatter.html#a241d6298edc054937cf40c0d7ed90ae2',1,'spdlog::details::C_formatter::format()'],['../classspdlog_1_1details_1_1_d__formatter.html#a065cf427de180dfee0b6abb642a78cb0',1,'spdlog::details::D_formatter::format()'],['../classspdlog_1_1details_1_1_y__formatter.html#a0a05d2970b7558f0e24336fdc05e504a',1,'spdlog::details::Y_formatter::format()'],['../classspdlog_1_1details_1_1m__formatter.html#a507ce5bc00de736d28d93e5d7307589b',1,'spdlog::details::m_formatter::format()'],['../classspdlog_1_1details_1_1d__formatter.html#ad1c7decfd7bfa7ecd6fd105e2d74bed4',1,'spdlog::details::d_formatter::format()'],['../classspdlog_1_1details_1_1_h__formatter.html#a46e166ed26e90bfe5bbc6b5f83040bef',1,'spdlog::details::H_formatter::format()'],['../classspdlog_1_1details_1_1_i__formatter.html#ab9d6511acc53b2296ecce30f715779c7',1,'spdlog::details::I_formatter::format()'],['../classspdlog_1_1details_1_1_m__formatter.html#ab6c0f013ea2c54cceb4561033d59ca0c',1,'spdlog::details::M_formatter::format()'],['../classspdlog_1_1details_1_1_s__formatter.html#aec1945b20074132e9ebe7d94357081fa',1,'spdlog::details::S_formatter::format()'],['../classspdlog_1_1details_1_1e__formatter.html#a931a5482cce50c580dd4e570fd27e976',1,'spdlog::details::e_formatter::format()'],['../classspdlog_1_1details_1_1f__formatter.html#ab3af92f69f6a1b4a70189f4e2a7ccbba',1,'spdlog::details::f_formatter::format()'],['../classspdlog_1_1details_1_1_f__formatter.html#a1ff6475bf808c73612748c55fe3883c2',1,'spdlog::details::F_formatter::format()'],['../classspdlog_1_1details_1_1_e__formatter.html#a133d1ba939b743041a036eb16c2c524a',1,'spdlog::details::E_formatter::format()'],['../classspdlog_1_1details_1_1p__formatter.html#a18faf31df030e289f7166eaa7e6f1af1',1,'spdlog::details::p_formatter::format()'],['../classspdlog_1_1details_1_1r__formatter.html#a5d4a5d4f5f1285c4a4af104a775e9859',1,'spdlog::details::r_formatter::format()'],['../classspdlog_1_1details_1_1_r__formatter.html#a1fe66a7fbf57ef47faa59e82132e9051',1,'spdlog::details::R_formatter::format()'],['../classspdlog_1_1details_1_1_t__formatter.html#a338d37f02f3a9a4376acc3d4b655eda3',1,'spdlog::details::T_formatter::format()'],['../classspdlog_1_1details_1_1z__formatter.html#ada7a5e9a3c30039cbfb684b7743b8945',1,'spdlog::details::z_formatter::format()'],['../classspdlog_1_1details_1_1t__formatter.html#a58cd7de54067c8f05815a94edaf43e17',1,'spdlog::details::t_formatter::format()'],['../classspdlog_1_1details_1_1pid__formatter.html#abe690b2f66b9046e40931bae634779d5',1,'spdlog::details::pid_formatter::format()'],['../classspdlog_1_1details_1_1i__formatter.html#aacaecd1c3fd6827287055d2f607f10ed',1,'spdlog::details::i_formatter::format()'],['../classspdlog_1_1details_1_1v__formatter.html#af794a57051f743266fdb6ccf7fd6c61f',1,'spdlog::details::v_formatter::format()'],['../classspdlog_1_1details_1_1ch__formatter.html#a11cf092c89041ff6186efb4324227cdb',1,'spdlog::details::ch_formatter::format()'],['../classspdlog_1_1details_1_1aggregate__formatter.html#a19bcf6f721f9a3b2758a59293305987d',1,'spdlog::details::aggregate_formatter::format()'],['../classspdlog_1_1details_1_1color__start__formatter.html#af91a839656b9128edbc7f0d6ea297d3f',1,'spdlog::details::color_start_formatter::format()'],['../classspdlog_1_1details_1_1color__stop__formatter.html#ac59e274cc3d37db75f0e7ea3dc484209',1,'spdlog::details::color_stop_formatter::format()'],['../classspdlog_1_1details_1_1source__location__formatter.html#af0d34490d35c582fdb1553a27f03e147',1,'spdlog::details::source_location_formatter::format()'],['../classspdlog_1_1details_1_1source__filename__formatter.html#a9a2e549eda5c8044c76281be33b04b38',1,'spdlog::details::source_filename_formatter::format()'],['../classspdlog_1_1details_1_1source__linenum__formatter.html#ac165ced330bd04ea5485e182b9d913a2',1,'spdlog::details::source_linenum_formatter::format()'],['../classspdlog_1_1details_1_1source__funcname__formatter.html#a7628b8914c638affa0bf0fc9de62f0e4',1,'spdlog::details::source_funcname_formatter::format()'],['../classspdlog_1_1details_1_1full__formatter.html#a11da1d2ec8378841d228df071915da35',1,'spdlog::details::full_formatter::format()'],['../classspdlog_1_1pattern__formatter.html#ae43e84d7421ee7810b22ce1dc817ca3f',1,'spdlog::pattern_formatter::format()'],['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a23665231993cdeb323a86ecb9a7a63a1',1,'fmt::formatter< spdlog::details::bytes_range< T > >::format()'],['../structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#ad995b1efdc0fef2ec8a4206c18f0e56f',1,'fmt::v5::formatter< std::chrono::duration< Rep, Period >, Char >::format()'],['../structfmt_1_1v5_1_1formatter.html#aeff27467b5654e9343ceb4cbdeb234c3',1,'fmt::v5::formatter::format()'],['../classfmt_1_1v5_1_1basic__format__arg_1_1handle.html#ae4ed580bdb5b645e912e7f74a44e7043',1,'fmt::v5::basic_format_arg::handle::format()'],['../structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html#a0decc0ceee49ae7780113a741baf8742',1,'fmt::v5::formatter< T, Char, typename std::enable_if< internal::format_type< typename buffer_context< Char >::type, T >::value >::type >::format()'],['../classfmt_1_1v5_1_1dynamic__formatter.html#a67cf8828c8811150790a11eb04e138e4',1,'fmt::v5::dynamic_formatter::format()'],['../structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html#a4c578e1058ef3524652ae2d6f86cbbfa',1,'fmt::v5::formatter< arg_join< It, Char >, Char >::format()'],['../structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html#a3038ada3d70528a9d5e3b6968f9cb079',1,'fmt::v5::formatter< T, Char, typename std::enable_if< internal::is_streamable< T, Char >::value &&!internal::format_type< typename buffer_context< Char >::type, T >::value >::type >::format()'],['../structfmt_1_1v5_1_1printf__formatter.html#afbaf6d392ab5b9df30e317eadda1b82b',1,'fmt::v5::printf_formatter::format()'],['../classfmt_1_1v5_1_1basic__printf__context.html#af8fabb5ddc209d15e78ee3136b443f85',1,'fmt::v5::basic_printf_context::format()'],['../structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#a4a94d41481e57f5ebf8e873c6909654d',1,'fmt::v5::formatter< TupleT, Char, typename std::enable_if< fmt::is_tuple_like< TupleT >::value >::type >::format()'],['../structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#af4b0d3f2b38c14b1d0cf4779e63af7cb',1,'fmt::v5::formatter< RangeT, Char, typename std::enable_if< fmt::is_range< RangeT >::value >::type >::format()'],['../structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#a697c862f40a101129022409a60c612a1',1,'fmt::v5::formatter< std::tm, Char >::format()'],['../classspdlog_1_1formatter.html#ad50e2b119d08fad952b0f885455b3bee',1,'spdlog::formatter::format()'],['../namespacefmt_1_1v5.html#a8accad256e8cb70d1398a568742a60f0',1,'fmt::v5::format(const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a105edfebadbb4e2e472d2b334e1134a2',1,'fmt::v5::format(const std::locale &loc, const S &format_str, const Args &... args)']]], - ['format_2dinl_2eh',['format-inl.h',['../format-inl_8h.html',1,'']]], - ['format_2eh',['format.h',['../format_8h.html',1,'']]], - ['format_5farg',['format_arg',['../classfmt_1_1v5_1_1internal_1_1context__base.html#a1ba52d0ae32b2feda32d3ca7169a9af5',1,'fmt::v5::internal::context_base::format_arg()'],['../classfmt_1_1v5_1_1basic__format__args.html#ae274e33ad24c361c93315f801d336b73',1,'fmt::v5::basic_format_args::format_arg()']]], - ['format_5farg_5fstore',['format_arg_store',['../classfmt_1_1v5_1_1format__arg__store.html',1,'fmt::v5::format_arg_store< Context, Args >'],['../classfmt_1_1v5_1_1format__arg__store.html#a714a5df2ffda09f2133e4a0ca2b2f267',1,'fmt::v5::format_arg_store::format_arg_store()']]], - ['format_5farg_5fstore_3c_20buffer_5fcontext_3c_20char_5ft_3c_20s_20_3e_3a_3atype_20_3e_3a_3atype_2c_20args_2e_2e_2e_20_3e',['format_arg_store< buffer_context< char_t< S >::type >::type, Args... >',['../classfmt_1_1v5_1_1format__arg__store.html',1,'fmt::v5']]], - ['format_5fargs',['format_args',['../structfmt_1_1v5_1_1format__args.html',1,'fmt::v5::format_args'],['../structfmt_1_1v5_1_1format__args.html#aa80cbbec78d4fe88a77d437d18ba4d18',1,'fmt::v5::format_args::format_args()']]], - ['format_5fargs_5ft',['format_args_t',['../structfmt_1_1v5_1_1format__args__t.html',1,'fmt::v5']]], - ['format_5fcontext',['format_context',['../namespacefmt_1_1v5.html#a31e1d7b172b530be8c4ab5d7bb7c921d',1,'fmt::v5']]], - ['format_5fcontext_5ft',['format_context_t',['../structfmt_1_1v5_1_1format__context__t.html',1,'fmt::v5']]], - ['format_5fcontext_5ft_3c_20fmt_3a_3ainternal_3a_3atruncating_5fiterator_3c_20outputit_20_3e_2c_20char_20_3e',['format_context_t< fmt::internal::truncating_iterator< OutputIt >, Char >',['../structfmt_1_1v5_1_1format__context__t.html',1,'fmt::v5']]], - ['format_5fdecimal',['format_decimal',['../namespacefmt_1_1v5_1_1internal.html#af72d17ab37b4a11119c73b71200a7669',1,'fmt::v5::internal::format_decimal(Char *buffer, UInt value, int num_digits, ThousandsSep thousands_sep)'],['../namespacefmt_1_1v5_1_1internal.html#adae39d916b44943f034ed1d8f832c7e1',1,'fmt::v5::internal::format_decimal(Iterator out, UInt value, int num_digits, ThousandsSep sep)'],['../namespacefmt_1_1v5_1_1internal.html#ad284b384d0648be5afed9658e6d17da0',1,'fmt::v5::internal::format_decimal(It out, UInt value, int num_digits)'],['../namespacefmt_1_1v5.html#aebdab4a99bb740c29b106ac79bf9f158',1,'fmt::v5::format_decimal()']]], - ['format_5ferror',['format_error',['../classfmt_1_1v5_1_1format__error.html',1,'fmt::v5::format_error'],['../classfmt_1_1v5_1_1format__error.html#acbee2a23971909898b5cf189d68c38de',1,'fmt::v5::format_error::format_error(const char *message)'],['../classfmt_1_1v5_1_1format__error.html#a70224f7e2be8328affe003bbd7224b70',1,'fmt::v5::format_error::format_error(const std::string &message)']]], - ['format_5ffloat',['format_float',['../structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html#a649e42c11daf3f13c8cba34bb20bb649',1,'fmt::v5::internal::char_traits< char >::format_float()'],['../structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html#addb0ff96690e7424d61c79b0ef47ffc4',1,'fmt::v5::internal::char_traits< wchar_t >::format_float()']]], - ['format_5fhandler',['format_handler',['../structfmt_1_1v5_1_1format__handler.html',1,'fmt::v5::format_handler< ArgFormatter, Char, Context >'],['../structfmt_1_1v5_1_1format__handler.html#af0a6c006dcf81a1e1b3db4ff9d400e6d',1,'fmt::v5::format_handler::format_handler()']]], - ['format_5fint',['format_int',['../classfmt_1_1v5_1_1format__int.html',1,'fmt::v5::format_int'],['../classfmt_1_1v5_1_1format__int.html#acd6e25e24489eab4c848ac23408bc688',1,'fmt::v5::format_int::format_int(int value)'],['../classfmt_1_1v5_1_1format__int.html#af1efdbc1bbd43e22cf9690e50c5e1a08',1,'fmt::v5::format_int::format_int(long value)'],['../classfmt_1_1v5_1_1format__int.html#a4c07c24b79fc7d8510b29598e7cc7c51',1,'fmt::v5::format_int::format_int(long long value)'],['../classfmt_1_1v5_1_1format__int.html#a8b3e12db766aecc5de0a75285bbb2311',1,'fmt::v5::format_int::format_int(unsigned value)'],['../classfmt_1_1v5_1_1format__int.html#a818044e240e597e65a6c33cb547e4397',1,'fmt::v5::format_int::format_int(unsigned long value)'],['../classfmt_1_1v5_1_1format__int.html#aec2635e33daf103e747a4f86bc050485',1,'fmt::v5::format_int::format_int(unsigned long long value)']]], - ['format_5flocalized',['format_localized',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a1fc400d160bba953ff7412b6afce6ebc',1,'fmt::v5::internal::chrono_formatter']]], - ['format_5fparse_5fcontext',['format_parse_context',['../namespacefmt_1_1v5.html#a700149626e8a27dc80022c52e02fe484',1,'fmt::v5']]], - ['format_5fspecs',['format_specs',['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a96fbb5e2e9b9f98517f162b87b6bc738',1,'fmt::v5::internal::arg_formatter_base::format_specs()'],['../classfmt_1_1v5_1_1arg__formatter.html#aeda72496f8e7ff87432a167689a07b60',1,'fmt::v5::arg_formatter::format_specs()'],['../classfmt_1_1v5_1_1basic__writer.html#a3f7028a8ecb2404fe0ab2e53f1ac482b',1,'fmt::v5::basic_writer::format_specs()'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a74110f935913bf148cac1b9c982ee630',1,'fmt::v5::printf_arg_formatter::format_specs()'],['../namespacefmt_1_1v5.html#a853cf2a7d9e1efa6fc8a5622b62c1da9',1,'fmt::v5::format_specs()']]], - ['format_5fstr_5fquoted',['format_str_quoted',['../namespacefmt_1_1v5_1_1internal.html#a490f83b592317611d204d1398d7002c9',1,'fmt::v5::internal::format_str_quoted(bool add_space, const Arg &, typename std::enable_if< !is_like_std_string< typename std::decay< Arg >::type >::value >::type *=nullptr)'],['../namespacefmt_1_1v5_1_1internal.html#acc703652a20d8ae873e88a7cabbd9dcf',1,'fmt::v5::internal::format_str_quoted(bool add_space, const Arg &, typename std::enable_if< is_like_std_string< typename std::decay< Arg >::type >::value >::type *=nullptr)'],['../namespacefmt_1_1v5_1_1internal.html#ae25e92d1db2b218f1556165324873e8c',1,'fmt::v5::internal::format_str_quoted(bool add_space, const char *)'],['../namespacefmt_1_1v5_1_1internal.html#addf63628e6f583b0a015659ddd2b832f',1,'fmt::v5::internal::format_str_quoted(bool add_space, const wchar_t *)'],['../namespacefmt_1_1v5_1_1internal.html#aefa5e738c3b77c879c57b3c50a156804',1,'fmt::v5::internal::format_str_quoted(bool add_space, const char)'],['../namespacefmt_1_1v5_1_1internal.html#af0be81e2ed3a56a2f61a82c0e1fa951a',1,'fmt::v5::internal::format_str_quoted(bool add_space, const wchar_t)']]], - ['format_5fstring_5fchecker',['format_string_checker',['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html',1,'fmt::v5::internal::format_string_checker< Char, ErrorHandler, Args >'],['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#affdef5d73dd28bcbe91c68f617f7b419',1,'fmt::v5::internal::format_string_checker::format_string_checker()']]], - ['format_5fsystem_5ferror',['format_system_error',['../namespacefmt_1_1v5.html#a7f211f565c9879fafad806b788dde60d',1,'fmt::v5']]], - ['format_5fto',['format_to',['../namespacefmt_1_1v5.html#a253206334a77520a94a72af63516dabd',1,'fmt::v5::format_to(std::back_insert_iterator< Container > out, const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a7b4b0ed85f1aff706d9c244031532b7d',1,'fmt::v5::format_to(basic_memory_buffer< Char, SIZE > &buf, const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a7b65c56bc50b45bf62b20546b5a9d306',1,'fmt::v5::format_to(OutputIt out, const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a1a193d7a8ac3220c517184dbbbff13c4',1,'fmt::v5::format_to(OutputIt out, const std::locale &loc, const S &format_str, const Args &... args)']]], - ['format_5fto_5fn',['format_to_n',['../namespacefmt_1_1v5.html#aecb6cdf1f4e13bd0173f16ecc5946df5',1,'fmt::v5']]], - ['format_5fto_5fn_5fargs',['format_to_n_args',['../structfmt_1_1v5_1_1format__to__n__args.html',1,'fmt::v5']]], - ['format_5fto_5fn_5fcontext',['format_to_n_context',['../structfmt_1_1v5_1_1format__to__n__context.html',1,'fmt::v5']]], - ['format_5fto_5fn_5fresult',['format_to_n_result',['../structfmt_1_1v5_1_1format__to__n__result.html',1,'fmt::v5']]], - ['format_5ftype',['format_type',['../structfmt_1_1v5_1_1internal_1_1format__type.html',1,'fmt::v5::internal']]], - ['format_5fuint',['format_uint',['../namespacefmt_1_1v5_1_1internal.html#af5eb4df647fec81a1398d10f2e27da49',1,'fmt::v5::internal::format_uint(Char *buffer, UInt value, int num_digits, bool upper=false)'],['../namespacefmt_1_1v5_1_1internal.html#a7c6be57189424e80f260e571b9804d68',1,'fmt::v5::internal::format_uint(It out, UInt value, int num_digits, bool upper=false)']]], - ['format_5fvalue',['format_value',['../namespacefmt_1_1v5_1_1internal.html#a6dd6919e94e513563baf983e66a330ad',1,'fmt::v5::internal']]], - ['formatbuf',['formatbuf',['../classfmt_1_1v5_1_1internal_1_1formatbuf.html',1,'fmt::v5::internal::formatbuf< Char >'],['../classfmt_1_1v5_1_1internal_1_1formatbuf.html#a40ed5a6fac492f4c50b12273ebb30abe',1,'fmt::v5::internal::formatbuf::formatbuf()']]], - ['formatted_5fsize',['formatted_size',['../namespacefmt_1_1v5.html#abb96e7271b2790a480399319747dd5b1',1,'fmt::v5']]], - ['formatter',['formatter',['../classspdlog_1_1formatter.html',1,'spdlog::formatter'],['../structfmt_1_1v5_1_1formatter.html',1,'fmt::v5::formatter< T, Char, Enable >'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#affa464f89a6f6fa5afda5dc7f405b962',1,'fmt::v5::internal::arg_formatter_base::char_spec_handler::formatter()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#ae2344ac1cd01b0791888983b7b249063',1,'fmt::v5::internal::arg_formatter_base::cstring_spec_handler::formatter()'],['../structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#a53bae6e35b2355d33f2e73bf1c453002',1,'fmt::v5::formatter< std::chrono::duration< Rep, Period >, Char >::formatter()']]], - ['formatter_2eh',['formatter.h',['../formatter_8h.html',1,'']]], - ['formatter_3c_20arg_5fjoin_3c_20it_2c_20char_20_3e_2c_20char_20_3e',['formatter< arg_join< It, Char >, Char >',['../structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html',1,'fmt::v5']]], - ['formatter_3c_20basic_5fstring_5fview_3c_20char_20_3e_2c_20char_20_3e',['formatter< basic_string_view< Char >, Char >',['../structfmt_1_1v5_1_1formatter.html',1,'fmt::v5']]], - ['formatter_3c_20ranget_2c_20char_2c_20typename_20std_3a_3aenable_5fif_3c_20fmt_3a_3ais_5frange_3c_20ranget_20_3e_3a_3avalue_20_3e_3a_3atype_20_3e',['formatter< RangeT, Char, typename std::enable_if< fmt::is_range< RangeT >::value >::type >',['../structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html',1,'fmt::v5']]], - ['formatter_3c_20spdlog_3a_3adetails_3a_3abytes_5frange_3c_20t_20_3e_20_3e',['formatter< spdlog::details::bytes_range< T > >',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html',1,'fmt']]], - ['formatter_3c_20std_3a_3achrono_3a_3aduration_3c_20rep_2c_20period_20_3e_2c_20char_20_3e',['formatter< std::chrono::duration< Rep, Period >, Char >',['../structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html',1,'fmt::v5']]], - ['formatter_3c_20std_3a_3aiterator_5ftraits_3c_20it_20_3e_3a_3avalue_5ftype_2c_20char_20_3e',['formatter< std::iterator_traits< It >::value_type, Char >',['../structfmt_1_1v5_1_1formatter.html',1,'fmt::v5']]], - ['formatter_3c_20std_3a_3atm_2c_20char_20_3e',['formatter< std::tm, Char >',['../structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html',1,'fmt::v5']]], - ['formatter_3c_20t_2c_20char_2c_20typename_20std_3a_3aenable_5fif_3c_20internal_3a_3aformat_5ftype_3c_20typename_20buffer_5fcontext_3c_20char_20_3e_3a_3atype_2c_20t_20_3e_3a_3avalue_20_3e_3a_3atype_20_3e',['formatter< T, Char, typename std::enable_if< internal::format_type< typename buffer_context< Char >::type, T >::value >::type >',['../structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html',1,'fmt::v5']]], - ['formatter_3c_20t_2c_20char_2c_20typename_20std_3a_3aenable_5fif_3c_20internal_3a_3ais_5fstreamable_3c_20t_2c_20char_20_3e_3a_3avalue_20_26_26_21internal_3a_3aformat_5ftype_3c_20typename_20buffer_5fcontext_3c_20char_20_3e_3a_3atype_2c_20t_20_3e_3a_3avalue_20_3e_3a_3atype_20_3e',['formatter< T, Char, typename std::enable_if< internal::is_streamable< T, Char >::value &&!internal::format_type< typename buffer_context< Char >::type, T >::value >::type >',['../structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html',1,'fmt::v5']]], - ['formatter_3c_20tuplet_2c_20char_2c_20typename_20std_3a_3aenable_5fif_3c_20fmt_3a_3ais_5ftuple_5flike_3c_20tuplet_20_3e_3a_3avalue_20_3e_3a_3atype_20_3e',['formatter< TupleT, Char, typename std::enable_if< fmt::is_tuple_like< TupleT >::value >::type >',['../structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html',1,'fmt::v5']]], - ['formatter_5f',['formatter_',['../classspdlog_1_1sinks_1_1sink.html#aa0d19f09363a11b63b4a9b1d46f8a4b3',1,'spdlog::sinks::sink']]], - ['formatter_5ftype',['formatter_type',['../structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html',1,'fmt::v5::basic_printf_context< OutputIt, Char, ArgFormatter >::formatter_type< T >'],['../structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html',1,'fmt::v5::basic_format_context< OutputIt, Char >::formatter_type< T >']]], - ['formatting',['formatting',['../structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#ae41806a525f35f439447d6379a3dc57a',1,'fmt::v5::formatter< TupleT, Char, typename std::enable_if< fmt::is_tuple_like< TupleT >::value >::type >::formatting()'],['../structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#aeef2ffb1f84db7d17d426ff00b95c04d',1,'fmt::v5::formatter< RangeT, Char, typename std::enable_if< fmt::is_range< RangeT >::value >::type >::formatting()']]], - ['formatting_5fbase',['formatting_base',['../structfmt_1_1v5_1_1formatting__base.html',1,'fmt::v5']]], - ['formatting_5frange',['formatting_range',['../structfmt_1_1v5_1_1formatting__range.html',1,'fmt::v5::formatting_range< Char, Enable >'],['../structfmt_1_1v5_1_1formatting__range.html#ae80688cea4e88499a8aaf09b9b3e21f9',1,'fmt::v5::formatting_range::formatting_range()']]], - ['formatting_5frange_3c_20char_20_3e',['formatting_range< Char >',['../structfmt_1_1v5_1_1formatting__range.html',1,'fmt::v5']]], - ['formatting_5ftuple',['formatting_tuple',['../structfmt_1_1v5_1_1formatting__tuple.html',1,'fmt::v5::formatting_tuple< Char, Enable >'],['../structfmt_1_1v5_1_1formatting__tuple.html#a02c5fa0074e27305d21896c8c82c4d0f',1,'fmt::v5::formatting_tuple::formatting_tuple()']]], - ['formatting_5ftuple_3c_20char_20_3e',['formatting_tuple< Char >',['../structfmt_1_1v5_1_1formatting__tuple.html',1,'fmt::v5']]], - ['fp',['fp',['../classfmt_1_1v5_1_1internal_1_1fp.html',1,'fmt::v5::internal::fp'],['../classfmt_1_1v5_1_1internal_1_1fp.html#a4461b3a2cdedfe644911f3984180a0b9',1,'fmt::v5::internal::fp::fp()'],['../classfmt_1_1v5_1_1internal_1_1fp.html#a268d69d61ba1e06520408dfdca76bba1',1,'fmt::v5::internal::fp::fp(uint64_t f_val, int e_val)'],['../classfmt_1_1v5_1_1internal_1_1fp.html#adfdc87ad85220297755fbe7c6a8e1590',1,'fmt::v5::internal::fp::fp(Double d)']]], - ['fprintf',['fprintf',['../namespacefmt_1_1v5.html#a636b8bf150967fac945ad04551c2ff1d',1,'fmt::v5::fprintf(std::FILE *f, const S &format, const Args &... args)'],['../namespacefmt_1_1v5.html#a84a71badf9f49aae3c4698ac7690dbfc',1,'fmt::v5::fprintf(std::basic_ostream< typename char_t< S >::type > &os, const S &format_str, const Args &... args)']]], - ['fputil',['fputil',['../namespacefmt_1_1v5_1_1internal.html#a876de4b97bc3e1f22ff5879b47db9093',1,'fmt::v5::internal']]], - ['fputs',['fputs',['../namespacefmt_1_1v5_1_1internal.html#a1e2c6e0bff4b8e154af8cfdbf30f6e65',1,'fmt::v5::internal']]], - ['fputs_3c_20wchar_5ft_20_3e',['fputs< wchar_t >',['../namespacefmt_1_1v5_1_1internal.html#aba988382a2dc01b28f7b160c9dd64047',1,'fmt::v5::internal']]], - ['from_5fstr',['from_str',['../namespacespdlog_1_1level.html#af1f71a172e3626a0271006a3a668e6ff',1,'spdlog::level']]], - ['fuchsia',['fuchsia',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9f370737a8ad22210a0dd6b1c8f00896',1,'fmt::v5']]], - ['full',['full',['../classspdlog_1_1details_1_1circular__q.html#a6f9e90a9957c230376a463b20f909191',1,'spdlog::details::circular_q']]], - ['full_5fdays',['full_days',['../namespacespdlog_1_1details.html#a1ee031fa311cd596ba390b046e75ac77',1,'spdlog::details']]], - ['full_5fformatter',['full_formatter',['../classspdlog_1_1details_1_1full__formatter.html',1,'spdlog::details::full_formatter'],['../classspdlog_1_1details_1_1full__formatter.html#ac0212ed0f1efbb64726ddd73b62b20a0',1,'spdlog::details::full_formatter::full_formatter()']]], - ['full_5fmonths',['full_months',['../namespacespdlog_1_1details.html#ad864099fc7d08563c5cc291e2f74485a',1,'spdlog::details']]], - ['funcname',['funcname',['../structspdlog_1_1source__loc.html#a622d48d070d0421ec91a6484923aacd2',1,'spdlog::source_loc']]], - ['function',['function',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], - ['function_3c_20bool_20_3e',['function< bool >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], - ['function_3c_20int_20_3e',['function< int >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], - ['function_3c_20internal_3a_3aarg_5fformatter_5fbase_3c_20range_20_3e_3a_3aiterator_20_3e',['function< internal::arg_formatter_base< Range >::iterator >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], - ['function_3c_20unsigned_20_3e',['function< unsigned >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], - ['function_3c_20unsigned_20long_20long_20_3e',['function< unsigned long long >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], - ['function_3c_20void_20_3e',['function< void >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], - ['internal',['internal',['../namespacefmt_1_1v5_1_1internal.html',1,'fmt::v5']]], - ['v5',['v5',['../namespacefmt_1_1v5.html',1,'fmt']]] + ['e',['e',['../classfmt_1_1v5_1_1internal_1_1fp.html#a1637cce65f488ce657cb23db4c7c0219',1,'fmt::v5::internal::fp']]], + ['e_5fformatter',['e_formatter',['../classspdlog_1_1details_1_1e__formatter.html',1,'spdlog::details::e_formatter'],['../classspdlog_1_1details_1_1_e__formatter.html',1,'spdlog::details::E_formatter'],['../classspdlog_1_1details_1_1e__formatter.html#a75148ba81c9eac2025b6c405acd51ea3',1,'spdlog::details::e_formatter::e_formatter()'],['../classspdlog_1_1details_1_1_e__formatter.html#a6965aa5fe03beb42c5b360b56ca4dc54',1,'spdlog::details::E_formatter::E_formatter()']]], + ['emphasis',['emphasis',['../namespacefmt_1_1v5.html#a3c18bfe3f941ca2b94688cb6d54f1cec',1,'fmt::v5']]], + ['empty',['empty',['../structspdlog_1_1source__loc.html#aa715720ba2447a5b14bf79b453a89e33',1,'spdlog::source_loc::empty()'],['../classspdlog_1_1details_1_1circular__q.html#ae27eea7ecb58860f4471f473e02270f8',1,'spdlog::details::circular_q::empty()']]], + ['enabled',['enabled',['../structspdlog_1_1details_1_1padding__info.html#a2c315d1c5ccdac54957d3d9281830ea9',1,'spdlog::details::padding_info']]], + ['end',['end',['../structfmt_1_1v5_1_1arg__join.html#aea138338c02d417a0633ecebd019e890',1,'fmt::v5::arg_join::end()'],['../classspdlog_1_1details_1_1bytes__range.html#a513faba7dd574f7a32f00504739d6032',1,'spdlog::details::bytes_range::end()'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a0b26ffcf1270c07384a57ddaf3a38a35',1,'fmt::v5::internal::basic_buffer::end()'],['../classfmt_1_1v5_1_1basic__string__view.html#afa63ef5e96803f21d21cf1ac0dfee391',1,'fmt::v5::basic_string_view::end()'],['../classfmt_1_1v5_1_1basic__parse__context.html#a5577df5c96ceeefa7f8ea06cd73a4e51',1,'fmt::v5::basic_parse_context::end()'],['../namespacefmt_1_1v5_1_1internal.html#a1f190af8f5561392e03519562384d3b8',1,'fmt::v5::internal::end(const C &c) -> decltype(c.end())'],['../namespacefmt_1_1v5_1_1internal.html#a6d2eb5ad9f38abcc532e048b92070942',1,'fmt::v5::internal::end(T(&array)[N])']]], + ['end_5fprecision',['end_precision',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#af040082b7ccbdc2929c4f0c28aebd744',1,'fmt::v5::internal::specs_setter::end_precision()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#adc19ccf22ffc0997293bdf759711b6e7',1,'fmt::v5::internal::specs_checker::end_precision()']]], + ['enqueue',['enqueue',['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#a3795640b651fcb2de66a21ef2bc221f1',1,'spdlog::details::mpmc_blocking_queue']]], + ['enqueue_5fnowait',['enqueue_nowait',['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#a1280489c9035a705f50f04905a5ed394',1,'spdlog::details::mpmc_blocking_queue']]], + ['err',['err',['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8ba4d723e295b98a75c1263d85fc165045f',1,'spdlog::level']]], + ['err_5fcode',['err_code',['../struct_livox_eth_packet.html#aefcc74089cdc678cf2e43157f01890dd',1,'LivoxEthPacket']]], + ['err_5fhandler_5f',['err_handler_',['../classspdlog_1_1logger.html#a3e623bd54bd38315f66063ae8907ce17',1,'spdlog::logger']]], + ['error',['error',['../classspdlog_1_1logger.html#a144338f88fd2d2bec2cae951e214a9a5',1,'spdlog::logger::error(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#a9ce73acaa12b7dbbecde6ac3bc7353e5',1,'spdlog::logger::error(const T &msg)'],['../namespacespdlog.html#a84fc1d0e60ec7d333fd4f299f9c1e6b2',1,'spdlog::error(const char *fmt, const Args &... args)'],['../namespacespdlog.html#aa274f8a5f4f20ff435d27500ff589234',1,'spdlog::error(const T &msg)']]], + ['error_5fcode',['error_code',['../classfmt_1_1v5_1_1error__code.html',1,'fmt::v5::error_code'],['../struct_error_message.html#a04ae86448632fb4321a84f69f546666c',1,'ErrorMessage::error_code()'],['../classfmt_1_1v5_1_1system__error.html#a0d2342ce3d391ad12df4aa7509bd9ac7',1,'fmt::v5::system_error::error_code()'],['../classfmt_1_1v5_1_1error__code.html#a71a509534cb2d3a5705c6812293dd7f8',1,'fmt::v5::error_code::error_code()']]], + ['error_5fcode_5f',['error_code_',['../classfmt_1_1v5_1_1system__error.html#ac761354e3eb707044395fd140020e796',1,'fmt::v5::system_error']]], + ['error_5fhandler',['error_handler',['../structfmt_1_1v5_1_1internal_1_1error__handler.html',1,'fmt::v5::internal::error_handler'],['../structfmt_1_1v5_1_1internal_1_1error__handler.html#ab0b904ff6b411817d4db4d9bda9240e6',1,'fmt::v5::internal::error_handler::error_handler()'],['../structfmt_1_1v5_1_1internal_1_1error__handler.html#a6649671e792c4497c6264ee839d00b72',1,'fmt::v5::internal::error_handler::error_handler(const error_handler &)'],['../classfmt_1_1v5_1_1basic__parse__context.html#a393517a95a1aaf1b55ea787ecac5ea64',1,'fmt::v5::basic_parse_context::error_handler()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#a5ef3c3b62f0dab625c750986f348c8f8',1,'fmt::v5::internal::context_base::error_handler()'],['../classspdlog_1_1logger.html#ac6c864952112a3bbe4084884cc1d64a1',1,'spdlog::logger::error_handler()']]], + ['error_5funion',['error_union',['../struct_lidar_state_item.html#a080194488c4deceba37fef91c9124f16',1,'LidarStateItem::error_union()'],['../struct_heartbeat_response.html#a0fde073a495b78506b341d3e72e990ba',1,'HeartbeatResponse::error_union()']]], + ['errormessage',['ErrorMessage',['../struct_error_message.html',1,'']]], + ['errormessagecallback',['ErrorMessageCallback',['../livox__sdk_8h.html#a56e4e46cb5abee1fc822f518546a5c8c',1,'livox_sdk.h']]], + ['extrinsicparameterrequestitem',['ExtrinsicParameterRequestItem',['../struct_extrinsic_parameter_request_item.html',1,'']]], + ['extrinsicparameterresponseitem',['ExtrinsicParameterResponseItem',['../struct_extrinsic_parameter_response_item.html',1,'']]] ]; diff --git a/docs/search/all_7.js b/docs/search/all_7.js index 4dd3771..0d615a3 100644 --- a/docs/search/all_7.js +++ b/docs/search/all_7.js @@ -1,63 +1,184 @@ var searchData= [ - ['g',['g',['../structfmt_1_1v5_1_1rgb.html#aea0614c87ac3f2fbaf8f83622c0d4b98',1,'fmt::v5::rgb']]], - ['gainsboro',['gainsboro',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a2ca891b27d02c8a2fea622359be7c4dd',1,'fmt::v5']]], - ['gen_5fdigits_5fparams',['gen_digits_params',['../structfmt_1_1v5_1_1internal_1_1gen__digits__params.html',1,'fmt::v5::internal']]], - ['get',['get',['../classspdlog_1_1details_1_1registry.html#a43cb4919dd9f66cf4eeeeaf9774caade',1,'spdlog::details::registry::get()'],['../classfmt_1_1v5_1_1internal_1_1locale__ref.html#a1c00987ce7b6a1a9160277505b2dc38d',1,'fmt::v5::internal::locale_ref::get()'],['../classfmt_1_1v5_1_1basic__format__args.html#a9bc1ed80f61c5f8feaa1c3ead187f2e8',1,'fmt::v5::basic_format_args::get()'],['../classfmt_1_1v5_1_1error__code.html#acc9ac3c2c0c39549a085fa32d8ca2408',1,'fmt::v5::error_code::get()'],['../classfmt_1_1v5_1_1buffered__file.html#abbd16863df6a504cceb14db716ac0573',1,'fmt::v5::buffered_file::get()'],['../namespacespdlog.html#a658d68d4ebdb11793b1e78582f108674',1,'spdlog::get()']]], - ['get_5fallocator',['get_allocator',['../classfmt_1_1v5_1_1basic__memory__buffer.html#a094e634037328b140f061c7bec7f3887',1,'fmt::v5::basic_memory_buffer']]], - ['get_5farg',['get_arg',['../classfmt_1_1v5_1_1internal_1_1context__base.html#aa458a85cf988a33794d05a20f306fb60',1,'fmt::v5::internal::context_base::get_arg()'],['../classfmt_1_1v5_1_1basic__format__context.html#af38c9257418ad1abafccf1ca34d4bbb7',1,'fmt::v5::basic_format_context::get_arg(unsigned arg_id)'],['../classfmt_1_1v5_1_1basic__format__context.html#a08841c7d750e03983bad8bd6361f0a4c',1,'fmt::v5::basic_format_context::get_arg(basic_string_view< char_type > name)']]], - ['get_5fbackground',['get_background',['../classfmt_1_1v5_1_1text__style.html#a5324d97346072124428bfdad11462bea',1,'fmt::v5::text_style']]], - ['get_5fcached_5fpower',['get_cached_power',['../namespacefmt_1_1v5_1_1internal.html#a6a266d9a7b8249c93b139f1fa499a45d',1,'fmt::v5::internal']]], - ['get_5fcontainer',['get_container',['../namespacefmt_1_1v5_1_1internal.html#a0ea486bdd96af45e228fa60a3ca90c6e',1,'fmt::v5::internal']]], - ['get_5fdefault_5fraw',['get_default_raw',['../classspdlog_1_1details_1_1registry.html#a1fd3bc96c2a7be1af1841f5980cd5f4c',1,'spdlog::details::registry']]], - ['get_5femphasis',['get_emphasis',['../classfmt_1_1v5_1_1text__style.html#a75f3f3ccdf9ea0a441113237e00bae2f',1,'fmt::v5::text_style']]], - ['get_5fforeground',['get_foreground',['../classfmt_1_1v5_1_1text__style.html#a951ddffc7cc6b47c9bd8238b9bc45d75',1,'fmt::v5::text_style']]], - ['get_5findexes',['get_indexes',['../namespacefmt_1_1v5_1_1internal.html#a8dc7cbdab8398feda5d6c9101b4c7ecf',1,'fmt::v5::internal']]], - ['get_5ftp',['get_tp',['../classspdlog_1_1details_1_1registry.html#af86cd2fcbec489ebc343815f49a6e076',1,'spdlog::details::registry']]], - ['get_5ftype',['get_type',['../structfmt_1_1v5_1_1internal_1_1get__type.html',1,'fmt::v5::internal']]], - ['get_5ftypes',['get_types',['../namespacefmt_1_1v5_1_1internal.html#a6c122dc0a60ed6357913edb855c51d41',1,'fmt::v5::internal::get_types()'],['../namespacefmt_1_1v5_1_1internal.html#a25b3bfdbfda4389ce170995445fbb3bd',1,'fmt::v5::internal::get_types()']]], - ['get_5funits',['get_units',['../namespacefmt_1_1v5.html#ac024f2a2abe824964c2871057d2df7a0',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3aatto_20_3e',['get_units< std::atto >',['../namespacefmt_1_1v5.html#ae02edf3c77bf0dcce95fa440785c10e8',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3acenti_20_3e',['get_units< std::centi >',['../namespacefmt_1_1v5.html#a6aad09a35158e998c2e5ece0ea0be67c',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3adeca_20_3e',['get_units< std::deca >',['../namespacefmt_1_1v5.html#a6b61b71d26bceae8dbbde94f77974ed0',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3adeci_20_3e',['get_units< std::deci >',['../namespacefmt_1_1v5.html#a8fcc6765128d435aee70d2eaf12b14b2',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3aexa_20_3e',['get_units< std::exa >',['../namespacefmt_1_1v5.html#ac8d52a6562cf462d46688fcfb29efc21',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3afemto_20_3e',['get_units< std::femto >',['../namespacefmt_1_1v5.html#a6d437609eef4ec03ef1357ef2c8e6de6',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3agiga_20_3e',['get_units< std::giga >',['../namespacefmt_1_1v5.html#a43ae61533d48f504ef7404c50fb7bf81',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3ahecto_20_3e',['get_units< std::hecto >',['../namespacefmt_1_1v5.html#a8829616880e52dee640ee67ea6228fe6',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3akilo_20_3e',['get_units< std::kilo >',['../namespacefmt_1_1v5.html#ae2784f11c8e123f59fb773b04717d5fb',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3amega_20_3e',['get_units< std::mega >',['../namespacefmt_1_1v5.html#aa86ebbcdd9d02fcda024dc30c3025ee4',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3amicro_20_3e',['get_units< std::micro >',['../namespacefmt_1_1v5.html#aa054e910fa69e26e5762f0dd0af4bf42',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3amilli_20_3e',['get_units< std::milli >',['../namespacefmt_1_1v5.html#a45389b9f9549146c634dc6a20e9c5aa0',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3anano_20_3e',['get_units< std::nano >',['../namespacefmt_1_1v5.html#a3bd0842649988da27458042eaf3531c7',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3apeta_20_3e',['get_units< std::peta >',['../namespacefmt_1_1v5.html#a726baeb0d00c18038ccda7f1adc7a939',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3apico_20_3e',['get_units< std::pico >',['../namespacefmt_1_1v5.html#a58440beb03fea444297f8ca7834fed53',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3aratio_3c_201_20_3e_20_3e',['get_units< std::ratio< 1 > >',['../namespacefmt_1_1v5.html#aca35626c733dd1ba38eea2a3d680f4bb',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3aratio_3c_203600_20_3e_20_3e',['get_units< std::ratio< 3600 > >',['../namespacefmt_1_1v5.html#a35695a1a18217a00cffbbe83469b7cf8',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3aratio_3c_2060_20_3e_20_3e',['get_units< std::ratio< 60 > >',['../namespacefmt_1_1v5.html#a5f9a2b5f27aa0b06a474ab13b2a32043',1,'fmt::v5']]], - ['get_5funits_3c_20std_3a_3atera_20_3e',['get_units< std::tera >',['../namespacefmt_1_1v5.html#aca0a623b6a12f89c1ba373a518aacac8',1,'fmt::v5']]], - ['getandupdateseqnum',['GetAndUpdateSeqNum',['../classlivox_1_1_comm_port.html#a921c62e412bfa973effc62d2592eb2ac',1,'livox::CommPort']]], - ['getconnecteddevices',['GetConnectedDevices',['../livox__sdk_8h.html#a0efffae336c51f16133160a97f321d50',1,'livox_sdk.h']]], - ['getdeviceipinformation',['GetDeviceIPInformation',['../livox__sdk_8h.html#a3b9b87f4ad923df773c0a9c61686cfd0',1,'livox_sdk.h']]], - ['getdeviceipinformationcallback',['GetDeviceIPInformationCallback',['../livox__sdk_8h.html#a119193489eaba2bf1153abac8e3cec92',1,'livox_sdk.h']]], - ['getdeviceipmoderesponse',['GetDeviceIPModeResponse',['../struct_get_device_i_p_mode_response.html',1,'']]], - ['getlivoxsdkversion',['GetLivoxSdkVersion',['../livox__sdk_8h.html#a5686b8850f0626c808a8e2e611ab33f3',1,'livox_sdk.h']]], - ['getpacketlen',['GetPacketLen',['../classlivox_1_1_protocol.html#a8a3949d5d8b4ed37a895cc3a53569200',1,'livox::Protocol']]], - ['getpacketwrapperlen',['GetPacketWrapperLen',['../classlivox_1_1_protocol.html#afc5dbf8f0b6e52622fd5c6185db18aba',1,'livox::Protocol']]], - ['getpagesize',['getpagesize',['../namespacefmt_1_1v5.html#ace4a142aff4cc70ee683b2134cc0fdff',1,'fmt::v5']]], - ['getpreamblelen',['GetPreambleLen',['../classlivox_1_1_protocol.html#a66113a1c1b0f523f05411ef3fab97808',1,'livox::Protocol']]], - ['ghost_5fwhite',['ghost_white',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a396d120e4c6a21d1fad9cd2a57802a6c',1,'fmt::v5']]], - ['gmtime',['gmtime',['../namespacespdlog_1_1details_1_1os.html#a5520aa99f4b24d934f47884c718af8b5',1,'spdlog::details::os::gmtime(const std::time_t &time_tt) noexcept'],['../namespacespdlog_1_1details_1_1os.html#ab96032bfa50f2c6a269f90a89e03051b',1,'spdlog::details::os::gmtime() noexcept'],['../namespacefmt_1_1v5.html#a0875ccc6b7bc1e51c67559eac8c89d97',1,'fmt::v5::gmtime()']]], - ['gmtime_5fr',['gmtime_r',['../namespacefmt_1_1v5_1_1internal.html#a3779b990626b5093f48c272f343d7bf2',1,'fmt::v5::internal']]], - ['gmtime_5fs',['gmtime_s',['../namespacefmt_1_1v5_1_1internal.html#aa90687ad6156f5dfa8422a0189b388e6',1,'fmt::v5::internal']]], - ['gold',['gold',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae07e81c20cf5935f5225765f0af81755',1,'fmt::v5']]], - ['golden_5frod',['golden_rod',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a8f0b108fa3efae8069bfeecaef1f0330',1,'fmt::v5']]], - ['gray',['gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0acda7a650c5856cf2f6738072447d7825',1,'fmt::v5']]], - ['green',['green',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab762e65612c98bbc6b264fb4b042fc9c',1,'spdlog::sinks::ansicolor_sink::green()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a39daa889c7395936e2caf95baf2c4181',1,'spdlog::sinks::wincolor_sink::GREEN()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9f27410725ab8cc8854a2769c7a516b8',1,'fmt::v5::green()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa9f27410725ab8cc8854a2769c7a516b8',1,'fmt::v5::green()']]], - ['green_5fyellow',['green_yellow',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad3472adca7f1b0edf7dc5d99bd79bb9e',1,'fmt::v5']]], - ['grisu2_5fformat',['grisu2_format',['../namespacefmt_1_1v5_1_1internal.html#a270efa9d1d49796e04a96f764a68c8b5',1,'fmt::v5::internal::grisu2_format(Double value, buffer &buf, core_format_specs specs)'],['../namespacefmt_1_1v5_1_1internal.html#a48d02275b9e72a672b92ea3e7acfd656',1,'fmt::v5::internal::grisu2_format(Double, buffer &, core_format_specs)']]], - ['grisu2_5fgen_5fdigits',['grisu2_gen_digits',['../namespacefmt_1_1v5_1_1internal.html#aa8305888233bc94e346b9c162f6a8f18',1,'fmt::v5::internal']]], - ['grisu2_5fprettify',['grisu2_prettify',['../namespacefmt_1_1v5_1_1internal.html#a171b42c0035379bd3c3983f573ee09db',1,'fmt::v5::internal']]], - ['grisu2_5fround',['grisu2_round',['../namespacefmt_1_1v5_1_1internal.html#a5d09560672b4a60a1414fa7321b9ea66',1,'fmt::v5::internal']]], - ['grow',['grow',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a634bc5a3b605f4e96e9860a626c55b64',1,'fmt::v5::internal::basic_buffer::grow()'],['../classfmt_1_1v5_1_1internal_1_1container__buffer.html#a972d31b059aa614f314372e5bde626ee',1,'fmt::v5::internal::container_buffer::grow()'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#aeeb97ae704fbe2d83c32dd2adbfdff7d',1,'fmt::v5::basic_memory_buffer::grow()']]] + ['f',['f',['../classfmt_1_1v5_1_1internal_1_1fp.html#ad52e794a6624dfc7d992bd2eea3ab23f',1,'fmt::v5::internal::fp']]], + ['f_5fformatter',['F_formatter',['../classspdlog_1_1details_1_1_f__formatter.html',1,'spdlog::details::F_formatter'],['../classspdlog_1_1details_1_1f__formatter.html',1,'spdlog::details::f_formatter'],['../classspdlog_1_1details_1_1f__formatter.html#a7e6998176a0bace8105a555ff56fce73',1,'spdlog::details::f_formatter::f_formatter()'],['../classspdlog_1_1details_1_1_f__formatter.html#a932cd91a68880bfedd402ebf934ccd77',1,'spdlog::details::F_formatter::F_formatter()']]], + ['fastcrc_2eh',['FastCRC.h',['../_fast_c_r_c_8h.html',1,'']]], + ['fastcrc16',['FastCRC16',['../class_fast_c_r_c16.html',1,'FastCRC16'],['../class_fast_c_r_c16.html#a5b5fba9414abaf0eadca4c268828884b',1,'FastCRC16::FastCRC16()']]], + ['fastcrc32',['FastCRC32',['../class_fast_c_r_c32.html',1,'FastCRC32'],['../class_fast_c_r_c32.html#ae139e3fbeeb7adec610d50d638607c7d',1,'FastCRC32::FastCRC32()']]], + ['fdopen',['fdopen',['../classfmt_1_1v5_1_1file.html#a931c02ed40bfffd9e0205b35f28fbbb8',1,'fmt::v5::file']]], + ['feature',['feature',['../struct_device_info.html#a1ddd6dc50ae7fe4230b3fa0e2644fb60',1,'DeviceInfo::feature()'],['../struct_rain_fog_suppress_request_item.html#aa8cf24d5a1d3a6067ce68887fdf0a6dd',1,'RainFogSuppressRequestItem::feature()'],['../struct_lidar_state_item.html#a9f20d10119d28df0163702b25513367b',1,'LidarStateItem::feature()'],['../struct_heartbeat_response.html#a4813706674e2312b2132151f7688ff22',1,'HeartbeatResponse::feature()']]], + ['fetchcachefreespace',['FetchCacheFreeSpace',['../classlivox_1_1_comm_port.html#abb44afd20231d53d38f477e4b5861711',1,'livox::CommPort']]], + ['fg',['fg',['../classfmt_1_1v5_1_1text__style.html#a1f53d64ef2910e2e461777bf78077c59',1,'fmt::v5::text_style::fg()'],['../namespacefmt_1_1v5.html#ab1446fdc80a1153bd985da7d83bd79c7',1,'fmt::v5::fg()']]], + ['file',['file',['../classfmt_1_1v5_1_1file.html',1,'fmt::v5::file'],['../classfmt_1_1v5_1_1buffered__file.html#a686a90482e62dd1618201a3c79f9aae6',1,'fmt::v5::buffered_file::file()'],['../classfmt_1_1v5_1_1file.html#a19a7f8f226393c0ccd49e2a9c9480e8e',1,'fmt::v5::file::file()'],['../classfmt_1_1v5_1_1file.html#af0e0090d1b35c42a52ed73086541660d',1,'fmt::v5::file::file(cstring_view path, int oflag)'],['../classfmt_1_1v5_1_1file.html#a7e1ec236bdb4eebe9c1dc948e811fbfd',1,'fmt::v5::file::file(file &&other)']]], + ['file_5fexists',['file_exists',['../classspdlog_1_1details_1_1file__helper.html#a8c5f69588e8a54f436c3565317c233bd',1,'spdlog::details::file_helper::file_exists()'],['../namespacespdlog_1_1details_1_1os.html#afd466bafef75b9792e0ca62e7fdd8dc1',1,'spdlog::details::os::file_exists()']]], + ['file_5fhelper',['file_helper',['../classspdlog_1_1details_1_1file__helper.html',1,'spdlog::details::file_helper'],['../classspdlog_1_1details_1_1file__helper.html#aa11a5129c9d7492638a68d849d66d47d',1,'spdlog::details::file_helper::file_helper()=default'],['../classspdlog_1_1details_1_1file__helper.html#ab68b7720555f7656a8f387f8e0dcb37d',1,'spdlog::details::file_helper::file_helper(const file_helper &)=delete']]], + ['file_5fhelper_2eh',['file_helper.h',['../file__helper_8h.html',1,'']]], + ['filename',['filename',['../structspdlog_1_1source__loc.html#af67920703a5ba0a5557eb86667e09c80',1,'spdlog::source_loc::filename()'],['../classspdlog_1_1details_1_1file__helper.html#a76610058a1769b25bd6ed52a1443b552',1,'spdlog::details::file_helper::filename()'],['../classspdlog_1_1sinks_1_1basic__file__sink.html#a5efef88cd9a88234e61a94ffd2f0312e',1,'spdlog::sinks::basic_file_sink::filename()'],['../classspdlog_1_1sinks_1_1daily__file__sink.html#a5563c23f71ed255510c79bafd5084339',1,'spdlog::sinks::daily_file_sink::filename()'],['../classspdlog_1_1sinks_1_1rotating__file__sink.html#a16489efcc8bd112bbc0151f54ba46f2e',1,'spdlog::sinks::rotating_file_sink::filename()']]], + ['filename_5ft',['filename_t',['../namespacespdlog.html#acf7ce125b3622e44f8f1702d699e0b06',1,'spdlog']]], + ['filename_5fto_5fstr',['filename_to_str',['../namespacespdlog_1_1details_1_1os.html#ac7c0d6af1f3f652f23e57f057217b9a7',1,'spdlog::details::os']]], + ['fileno',['fileno',['../classfmt_1_1v5_1_1buffered__file.html#a14ef73faa397ecb015418d1c3635e6f5',1,'fmt::v5::buffered_file']]], + ['filesize',['filesize',['../namespacespdlog_1_1details_1_1os.html#a6d2fb5a293e8515f651288992d5443cc',1,'spdlog::details::os']]], + ['fill',['fill',['../structfmt_1_1v5_1_1internal_1_1fill.html',1,'fmt::v5::internal::fill'],['../structfmt_1_1v5_1_1align__spec.html#a0ead63b1fb62d8c631d5df7ca495b725',1,'fmt::v5::align_spec::fill()']]], + ['fill_5f',['fill_',['../structfmt_1_1v5_1_1align__spec.html#ac7badcecfcb9d58db73d06eee0888fbe',1,'fmt::v5::align_spec']]], + ['find',['find',['../classfmt_1_1v5_1_1internal_1_1arg__map.html#af6c96f7f7daeece4fa5fa43c373dc8c7',1,'fmt::v5::internal::arg_map::find()'],['../namespacefmt_1_1v5_1_1internal.html#aaa8ec781ec26a204da9f38e66a8ede8f',1,'fmt::v5::internal::find()']]], + ['find_3c_20false_2c_20char_20_3e',['find< false, char >',['../namespacefmt_1_1v5_1_1internal.html#a5b9fc2504a981744ae35cf292930b4a6',1,'fmt::v5::internal']]], + ['fire_5fbrick',['fire_brick',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a306cb0ed46dda6adb63820cb57960bb0',1,'fmt::v5']]], + ['firmware_5fversion',['firmware_version',['../struct_device_information_response.html#a3c12af3f01b1baac1888070a4d08cbff',1,'DeviceInformationResponse']]], + ['fits_5fin_5fint',['fits_in_int',['../structfmt_1_1v5_1_1internal_1_1int__checker.html#adc6b04d8bcc090c05a01e25080f920a5',1,'fmt::v5::internal::int_checker::fits_in_int(T value)'],['../structfmt_1_1v5_1_1internal_1_1int__checker.html#a3e21f15ef6ad577314d04a9822485b76',1,'fmt::v5::internal::int_checker::fits_in_int(bool)'],['../structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html#ab06277d4ea35fde2ad8a12db818dfc89',1,'fmt::v5::internal::int_checker< true >::fits_in_int(T value)'],['../structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html#a3260e491c4aafcf66b231bb65393a2ec',1,'fmt::v5::internal::int_checker< true >::fits_in_int(int)']]], + ['fixed',['fixed',['../structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#a46a9d3e58fa1f2918ee6285933762786',1,'fmt::v5::internal::gen_digits_params']]], + ['flag_5fformatter',['flag_formatter',['../classspdlog_1_1details_1_1flag__formatter.html',1,'spdlog::details::flag_formatter'],['../classspdlog_1_1details_1_1flag__formatter.html#a7f775ab8ad4027546c3490f2f299bf43',1,'spdlog::details::flag_formatter::flag_formatter(padding_info padinfo)'],['../classspdlog_1_1details_1_1flag__formatter.html#a19fcada419b07c4c0db0080b0fbf8b46',1,'spdlog::details::flag_formatter::flag_formatter()=default']]], + ['flags',['flags',['../structfmt_1_1v5_1_1core__format__specs.html#a08766778b893b5a8057b9580db36da9c',1,'fmt::v5::core_format_specs']]], + ['float_5fspec_5fhandler',['float_spec_handler',['../structfmt_1_1v5_1_1float__spec__handler.html',1,'fmt::v5::float_spec_handler'],['../structfmt_1_1v5_1_1float__spec__handler.html#a6cb6583cc6285ffa6fc492ff0862d4e3',1,'fmt::v5::float_spec_handler::float_spec_handler()']]], + ['float_5ftype_5fchecker',['float_type_checker',['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html',1,'fmt::v5::internal::float_type_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#ab4f77925d9c95b66e8b0ad5bdba8855b',1,'fmt::v5::internal::float_type_checker::float_type_checker()']]], + ['floral_5fwhite',['floral_white',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a996483b6f227bb90a1a066a4d1d6ce10',1,'fmt::v5']]], + ['flush',['flush',['../classspdlog_1_1details_1_1file__helper.html#a1a75f29ec0c13d9fbc269bcd8378b18b',1,'spdlog::details::file_helper::flush()'],['../classspdlog_1_1logger.html#a861bb4d4e65de07966148822075bee86',1,'spdlog::logger::flush()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a3c0587e868d2a42f96b878c6031333a0',1,'spdlog::sinks::ansicolor_sink::flush()'],['../classspdlog_1_1sinks_1_1base__sink.html#a2de93f1edc37e891555685ed4e520343',1,'spdlog::sinks::base_sink::flush()'],['../classspdlog_1_1sinks_1_1sink.html#a8a0674ae3bca8f1617aef820e23a2ccd',1,'spdlog::sinks::sink::flush()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#af3a13cc82215681bdd7ca5e33a7c28b5',1,'spdlog::sinks::stdout_sink::flush()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a3746a35fc36218e76dc3080e52fe6233',1,'spdlog::sinks::wincolor_sink::flush()'],['../namespacespdlog_1_1details.html#a22274995cf879a5d0a08d1f7513ee4fba86f354b8575a1a736775ae003fa344e5',1,'spdlog::details::flush()']]], + ['flush_5f',['flush_',['../classspdlog_1_1async__logger.html#ae7eeca32af4d650bc1e2dd06122d0224',1,'spdlog::async_logger::flush_()'],['../classspdlog_1_1logger.html#a98981b19089a6000fdfa8765af52ef0e',1,'spdlog::logger::flush_()'],['../classspdlog_1_1sinks_1_1android__sink.html#ac71785899fb01c7b0328b66b3727e2c3',1,'spdlog::sinks::android_sink::flush_()'],['../classspdlog_1_1sinks_1_1base__sink.html#a5ac2b237c60f68a18122a1ca09b812b4',1,'spdlog::sinks::base_sink::flush_()'],['../classspdlog_1_1sinks_1_1basic__file__sink.html#a689a12d9459d081edff7f8c7d3af227c',1,'spdlog::sinks::basic_file_sink::flush_()'],['../classspdlog_1_1sinks_1_1daily__file__sink.html#a37199f25868ac70b91e4f126bcc4b3f8',1,'spdlog::sinks::daily_file_sink::flush_()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a790a80f63276473cedbce99047adcab0',1,'spdlog::sinks::dist_sink::flush_()'],['../classspdlog_1_1sinks_1_1null__sink.html#a074c0d22167808789440953111a97926',1,'spdlog::sinks::null_sink::flush_()'],['../classspdlog_1_1sinks_1_1ostream__sink.html#a96458aa6b79019744ef4cb61979c39e0',1,'spdlog::sinks::ostream_sink::flush_()'],['../classspdlog_1_1sinks_1_1rotating__file__sink.html#ae93e4792b76f73bb0be8e50b5c5e889b',1,'spdlog::sinks::rotating_file_sink::flush_()'],['../classspdlog_1_1sinks_1_1syslog__sink.html#a6afb5ba7ef5e5f2950e624ec650fb562',1,'spdlog::sinks::syslog_sink::flush_()']]], + ['flush_5fall',['flush_all',['../classspdlog_1_1details_1_1registry.html#a3abe5826eebb056d51dd0dd75beed42d',1,'spdlog::details::registry']]], + ['flush_5fevery',['flush_every',['../classspdlog_1_1details_1_1registry.html#a78eb75a31640c0bb204d7f2123ba825c',1,'spdlog::details::registry::flush_every()'],['../namespacespdlog.html#a70d5763d644df282a67999baf4680dde',1,'spdlog::flush_every()']]], + ['flush_5flevel',['flush_level',['../classspdlog_1_1logger.html#a1b9b7304f017163d181692e41101b648',1,'spdlog::logger']]], + ['flush_5flevel_5f',['flush_level_',['../classspdlog_1_1logger.html#a69f7cbb7e1b2d5204a409906a62c1e94',1,'spdlog::logger']]], + ['flush_5fon',['flush_on',['../classspdlog_1_1details_1_1registry.html#a34841160632afca0f2063f1d55629d73',1,'spdlog::details::registry::flush_on()'],['../classspdlog_1_1logger.html#a47c021d339c1f246758e1a87a41668e3',1,'spdlog::logger::flush_on()'],['../namespacespdlog.html#afac55b239302064cba773add59b635d1',1,'spdlog::flush_on()']]], + ['fmt',['fmt',['../namespacefmt.html',1,'']]], + ['fmt_2eh',['fmt.h',['../fmt_8h.html',1,'']]], + ['fmt_5falways_5finline',['FMT_ALWAYS_INLINE',['../format_8h.html#a701339e31b08c541a11ed944cc20b856',1,'format.h']]], + ['fmt_5fapi',['FMT_API',['../core_8h.html#a9a4960b70582ed2620911a0b75dce0b5',1,'core.h']]], + ['fmt_5fassert',['FMT_ASSERT',['../core_8h.html#a03e7ee720f43adc7d83c652a6a5dd5f8',1,'core.h']]], + ['fmt_5fbegin_5fnamespace',['FMT_BEGIN_NAMESPACE',['../core_8h.html#a887c191adf8cfaf06ed40b5c4d487343',1,'core.h']]], + ['fmt_5fcatch',['FMT_CATCH',['../format-inl_8h.html#ab8efe0100a6d7cc74729f5bf7537799c',1,'format-inl.h']]], + ['fmt_5fchar',['FMT_CHAR',['../core_8h.html#a30260f394fa5dca5ec3c6db9a0acb02e',1,'core.h']]], + ['fmt_5fclang_5fversion',['FMT_CLANG_VERSION',['../format_8h.html#a058e2c3eea88d232a1056a0bc6487e37',1,'format.h']]], + ['fmt_5fconstexpr',['FMT_CONSTEXPR',['../core_8h.html#a69201cb276383873487bf68b4ef8b4cd',1,'core.h']]], + ['fmt_5fconstexpr11',['FMT_CONSTEXPR11',['../core_8h.html#a056f29fbe3ea234ac0cc417fb866a189',1,'core.h']]], + ['fmt_5fconstexpr_5fdecl',['FMT_CONSTEXPR_DECL',['../core_8h.html#af4388801466a5994a363d6005616371a',1,'core.h']]], + ['fmt_5fcuda_5fversion',['FMT_CUDA_VERSION',['../format_8h.html#af87bd0133efd40a100a5d27980c75f99',1,'format.h']]], + ['fmt_5fdetected_5fnoexcept',['FMT_DETECTED_NOEXCEPT',['../core_8h.html#a809ce36bdf78b55c536fbca340bfec9c',1,'core.h']]], + ['fmt_5fenable_5fif_5ft',['FMT_ENABLE_IF_T',['../core_8h.html#a515a4ead7f137e2c96a61e2aa87ae862',1,'core.h']]], + ['fmt_5fend_5fnamespace',['FMT_END_NAMESPACE',['../core_8h.html#ae0d2fbdf031547a949fc7e1c0b3c97f1',1,'core.h']]], + ['fmt_5fexceptions',['FMT_EXCEPTIONS',['../core_8h.html#a5d3b416a99857b69e3b7de8e88c71ff3',1,'core.h']]], + ['fmt_5fexplicit',['FMT_EXPLICIT',['../core_8h.html#ac5e450936052d8a4292d6e609e73e2bd',1,'core.h']]], + ['fmt_5ffallthrough',['FMT_FALLTHROUGH',['../format-inl_8h.html#a35d4bc2bf717ac7731de7713c54175bb',1,'format-inl.h']]], + ['fmt_5ffunc',['FMT_FUNC',['../format_8h.html#a02c8898388e0ae59aab58be14fcd4e05',1,'format.h']]], + ['fmt_5fgcc_5fversion',['FMT_GCC_VERSION',['../core_8h.html#a4f5db4f97e31a127b1236d1ff412bb0c',1,'core.h']]], + ['fmt_5fhas_5fbuiltin',['FMT_HAS_BUILTIN',['../format_8h.html#a160d3314a3cdbd49e187b75d6ce2a652',1,'format.h']]], + ['fmt_5fhas_5fcpp_5fattribute',['FMT_HAS_CPP_ATTRIBUTE',['../core_8h.html#a55d7b78b0300ddda018f77208e80f3e9',1,'core.h']]], + ['fmt_5fhas_5fcxx11_5fnoexcept',['FMT_HAS_CXX11_NOEXCEPT',['../core_8h.html#a8e7a33185c7fc32dd026773a8ece00b8',1,'core.h']]], + ['fmt_5fhas_5ffeature',['FMT_HAS_FEATURE',['../core_8h.html#a749169f277bb21ccf12b1c665e68e88a',1,'core.h']]], + ['fmt_5fhas_5fgxx_5fcxx11',['FMT_HAS_GXX_CXX11',['../core_8h.html#a1e3ffe834c427bc295b6880efcd17976',1,'core.h']]], + ['fmt_5fhas_5finclude',['FMT_HAS_INCLUDE',['../core_8h.html#afa144e698f8df527d6e51688eb9abbd1',1,'core.h']]], + ['fmt_5fheader_5fonly',['FMT_HEADER_ONLY',['../fmt_8h.html#a27b3249db8d77bd236109bda307bc263',1,'FMT_HEADER_ONLY(): fmt.h'],['../ostr_8h.html#a27b3249db8d77bd236109bda307bc263',1,'FMT_HEADER_ONLY(): ostr.h']]], + ['fmt_5fhelper_2eh',['fmt_helper.h',['../fmt__helper_8h.html',1,'']]], + ['fmt_5ficc_5fversion',['FMT_ICC_VERSION',['../format_8h.html#a061a90c1c2008acd7b0161cde41c1a11',1,'format.h']]], + ['fmt_5finline_5fnamespace',['FMT_INLINE_NAMESPACE',['../core_8h.html#a750d1276ba35fb73b8f2998389a5f8c6',1,'core.h']]], + ['fmt_5fmake_5fvalue',['FMT_MAKE_VALUE',['../core_8h.html#a0af13074db7b689a71bd9ae94f8745a1',1,'core.h']]], + ['fmt_5fmake_5fvalue_5fsame',['FMT_MAKE_VALUE_SAME',['../core_8h.html#ad0cd7007be07fae4a096c1a646c50c30',1,'core.h']]], + ['fmt_5fmsc_5fver',['FMT_MSC_VER',['../core_8h.html#a363cb0623e6975ff2b357a52a03e4728',1,'core.h']]], + ['fmt_5fnoexcept',['FMT_NOEXCEPT',['../core_8h.html#aef128913e8400683b1cbd1a3a2e11df3',1,'core.h']]], + ['fmt_5fnomacro',['FMT_NOMACRO',['../time_8h.html#a0c2d874e178da493766bca4f1b898780',1,'time.h']]], + ['fmt_5fnull',['FMT_NULL',['../core_8h.html#af7f827e50dd7667484c279ac1d38f30b',1,'core.h']]], + ['fmt_5foverride',['FMT_OVERRIDE',['../core_8h.html#a023c6c178e254d81d578b90921804b1c',1,'core.h']]], + ['fmt_5fposix',['FMT_POSIX',['../posix_8h.html#a6fa0773ef89920062fe6ab8b6e3cf337',1,'posix.h']]], + ['fmt_5fposix_5fcall',['FMT_POSIX_CALL',['../posix_8h.html#aa693a9f0c55e9b081f1ea5bf04968dd7',1,'posix.h']]], + ['fmt_5fpowers_5fof_5f10',['FMT_POWERS_OF_10',['../format-inl_8h.html#aeff75c93a29bc942ca36b31a4b634fe9',1,'format-inl.h']]], + ['fmt_5frange_5foutput_5flength_5flimit',['FMT_RANGE_OUTPUT_LENGTH_LIMIT',['../ranges_8h.html#ad1c3ab4ad2c95d3f313323dbef5585df',1,'ranges.h']]], + ['fmt_5fretry',['FMT_RETRY',['../posix_8h.html#a9d6790ac79298b8abd2472500422e138',1,'posix.h']]], + ['fmt_5fretry_5fval',['FMT_RETRY_VAL',['../posix_8h.html#a54f7e73fc1fc6ded8358c6339b51bde7',1,'posix.h']]], + ['fmt_5fsecure_5fscl',['FMT_SECURE_SCL',['../format_8h.html#a47258eefd01b3b6278d8057e5c89616a',1,'format.h']]], + ['fmt_5fsnprintf',['FMT_SNPRINTF',['../format-inl_8h.html#a9a9bb3caa94066b3adc175bb24cb1783',1,'format-inl.h']]], + ['fmt_5fstring',['FMT_STRING',['../format_8h.html#a09119ad072f708d17b88704fa898aff0',1,'format.h']]], + ['fmt_5fswprintf',['FMT_SWPRINTF',['../format-inl_8h.html#a7b59f9b149f610d3edd05ed99536253c',1,'format-inl.h']]], + ['fmt_5fsystem',['FMT_SYSTEM',['../posix_8h.html#acca658935a0993e7cf549b4a5be255a3',1,'posix.h']]], + ['fmt_5fthrow',['FMT_THROW',['../format_8h.html#ad9e2ed6d3b432a04c9622c34a2495304',1,'format.h']]], + ['fmt_5ftry',['FMT_TRY',['../format-inl_8h.html#a4aa79926398ee27fe7d6db8b0dd54edf',1,'format-inl.h']]], + ['fmt_5fudl_5ftemplate',['FMT_UDL_TEMPLATE',['../format_8h.html#abc818826093af36c21cd5f464462ed35',1,'format.h']]], + ['fmt_5fuse_5falias_5ftemplates',['FMT_USE_ALIAS_TEMPLATES',['../core_8h.html#a7cc44a51931bcec486a5eaa08598082b',1,'core.h']]], + ['fmt_5fuse_5fconstexpr',['FMT_USE_CONSTEXPR',['../core_8h.html#a739a7ff96b6dfd65a4de8fe003f5b233',1,'core.h']]], + ['fmt_5fuse_5fconstexpr11',['FMT_USE_CONSTEXPR11',['../core_8h.html#a33c15cec4035f1a3dc6fe5d4ae05c746',1,'core.h']]], + ['fmt_5fuse_5fexplicit',['FMT_USE_EXPLICIT',['../core_8h.html#a25c22ca313078429a88938f673059ae8',1,'core.h']]], + ['fmt_5fuse_5fextern_5ftemplates',['FMT_USE_EXTERN_TEMPLATES',['../format_8h.html#a3ae8cc1f3fba8eb2083d6a34aa73b5e1',1,'format.h']]], + ['fmt_5fuse_5fgrisu',['FMT_USE_GRISU',['../format_8h.html#a25c2cdf9765d15576333ed86298422c5',1,'format.h']]], + ['fmt_5fuse_5fnoexcept',['FMT_USE_NOEXCEPT',['../core_8h.html#a65490b89e8bd22fd0b8ae4491643d60c',1,'core.h']]], + ['fmt_5fuse_5fnullptr',['FMT_USE_NULLPTR',['../core_8h.html#a0b05bc8192a59d32f57c7644ef0d610b',1,'core.h']]], + ['fmt_5fuse_5ftrailing_5freturn',['FMT_USE_TRAILING_RETURN',['../format_8h.html#a8fac45c66b31da44ca3fc83ed6f7e4ab',1,'format.h']]], + ['fmt_5fuse_5fuser_5fdefined_5fliterals',['FMT_USE_USER_DEFINED_LITERALS',['../format_8h.html#a7c29e7b4a54045f13bd664979804998d',1,'format.h']]], + ['fmt_5fuse_5fwindows_5fh',['FMT_USE_WINDOWS_H',['../format_8h.html#a66278651d81592645cef28ca33a6ab92',1,'FMT_USE_WINDOWS_H(): format.h'],['../fmt_8h.html#a66278651d81592645cef28ca33a6ab92',1,'FMT_USE_WINDOWS_H(): fmt.h']]], + ['fmt_5fversion',['FMT_VERSION',['../core_8h.html#a1a322107307b020b6eac933958da94f6',1,'core.h']]], + ['folder_5fsep',['folder_sep',['../namespacespdlog_1_1details_1_1os.html#afd9823831f24054f4fd6d734b90b7bc4',1,'spdlog::details::os']]], + ['fopen_5fs',['fopen_s',['../namespacespdlog_1_1details_1_1os.html#af2d11a0b892e2f0cb3c6beba4c659a47',1,'spdlog::details::os']]], + ['for_5feach',['for_each',['../namespacefmt_1_1v5_1_1internal.html#a6b8696284389831febcd4667332cdbc9',1,'fmt::v5::internal::for_each(index_sequence< Is... >, Tuple &&tup, F &&f)'],['../namespacefmt_1_1v5_1_1internal.html#ac2b8685e665715026bb15b952f62dfb2',1,'fmt::v5::internal::for_each(Tuple &&tup, F &&f)']]], + ['force_5fflush_5f',['force_flush_',['../classspdlog_1_1sinks_1_1ostream__sink.html#a5778019dfdf7dc09ea798c490810eaed',1,'spdlog::sinks::ostream_sink']]], + ['foreground_5fcolor',['FOREGROUND_COLOR',['../structfmt_1_1v5_1_1internal_1_1basic__data.html#ad9d536a7e57a5e2dd100c1cbbb4f1100',1,'fmt::v5::internal::basic_data']]], + ['forest_5fgreen',['forest_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a95084a1747e0d0fbdd9cf4de527e93a6',1,'fmt::v5']]], + ['format',['format',['../structfmt_1_1v5_1_1internal_1_1custom__value.html#ac45d1a6dc108a21b27aea69d628f315c',1,'fmt::v5::internal::custom_value::format()'],['../classspdlog_1_1details_1_1flag__formatter.html#a33fb3e42a4c8200cceb833d92b53fb67',1,'spdlog::details::flag_formatter::format()'],['../classspdlog_1_1details_1_1name__formatter.html#ac7e2adb4e29b3fbf06ef3c0e236d64de',1,'spdlog::details::name_formatter::format()'],['../classspdlog_1_1details_1_1level__formatter.html#a36967967164ade9221ad216e0b617749',1,'spdlog::details::level_formatter::format()'],['../classspdlog_1_1details_1_1short__level__formatter.html#acf241e8ab58e6142e02a9c493034f81d',1,'spdlog::details::short_level_formatter::format()'],['../classspdlog_1_1details_1_1a__formatter.html#a0dbb4322f91afd22b82fc0c0b20a35db',1,'spdlog::details::a_formatter::format()'],['../classspdlog_1_1details_1_1_a__formatter.html#a4df40ed70fbad25284e8479aefa680bb',1,'spdlog::details::A_formatter::format()'],['../classspdlog_1_1details_1_1b__formatter.html#a3943edd9e27eb217e4871abf06b91df5',1,'spdlog::details::b_formatter::format()'],['../classspdlog_1_1details_1_1_b__formatter.html#a5f17328272b26d5d107e59bad150fac8',1,'spdlog::details::B_formatter::format()'],['../classspdlog_1_1details_1_1c__formatter.html#a1b09d9e9e1d84b29fc2fb8d37fa07d57',1,'spdlog::details::c_formatter::format()'],['../classspdlog_1_1details_1_1_c__formatter.html#a241d6298edc054937cf40c0d7ed90ae2',1,'spdlog::details::C_formatter::format()'],['../classspdlog_1_1details_1_1_d__formatter.html#a065cf427de180dfee0b6abb642a78cb0',1,'spdlog::details::D_formatter::format()'],['../classspdlog_1_1details_1_1_y__formatter.html#a0a05d2970b7558f0e24336fdc05e504a',1,'spdlog::details::Y_formatter::format()'],['../classspdlog_1_1details_1_1m__formatter.html#a507ce5bc00de736d28d93e5d7307589b',1,'spdlog::details::m_formatter::format()'],['../classspdlog_1_1details_1_1d__formatter.html#ad1c7decfd7bfa7ecd6fd105e2d74bed4',1,'spdlog::details::d_formatter::format()'],['../classspdlog_1_1details_1_1_h__formatter.html#a46e166ed26e90bfe5bbc6b5f83040bef',1,'spdlog::details::H_formatter::format()'],['../classspdlog_1_1details_1_1_i__formatter.html#ab9d6511acc53b2296ecce30f715779c7',1,'spdlog::details::I_formatter::format()'],['../classspdlog_1_1details_1_1_m__formatter.html#ab6c0f013ea2c54cceb4561033d59ca0c',1,'spdlog::details::M_formatter::format()'],['../classspdlog_1_1details_1_1_s__formatter.html#aec1945b20074132e9ebe7d94357081fa',1,'spdlog::details::S_formatter::format()'],['../classspdlog_1_1details_1_1e__formatter.html#a931a5482cce50c580dd4e570fd27e976',1,'spdlog::details::e_formatter::format()'],['../classspdlog_1_1details_1_1f__formatter.html#ab3af92f69f6a1b4a70189f4e2a7ccbba',1,'spdlog::details::f_formatter::format()'],['../classspdlog_1_1details_1_1_f__formatter.html#a1ff6475bf808c73612748c55fe3883c2',1,'spdlog::details::F_formatter::format()'],['../classspdlog_1_1details_1_1_e__formatter.html#a133d1ba939b743041a036eb16c2c524a',1,'spdlog::details::E_formatter::format()'],['../classspdlog_1_1details_1_1p__formatter.html#a18faf31df030e289f7166eaa7e6f1af1',1,'spdlog::details::p_formatter::format()'],['../classspdlog_1_1details_1_1r__formatter.html#a5d4a5d4f5f1285c4a4af104a775e9859',1,'spdlog::details::r_formatter::format()'],['../classspdlog_1_1details_1_1_r__formatter.html#a1fe66a7fbf57ef47faa59e82132e9051',1,'spdlog::details::R_formatter::format()'],['../classspdlog_1_1details_1_1_t__formatter.html#a338d37f02f3a9a4376acc3d4b655eda3',1,'spdlog::details::T_formatter::format()'],['../classspdlog_1_1details_1_1z__formatter.html#ada7a5e9a3c30039cbfb684b7743b8945',1,'spdlog::details::z_formatter::format()'],['../classspdlog_1_1details_1_1t__formatter.html#a58cd7de54067c8f05815a94edaf43e17',1,'spdlog::details::t_formatter::format()'],['../classspdlog_1_1details_1_1pid__formatter.html#abe690b2f66b9046e40931bae634779d5',1,'spdlog::details::pid_formatter::format()'],['../classspdlog_1_1details_1_1i__formatter.html#aacaecd1c3fd6827287055d2f607f10ed',1,'spdlog::details::i_formatter::format()'],['../classspdlog_1_1details_1_1v__formatter.html#af794a57051f743266fdb6ccf7fd6c61f',1,'spdlog::details::v_formatter::format()'],['../classspdlog_1_1details_1_1ch__formatter.html#a11cf092c89041ff6186efb4324227cdb',1,'spdlog::details::ch_formatter::format()'],['../classspdlog_1_1details_1_1aggregate__formatter.html#a19bcf6f721f9a3b2758a59293305987d',1,'spdlog::details::aggregate_formatter::format()'],['../classspdlog_1_1details_1_1color__start__formatter.html#af91a839656b9128edbc7f0d6ea297d3f',1,'spdlog::details::color_start_formatter::format()'],['../classspdlog_1_1details_1_1color__stop__formatter.html#ac59e274cc3d37db75f0e7ea3dc484209',1,'spdlog::details::color_stop_formatter::format()'],['../classspdlog_1_1details_1_1source__location__formatter.html#af0d34490d35c582fdb1553a27f03e147',1,'spdlog::details::source_location_formatter::format()'],['../classspdlog_1_1details_1_1source__filename__formatter.html#a9a2e549eda5c8044c76281be33b04b38',1,'spdlog::details::source_filename_formatter::format()'],['../classspdlog_1_1details_1_1source__linenum__formatter.html#ac165ced330bd04ea5485e182b9d913a2',1,'spdlog::details::source_linenum_formatter::format()'],['../classspdlog_1_1details_1_1source__funcname__formatter.html#a7628b8914c638affa0bf0fc9de62f0e4',1,'spdlog::details::source_funcname_formatter::format()'],['../classspdlog_1_1details_1_1full__formatter.html#a11da1d2ec8378841d228df071915da35',1,'spdlog::details::full_formatter::format()'],['../classspdlog_1_1pattern__formatter.html#ae43e84d7421ee7810b22ce1dc817ca3f',1,'spdlog::pattern_formatter::format()'],['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#a23665231993cdeb323a86ecb9a7a63a1',1,'fmt::formatter< spdlog::details::bytes_range< T > >::format()'],['../structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#ad995b1efdc0fef2ec8a4206c18f0e56f',1,'fmt::v5::formatter< std::chrono::duration< Rep, Period >, Char >::format()'],['../structfmt_1_1v5_1_1formatter.html#aeff27467b5654e9343ceb4cbdeb234c3',1,'fmt::v5::formatter::format()'],['../classfmt_1_1v5_1_1basic__format__arg_1_1handle.html#ae4ed580bdb5b645e912e7f74a44e7043',1,'fmt::v5::basic_format_arg::handle::format()'],['../structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html#a0decc0ceee49ae7780113a741baf8742',1,'fmt::v5::formatter< T, Char, typename std::enable_if< internal::format_type< typename buffer_context< Char >::type, T >::value >::type >::format()'],['../classfmt_1_1v5_1_1dynamic__formatter.html#a67cf8828c8811150790a11eb04e138e4',1,'fmt::v5::dynamic_formatter::format()'],['../structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html#a4c578e1058ef3524652ae2d6f86cbbfa',1,'fmt::v5::formatter< arg_join< It, Char >, Char >::format()'],['../structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html#a3038ada3d70528a9d5e3b6968f9cb079',1,'fmt::v5::formatter< T, Char, typename std::enable_if< internal::is_streamable< T, Char >::value &&!internal::format_type< typename buffer_context< Char >::type, T >::value >::type >::format()'],['../structfmt_1_1v5_1_1printf__formatter.html#afbaf6d392ab5b9df30e317eadda1b82b',1,'fmt::v5::printf_formatter::format()'],['../classfmt_1_1v5_1_1basic__printf__context.html#af8fabb5ddc209d15e78ee3136b443f85',1,'fmt::v5::basic_printf_context::format()'],['../structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#a4a94d41481e57f5ebf8e873c6909654d',1,'fmt::v5::formatter< TupleT, Char, typename std::enable_if< fmt::is_tuple_like< TupleT >::value >::type >::format()'],['../structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#af4b0d3f2b38c14b1d0cf4779e63af7cb',1,'fmt::v5::formatter< RangeT, Char, typename std::enable_if< fmt::is_range< RangeT >::value >::type >::format()'],['../structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html#a697c862f40a101129022409a60c612a1',1,'fmt::v5::formatter< std::tm, Char >::format()'],['../classspdlog_1_1formatter.html#ad50e2b119d08fad952b0f885455b3bee',1,'spdlog::formatter::format()'],['../namespacefmt_1_1v5.html#a8accad256e8cb70d1398a568742a60f0',1,'fmt::v5::format(const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a105edfebadbb4e2e472d2b334e1134a2',1,'fmt::v5::format(const std::locale &loc, const S &format_str, const Args &... args)']]], + ['format_2dinl_2eh',['format-inl.h',['../format-inl_8h.html',1,'']]], + ['format_2eh',['format.h',['../format_8h.html',1,'']]], + ['format_5farg',['format_arg',['../classfmt_1_1v5_1_1internal_1_1context__base.html#a1ba52d0ae32b2feda32d3ca7169a9af5',1,'fmt::v5::internal::context_base::format_arg()'],['../classfmt_1_1v5_1_1basic__format__args.html#ae274e33ad24c361c93315f801d336b73',1,'fmt::v5::basic_format_args::format_arg()']]], + ['format_5farg_5fstore',['format_arg_store',['../classfmt_1_1v5_1_1format__arg__store.html',1,'fmt::v5::format_arg_store< Context, Args >'],['../classfmt_1_1v5_1_1format__arg__store.html#a714a5df2ffda09f2133e4a0ca2b2f267',1,'fmt::v5::format_arg_store::format_arg_store()']]], + ['format_5farg_5fstore_3c_20buffer_5fcontext_3c_20char_5ft_3c_20s_20_3e_3a_3atype_20_3e_3a_3atype_2c_20args_2e_2e_2e_20_3e',['format_arg_store< buffer_context< char_t< S >::type >::type, Args... >',['../classfmt_1_1v5_1_1format__arg__store.html',1,'fmt::v5']]], + ['format_5fargs',['format_args',['../structfmt_1_1v5_1_1format__args.html',1,'fmt::v5::format_args'],['../structfmt_1_1v5_1_1format__args.html#aa80cbbec78d4fe88a77d437d18ba4d18',1,'fmt::v5::format_args::format_args()']]], + ['format_5fargs_5ft',['format_args_t',['../structfmt_1_1v5_1_1format__args__t.html',1,'fmt::v5']]], + ['format_5fcontext',['format_context',['../namespacefmt_1_1v5.html#a31e1d7b172b530be8c4ab5d7bb7c921d',1,'fmt::v5']]], + ['format_5fcontext_5ft',['format_context_t',['../structfmt_1_1v5_1_1format__context__t.html',1,'fmt::v5']]], + ['format_5fcontext_5ft_3c_20fmt_3a_3ainternal_3a_3atruncating_5fiterator_3c_20outputit_20_3e_2c_20char_20_3e',['format_context_t< fmt::internal::truncating_iterator< OutputIt >, Char >',['../structfmt_1_1v5_1_1format__context__t.html',1,'fmt::v5']]], + ['format_5fdecimal',['format_decimal',['../namespacefmt_1_1v5_1_1internal.html#af72d17ab37b4a11119c73b71200a7669',1,'fmt::v5::internal::format_decimal(Char *buffer, UInt value, int num_digits, ThousandsSep thousands_sep)'],['../namespacefmt_1_1v5_1_1internal.html#adae39d916b44943f034ed1d8f832c7e1',1,'fmt::v5::internal::format_decimal(Iterator out, UInt value, int num_digits, ThousandsSep sep)'],['../namespacefmt_1_1v5_1_1internal.html#ad284b384d0648be5afed9658e6d17da0',1,'fmt::v5::internal::format_decimal(It out, UInt value, int num_digits)'],['../namespacefmt_1_1v5.html#aebdab4a99bb740c29b106ac79bf9f158',1,'fmt::v5::format_decimal()']]], + ['format_5ferror',['format_error',['../classfmt_1_1v5_1_1format__error.html',1,'fmt::v5::format_error'],['../classfmt_1_1v5_1_1format__error.html#acbee2a23971909898b5cf189d68c38de',1,'fmt::v5::format_error::format_error(const char *message)'],['../classfmt_1_1v5_1_1format__error.html#a70224f7e2be8328affe003bbd7224b70',1,'fmt::v5::format_error::format_error(const std::string &message)']]], + ['format_5ffloat',['format_float',['../structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html#a649e42c11daf3f13c8cba34bb20bb649',1,'fmt::v5::internal::char_traits< char >::format_float()'],['../structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html#addb0ff96690e7424d61c79b0ef47ffc4',1,'fmt::v5::internal::char_traits< wchar_t >::format_float()']]], + ['format_5fhandler',['format_handler',['../structfmt_1_1v5_1_1format__handler.html',1,'fmt::v5::format_handler< ArgFormatter, Char, Context >'],['../structfmt_1_1v5_1_1format__handler.html#af0a6c006dcf81a1e1b3db4ff9d400e6d',1,'fmt::v5::format_handler::format_handler()']]], + ['format_5fint',['format_int',['../classfmt_1_1v5_1_1format__int.html',1,'fmt::v5::format_int'],['../classfmt_1_1v5_1_1format__int.html#acd6e25e24489eab4c848ac23408bc688',1,'fmt::v5::format_int::format_int(int value)'],['../classfmt_1_1v5_1_1format__int.html#af1efdbc1bbd43e22cf9690e50c5e1a08',1,'fmt::v5::format_int::format_int(long value)'],['../classfmt_1_1v5_1_1format__int.html#a4c07c24b79fc7d8510b29598e7cc7c51',1,'fmt::v5::format_int::format_int(long long value)'],['../classfmt_1_1v5_1_1format__int.html#a8b3e12db766aecc5de0a75285bbb2311',1,'fmt::v5::format_int::format_int(unsigned value)'],['../classfmt_1_1v5_1_1format__int.html#a818044e240e597e65a6c33cb547e4397',1,'fmt::v5::format_int::format_int(unsigned long value)'],['../classfmt_1_1v5_1_1format__int.html#aec2635e33daf103e747a4f86bc050485',1,'fmt::v5::format_int::format_int(unsigned long long value)']]], + ['format_5flocalized',['format_localized',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a1fc400d160bba953ff7412b6afce6ebc',1,'fmt::v5::internal::chrono_formatter']]], + ['format_5fparse_5fcontext',['format_parse_context',['../namespacefmt_1_1v5.html#a700149626e8a27dc80022c52e02fe484',1,'fmt::v5']]], + ['format_5fspecs',['format_specs',['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a96fbb5e2e9b9f98517f162b87b6bc738',1,'fmt::v5::internal::arg_formatter_base::format_specs()'],['../classfmt_1_1v5_1_1arg__formatter.html#aeda72496f8e7ff87432a167689a07b60',1,'fmt::v5::arg_formatter::format_specs()'],['../classfmt_1_1v5_1_1basic__writer.html#a3f7028a8ecb2404fe0ab2e53f1ac482b',1,'fmt::v5::basic_writer::format_specs()'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a74110f935913bf148cac1b9c982ee630',1,'fmt::v5::printf_arg_formatter::format_specs()'],['../namespacefmt_1_1v5.html#a853cf2a7d9e1efa6fc8a5622b62c1da9',1,'fmt::v5::format_specs()']]], + ['format_5fstr_5fquoted',['format_str_quoted',['../namespacefmt_1_1v5_1_1internal.html#a490f83b592317611d204d1398d7002c9',1,'fmt::v5::internal::format_str_quoted(bool add_space, const Arg &, typename std::enable_if< !is_like_std_string< typename std::decay< Arg >::type >::value >::type *=nullptr)'],['../namespacefmt_1_1v5_1_1internal.html#acc703652a20d8ae873e88a7cabbd9dcf',1,'fmt::v5::internal::format_str_quoted(bool add_space, const Arg &, typename std::enable_if< is_like_std_string< typename std::decay< Arg >::type >::value >::type *=nullptr)'],['../namespacefmt_1_1v5_1_1internal.html#ae25e92d1db2b218f1556165324873e8c',1,'fmt::v5::internal::format_str_quoted(bool add_space, const char *)'],['../namespacefmt_1_1v5_1_1internal.html#addf63628e6f583b0a015659ddd2b832f',1,'fmt::v5::internal::format_str_quoted(bool add_space, const wchar_t *)'],['../namespacefmt_1_1v5_1_1internal.html#aefa5e738c3b77c879c57b3c50a156804',1,'fmt::v5::internal::format_str_quoted(bool add_space, const char)'],['../namespacefmt_1_1v5_1_1internal.html#af0be81e2ed3a56a2f61a82c0e1fa951a',1,'fmt::v5::internal::format_str_quoted(bool add_space, const wchar_t)']]], + ['format_5fstring_5fchecker',['format_string_checker',['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html',1,'fmt::v5::internal::format_string_checker< Char, ErrorHandler, Args >'],['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#affdef5d73dd28bcbe91c68f617f7b419',1,'fmt::v5::internal::format_string_checker::format_string_checker()']]], + ['format_5fsystem_5ferror',['format_system_error',['../namespacefmt_1_1v5.html#a7f211f565c9879fafad806b788dde60d',1,'fmt::v5']]], + ['format_5fto',['format_to',['../namespacefmt_1_1v5.html#a253206334a77520a94a72af63516dabd',1,'fmt::v5::format_to(std::back_insert_iterator< Container > out, const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a7b4b0ed85f1aff706d9c244031532b7d',1,'fmt::v5::format_to(basic_memory_buffer< Char, SIZE > &buf, const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a7b65c56bc50b45bf62b20546b5a9d306',1,'fmt::v5::format_to(OutputIt out, const S &format_str, const Args &... args)'],['../namespacefmt_1_1v5.html#a1a193d7a8ac3220c517184dbbbff13c4',1,'fmt::v5::format_to(OutputIt out, const std::locale &loc, const S &format_str, const Args &... args)']]], + ['format_5fto_5fn',['format_to_n',['../namespacefmt_1_1v5.html#aecb6cdf1f4e13bd0173f16ecc5946df5',1,'fmt::v5']]], + ['format_5fto_5fn_5fargs',['format_to_n_args',['../structfmt_1_1v5_1_1format__to__n__args.html',1,'fmt::v5']]], + ['format_5fto_5fn_5fcontext',['format_to_n_context',['../structfmt_1_1v5_1_1format__to__n__context.html',1,'fmt::v5']]], + ['format_5fto_5fn_5fresult',['format_to_n_result',['../structfmt_1_1v5_1_1format__to__n__result.html',1,'fmt::v5']]], + ['format_5ftype',['format_type',['../structfmt_1_1v5_1_1internal_1_1format__type.html',1,'fmt::v5::internal']]], + ['format_5fuint',['format_uint',['../namespacefmt_1_1v5_1_1internal.html#af5eb4df647fec81a1398d10f2e27da49',1,'fmt::v5::internal::format_uint(Char *buffer, UInt value, int num_digits, bool upper=false)'],['../namespacefmt_1_1v5_1_1internal.html#a7c6be57189424e80f260e571b9804d68',1,'fmt::v5::internal::format_uint(It out, UInt value, int num_digits, bool upper=false)']]], + ['format_5fvalue',['format_value',['../namespacefmt_1_1v5_1_1internal.html#a6dd6919e94e513563baf983e66a330ad',1,'fmt::v5::internal']]], + ['formatbuf',['formatbuf',['../classfmt_1_1v5_1_1internal_1_1formatbuf.html',1,'fmt::v5::internal::formatbuf< Char >'],['../classfmt_1_1v5_1_1internal_1_1formatbuf.html#a40ed5a6fac492f4c50b12273ebb30abe',1,'fmt::v5::internal::formatbuf::formatbuf()']]], + ['formatted_5fsize',['formatted_size',['../namespacefmt_1_1v5.html#abb96e7271b2790a480399319747dd5b1',1,'fmt::v5']]], + ['formatter',['formatter',['../classspdlog_1_1formatter.html',1,'spdlog::formatter'],['../structfmt_1_1v5_1_1formatter.html',1,'fmt::v5::formatter< T, Char, Enable >'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#affa464f89a6f6fa5afda5dc7f405b962',1,'fmt::v5::internal::arg_formatter_base::char_spec_handler::formatter()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#ae2344ac1cd01b0791888983b7b249063',1,'fmt::v5::internal::arg_formatter_base::cstring_spec_handler::formatter()'],['../structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html#a53bae6e35b2355d33f2e73bf1c453002',1,'fmt::v5::formatter< std::chrono::duration< Rep, Period >, Char >::formatter()']]], + ['formatter_2eh',['formatter.h',['../formatter_8h.html',1,'']]], + ['formatter_3c_20arg_5fjoin_3c_20it_2c_20char_20_3e_2c_20char_20_3e',['formatter< arg_join< It, Char >, Char >',['../structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html',1,'fmt::v5']]], + ['formatter_3c_20basic_5fstring_5fview_3c_20char_20_3e_2c_20char_20_3e',['formatter< basic_string_view< Char >, Char >',['../structfmt_1_1v5_1_1formatter.html',1,'fmt::v5']]], + ['formatter_3c_20ranget_2c_20char_2c_20typename_20std_3a_3aenable_5fif_3c_20fmt_3a_3ais_5frange_3c_20ranget_20_3e_3a_3avalue_20_3e_3a_3atype_20_3e',['formatter< RangeT, Char, typename std::enable_if< fmt::is_range< RangeT >::value >::type >',['../structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html',1,'fmt::v5']]], + ['formatter_3c_20spdlog_3a_3adetails_3a_3abytes_5frange_3c_20t_20_3e_20_3e',['formatter< spdlog::details::bytes_range< T > >',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html',1,'fmt']]], + ['formatter_3c_20std_3a_3achrono_3a_3aduration_3c_20rep_2c_20period_20_3e_2c_20char_20_3e',['formatter< std::chrono::duration< Rep, Period >, Char >',['../structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html',1,'fmt::v5']]], + ['formatter_3c_20std_3a_3aiterator_5ftraits_3c_20it_20_3e_3a_3avalue_5ftype_2c_20char_20_3e',['formatter< std::iterator_traits< It >::value_type, Char >',['../structfmt_1_1v5_1_1formatter.html',1,'fmt::v5']]], + ['formatter_3c_20std_3a_3atm_2c_20char_20_3e',['formatter< std::tm, Char >',['../structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html',1,'fmt::v5']]], + ['formatter_3c_20t_2c_20char_2c_20typename_20std_3a_3aenable_5fif_3c_20internal_3a_3aformat_5ftype_3c_20typename_20buffer_5fcontext_3c_20char_20_3e_3a_3atype_2c_20t_20_3e_3a_3avalue_20_3e_3a_3atype_20_3e',['formatter< T, Char, typename std::enable_if< internal::format_type< typename buffer_context< Char >::type, T >::value >::type >',['../structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html',1,'fmt::v5']]], + ['formatter_3c_20t_2c_20char_2c_20typename_20std_3a_3aenable_5fif_3c_20internal_3a_3ais_5fstreamable_3c_20t_2c_20char_20_3e_3a_3avalue_20_26_26_21internal_3a_3aformat_5ftype_3c_20typename_20buffer_5fcontext_3c_20char_20_3e_3a_3atype_2c_20t_20_3e_3a_3avalue_20_3e_3a_3atype_20_3e',['formatter< T, Char, typename std::enable_if< internal::is_streamable< T, Char >::value &&!internal::format_type< typename buffer_context< Char >::type, T >::value >::type >',['../structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html',1,'fmt::v5']]], + ['formatter_3c_20tuplet_2c_20char_2c_20typename_20std_3a_3aenable_5fif_3c_20fmt_3a_3ais_5ftuple_5flike_3c_20tuplet_20_3e_3a_3avalue_20_3e_3a_3atype_20_3e',['formatter< TupleT, Char, typename std::enable_if< fmt::is_tuple_like< TupleT >::value >::type >',['../structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html',1,'fmt::v5']]], + ['formatter_5f',['formatter_',['../classspdlog_1_1sinks_1_1sink.html#aa0d19f09363a11b63b4a9b1d46f8a4b3',1,'spdlog::sinks::sink']]], + ['formatter_5ftype',['formatter_type',['../structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html',1,'fmt::v5::basic_printf_context< OutputIt, Char, ArgFormatter >::formatter_type< T >'],['../structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html',1,'fmt::v5::basic_format_context< OutputIt, Char >::formatter_type< T >']]], + ['formatting',['formatting',['../structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html#ae41806a525f35f439447d6379a3dc57a',1,'fmt::v5::formatter< TupleT, Char, typename std::enable_if< fmt::is_tuple_like< TupleT >::value >::type >::formatting()'],['../structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html#aeef2ffb1f84db7d17d426ff00b95c04d',1,'fmt::v5::formatter< RangeT, Char, typename std::enable_if< fmt::is_range< RangeT >::value >::type >::formatting()']]], + ['formatting_5fbase',['formatting_base',['../structfmt_1_1v5_1_1formatting__base.html',1,'fmt::v5']]], + ['formatting_5frange',['formatting_range',['../structfmt_1_1v5_1_1formatting__range.html',1,'fmt::v5::formatting_range< Char, Enable >'],['../structfmt_1_1v5_1_1formatting__range.html#ae80688cea4e88499a8aaf09b9b3e21f9',1,'fmt::v5::formatting_range::formatting_range()']]], + ['formatting_5frange_3c_20char_20_3e',['formatting_range< Char >',['../structfmt_1_1v5_1_1formatting__range.html',1,'fmt::v5']]], + ['formatting_5ftuple',['formatting_tuple',['../structfmt_1_1v5_1_1formatting__tuple.html',1,'fmt::v5::formatting_tuple< Char, Enable >'],['../structfmt_1_1v5_1_1formatting__tuple.html#a02c5fa0074e27305d21896c8c82c4d0f',1,'fmt::v5::formatting_tuple::formatting_tuple()']]], + ['formatting_5ftuple_3c_20char_20_3e',['formatting_tuple< Char >',['../structfmt_1_1v5_1_1formatting__tuple.html',1,'fmt::v5']]], + ['fp',['fp',['../classfmt_1_1v5_1_1internal_1_1fp.html',1,'fmt::v5::internal::fp'],['../classfmt_1_1v5_1_1internal_1_1fp.html#a4461b3a2cdedfe644911f3984180a0b9',1,'fmt::v5::internal::fp::fp()'],['../classfmt_1_1v5_1_1internal_1_1fp.html#a268d69d61ba1e06520408dfdca76bba1',1,'fmt::v5::internal::fp::fp(uint64_t f_val, int e_val)'],['../classfmt_1_1v5_1_1internal_1_1fp.html#adfdc87ad85220297755fbe7c6a8e1590',1,'fmt::v5::internal::fp::fp(Double d)']]], + ['fprintf',['fprintf',['../namespacefmt_1_1v5.html#a636b8bf150967fac945ad04551c2ff1d',1,'fmt::v5::fprintf(std::FILE *f, const S &format, const Args &... args)'],['../namespacefmt_1_1v5.html#a84a71badf9f49aae3c4698ac7690dbfc',1,'fmt::v5::fprintf(std::basic_ostream< typename char_t< S >::type > &os, const S &format_str, const Args &... args)']]], + ['fputil',['fputil',['../namespacefmt_1_1v5_1_1internal.html#a876de4b97bc3e1f22ff5879b47db9093',1,'fmt::v5::internal']]], + ['fputs',['fputs',['../namespacefmt_1_1v5_1_1internal.html#a1e2c6e0bff4b8e154af8cfdbf30f6e65',1,'fmt::v5::internal']]], + ['fputs_3c_20wchar_5ft_20_3e',['fputs< wchar_t >',['../namespacefmt_1_1v5_1_1internal.html#aba988382a2dc01b28f7b160c9dd64047',1,'fmt::v5::internal']]], + ['from_5fstr',['from_str',['../namespacespdlog_1_1level.html#af1f71a172e3626a0271006a3a668e6ff',1,'spdlog::level']]], + ['fuchsia',['fuchsia',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9f370737a8ad22210a0dd6b1c8f00896',1,'fmt::v5']]], + ['full',['full',['../classspdlog_1_1details_1_1circular__q.html#a6f9e90a9957c230376a463b20f909191',1,'spdlog::details::circular_q']]], + ['full_5fdays',['full_days',['../namespacespdlog_1_1details.html#a1ee031fa311cd596ba390b046e75ac77',1,'spdlog::details']]], + ['full_5fformatter',['full_formatter',['../classspdlog_1_1details_1_1full__formatter.html',1,'spdlog::details::full_formatter'],['../classspdlog_1_1details_1_1full__formatter.html#ac0212ed0f1efbb64726ddd73b62b20a0',1,'spdlog::details::full_formatter::full_formatter()']]], + ['full_5fmonths',['full_months',['../namespacespdlog_1_1details.html#ad864099fc7d08563c5cc291e2f74485a',1,'spdlog::details']]], + ['funcname',['funcname',['../structspdlog_1_1source__loc.html#a622d48d070d0421ec91a6484923aacd2',1,'spdlog::source_loc']]], + ['function',['function',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], + ['function_3c_20bool_20_3e',['function< bool >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], + ['function_3c_20int_20_3e',['function< int >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], + ['function_3c_20internal_3a_3aarg_5fformatter_5fbase_3c_20range_20_3e_3a_3aiterator_20_3e',['function< internal::arg_formatter_base< Range >::iterator >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], + ['function_3c_20unsigned_20_3e',['function< unsigned >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], + ['function_3c_20unsigned_20long_20long_20_3e',['function< unsigned long long >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], + ['function_3c_20void_20_3e',['function< void >',['../structfmt_1_1v5_1_1internal_1_1function.html',1,'fmt::v5::internal']]], + ['internal',['internal',['../namespacefmt_1_1v5_1_1internal.html',1,'fmt::v5']]], + ['v5',['v5',['../namespacefmt_1_1v5.html',1,'fmt']]] ]; diff --git a/docs/search/all_8.js b/docs/search/all_8.js index 7d8a5eb..4dd3771 100644 --- a/docs/search/all_8.js +++ b/docs/search/all_8.js @@ -1,51 +1,63 @@ var searchData= [ - ['h_5fformatter',['H_formatter',['../classspdlog_1_1details_1_1_h__formatter.html',1,'spdlog::details::H_formatter'],['../classspdlog_1_1details_1_1_h__formatter.html#a4cbf3915e24d7588af53b06a1233ea56',1,'spdlog::details::H_formatter::H_formatter()']]], - ['handle',['handle',['../classfmt_1_1v5_1_1basic__format__arg_1_1handle.html',1,'fmt::v5::basic_format_arg< Context >::handle'],['../struct_device_info.html#a2ae13df05166a303b5ba98ff8dd2510f',1,'DeviceInfo::handle()'],['../classfmt_1_1v5_1_1basic__format__arg_1_1handle.html#a2c29f6c7a5cc8ebb64f48aa3d4369e83',1,'fmt::v5::basic_format_arg::handle::handle()']]], - ['handle_5fchar_5fspecs',['handle_char_specs',['../namespacefmt_1_1v5_1_1internal.html#ad26cf75c1e4ab48a7d4d2254a44001f0',1,'fmt::v5::internal']]], - ['handle_5fcstring_5ftype_5fspec',['handle_cstring_type_spec',['../namespacefmt_1_1v5_1_1internal.html#a340304e36817771dec9551579579cb71',1,'fmt::v5::internal']]], - ['handle_5fdynamic_5fspec',['handle_dynamic_spec',['../namespacefmt_1_1v5_1_1internal.html#a7a7af692023580101e0f8028e1d0c653',1,'fmt::v5::internal']]], - ['handle_5ffloat_5ftype_5fspec',['handle_float_type_spec',['../namespacefmt_1_1v5_1_1internal.html#aed78230de71427c867d6d49cdf397681',1,'fmt::v5::internal']]], - ['handle_5fint_5ftype_5fspec',['handle_int_type_spec',['../namespacefmt_1_1v5_1_1internal.html#a129e2aec5d517b72a1f6173ee17f52f3',1,'fmt::v5::internal']]], - ['handler',['handler',['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#a524519bc859077ddaa45e229adafddcf',1,'fmt::v5::internal::width_adapter::handler()'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aac38ce68b195f734a981b68497fcac77',1,'fmt::v5::internal::precision_adapter::handler()'],['../structfmt_1_1v5_1_1internal_1_1id__adapter.html#a071bc1ed2aaa59cfbfccefb11d0f0cc4',1,'fmt::v5::internal::id_adapter::handler()']]], - ['handshakerequest',['HandshakeRequest',['../struct_handshake_request.html',1,'']]], - ['has',['has',['../structfmt_1_1v5_1_1core__format__specs.html#a721c8bd2bf91d00f04dc6ef6fcc0189a',1,'fmt::v5::core_format_specs']]], - ['has_5fbackground',['has_background',['../classfmt_1_1v5_1_1text__style.html#ae8b438a20e753fcfc1c912d3a4bdb1c9',1,'fmt::v5::text_style']]], - ['has_5femphasis',['has_emphasis',['../classfmt_1_1v5_1_1text__style.html#ae42bc013e5bdb08527611dc444844f3e',1,'fmt::v5::text_style']]], - ['has_5fforeground',['has_foreground',['../classfmt_1_1v5_1_1text__style.html#af39caf143ad60465481521f0147c1dbf',1,'fmt::v5::text_style']]], - ['hash_5fflag',['HASH_FLAG',['../namespacefmt_1_1v5.html#a2afc98455558e211af15ed1ad8c12bfaa1d9e9ff365a9e37fdcec9b729b9ab046',1,'fmt::v5']]], - ['heartbeatresponse',['HeartbeatResponse',['../struct_heartbeat_response.html',1,'']]], - ['hex_5fwriter',['hex_writer',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html',1,'fmt::v5::basic_writer::int_writer']]], - ['honey_5fdew',['honey_dew',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad2eed3a4c8bdb8a3523e9fc0f6fdc040',1,'fmt::v5']]], - ['hot_5fpink',['hot_pink',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9c6e5569ecea4e7bfa902bac54f7bbe2',1,'fmt::v5']]], - ['hour',['hour',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ab42b53e1a929f512754d0f8c136ab18c',1,'fmt::v5::internal::chrono_formatter']]], - ['hour12',['hour12',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a2be98cd6ddecf487ba9ea1a66df807e3',1,'fmt::v5::internal::chrono_formatter']]], - ['hubcontrolslotpower',['HubControlSlotPower',['../livox__sdk_8h.html#a8e5ebd472a6560803c216f629b5334b9',1,'livox_sdk.h']]], - ['hubcontrolslotpowerrequest',['HubControlSlotPowerRequest',['../struct_hub_control_slot_power_request.html',1,'']]], - ['hubextrinsicparametercalculation',['HubExtrinsicParameterCalculation',['../livox__sdk_8h.html#a91d00e99928a2b04f48d07925cf74020',1,'livox_sdk.h']]], - ['hubgetextrinsicparameter',['HubGetExtrinsicParameter',['../livox__sdk_8h.html#ac18ec0e686d0646c84d5c8184c9a0e22',1,'livox_sdk.h']]], - ['hubgetextrinsicparametercallback',['HubGetExtrinsicParameterCallback',['../livox__sdk_8h.html#ac5918d37dfd7a46dfdebdcdac030576c',1,'livox_sdk.h']]], - ['hubgetextrinsicparameterrequest',['HubGetExtrinsicParameterRequest',['../struct_hub_get_extrinsic_parameter_request.html',1,'']]], - ['hubgetextrinsicparameterresponse',['HubGetExtrinsicParameterResponse',['../struct_hub_get_extrinsic_parameter_response.html',1,'']]], - ['hubgetlidarhandle',['HubGetLidarHandle',['../livox__sdk_8h.html#af18581acf8cc2163b1118f92fcb0fe17',1,'livox_sdk.h']]], - ['hubquerylidarinformation',['HubQueryLidarInformation',['../livox__sdk_8h.html#a808d71b5f0ae0b39f0cc01a3f3aac4e4',1,'livox_sdk.h']]], - ['hubquerylidarinformationcallback',['HubQueryLidarInformationCallback',['../livox__sdk_8h.html#abe59cde8a0734811f5671bebba2f2163',1,'livox_sdk.h']]], - ['hubquerylidarinformationresponse',['HubQueryLidarInformationResponse',['../struct_hub_query_lidar_information_response.html',1,'']]], - ['hubquerylidarstatus',['HubQueryLidarStatus',['../livox__sdk_8h.html#a0206c01eed30bd0c65984ba89e7f0d46',1,'livox_sdk.h']]], - ['hubquerylidarstatuscallback',['HubQueryLidarStatusCallback',['../livox__sdk_8h.html#acf2240c3e409ab40a86eb0e0c7285bab',1,'livox_sdk.h']]], - ['hubquerylidarstatusresponse',['HubQueryLidarStatusResponse',['../struct_hub_query_lidar_status_response.html',1,'']]], - ['hubrainfogsuppress',['HubRainFogSuppress',['../livox__sdk_8h.html#acc6b67a0b4b1c702342036cf460ba50e',1,'livox_sdk.h']]], - ['hubrainfogsuppresscallback',['HubRainFogSuppressCallback',['../livox__sdk_8h.html#ac9d7cce68b0d6148df59f500b0f4ce7c',1,'livox_sdk.h']]], - ['hubrainfogsuppressrequest',['HubRainFogSuppressRequest',['../struct_hub_rain_fog_suppress_request.html',1,'']]], - ['hubrainfogsuppressresponse',['HubRainFogSuppressResponse',['../struct_hub_rain_fog_suppress_response.html',1,'']]], - ['hubsetextrinsicparameter',['HubSetExtrinsicParameter',['../livox__sdk_8h.html#a1b86409f99a438f62f946d1b83b51dd3',1,'livox_sdk.h']]], - ['hubsetextrinsicparametercallback',['HubSetExtrinsicParameterCallback',['../livox__sdk_8h.html#a776cec3bcfe1f718a24849c752426257',1,'livox_sdk.h']]], - ['hubsetextrinsicparameterrequest',['HubSetExtrinsicParameterRequest',['../struct_hub_set_extrinsic_parameter_request.html',1,'']]], - ['hubsetextrinsicparameterresponse',['HubSetExtrinsicParameterResponse',['../struct_hub_set_extrinsic_parameter_response.html',1,'']]], - ['hubsetmode',['HubSetMode',['../livox__sdk_8h.html#a59c8f942b65a1fce8e54a4a75b0dedbd',1,'livox_sdk.h']]], - ['hubsetmodecallback',['HubSetModeCallback',['../livox__sdk_8h.html#a0f90dffeb284c53a464af021eb0eeb3c',1,'livox_sdk.h']]], - ['hubsetmoderequest',['HubSetModeRequest',['../struct_hub_set_mode_request.html',1,'']]], - ['hubsetmoderesponse',['HubSetModeResponse',['../struct_hub_set_mode_response.html',1,'']]], - ['hubstartsampling',['HubStartSampling',['../livox__sdk_8h.html#ac8777f4edc72526c398da704c4beb6e9',1,'livox_sdk.h']]], - ['hubstopsampling',['HubStopSampling',['../livox__sdk_8h.html#a7027869c70fc6d550dced67ba4285138',1,'livox_sdk.h']]] + ['g',['g',['../structfmt_1_1v5_1_1rgb.html#aea0614c87ac3f2fbaf8f83622c0d4b98',1,'fmt::v5::rgb']]], + ['gainsboro',['gainsboro',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a2ca891b27d02c8a2fea622359be7c4dd',1,'fmt::v5']]], + ['gen_5fdigits_5fparams',['gen_digits_params',['../structfmt_1_1v5_1_1internal_1_1gen__digits__params.html',1,'fmt::v5::internal']]], + ['get',['get',['../classspdlog_1_1details_1_1registry.html#a43cb4919dd9f66cf4eeeeaf9774caade',1,'spdlog::details::registry::get()'],['../classfmt_1_1v5_1_1internal_1_1locale__ref.html#a1c00987ce7b6a1a9160277505b2dc38d',1,'fmt::v5::internal::locale_ref::get()'],['../classfmt_1_1v5_1_1basic__format__args.html#a9bc1ed80f61c5f8feaa1c3ead187f2e8',1,'fmt::v5::basic_format_args::get()'],['../classfmt_1_1v5_1_1error__code.html#acc9ac3c2c0c39549a085fa32d8ca2408',1,'fmt::v5::error_code::get()'],['../classfmt_1_1v5_1_1buffered__file.html#abbd16863df6a504cceb14db716ac0573',1,'fmt::v5::buffered_file::get()'],['../namespacespdlog.html#a658d68d4ebdb11793b1e78582f108674',1,'spdlog::get()']]], + ['get_5fallocator',['get_allocator',['../classfmt_1_1v5_1_1basic__memory__buffer.html#a094e634037328b140f061c7bec7f3887',1,'fmt::v5::basic_memory_buffer']]], + ['get_5farg',['get_arg',['../classfmt_1_1v5_1_1internal_1_1context__base.html#aa458a85cf988a33794d05a20f306fb60',1,'fmt::v5::internal::context_base::get_arg()'],['../classfmt_1_1v5_1_1basic__format__context.html#af38c9257418ad1abafccf1ca34d4bbb7',1,'fmt::v5::basic_format_context::get_arg(unsigned arg_id)'],['../classfmt_1_1v5_1_1basic__format__context.html#a08841c7d750e03983bad8bd6361f0a4c',1,'fmt::v5::basic_format_context::get_arg(basic_string_view< char_type > name)']]], + ['get_5fbackground',['get_background',['../classfmt_1_1v5_1_1text__style.html#a5324d97346072124428bfdad11462bea',1,'fmt::v5::text_style']]], + ['get_5fcached_5fpower',['get_cached_power',['../namespacefmt_1_1v5_1_1internal.html#a6a266d9a7b8249c93b139f1fa499a45d',1,'fmt::v5::internal']]], + ['get_5fcontainer',['get_container',['../namespacefmt_1_1v5_1_1internal.html#a0ea486bdd96af45e228fa60a3ca90c6e',1,'fmt::v5::internal']]], + ['get_5fdefault_5fraw',['get_default_raw',['../classspdlog_1_1details_1_1registry.html#a1fd3bc96c2a7be1af1841f5980cd5f4c',1,'spdlog::details::registry']]], + ['get_5femphasis',['get_emphasis',['../classfmt_1_1v5_1_1text__style.html#a75f3f3ccdf9ea0a441113237e00bae2f',1,'fmt::v5::text_style']]], + ['get_5fforeground',['get_foreground',['../classfmt_1_1v5_1_1text__style.html#a951ddffc7cc6b47c9bd8238b9bc45d75',1,'fmt::v5::text_style']]], + ['get_5findexes',['get_indexes',['../namespacefmt_1_1v5_1_1internal.html#a8dc7cbdab8398feda5d6c9101b4c7ecf',1,'fmt::v5::internal']]], + ['get_5ftp',['get_tp',['../classspdlog_1_1details_1_1registry.html#af86cd2fcbec489ebc343815f49a6e076',1,'spdlog::details::registry']]], + ['get_5ftype',['get_type',['../structfmt_1_1v5_1_1internal_1_1get__type.html',1,'fmt::v5::internal']]], + ['get_5ftypes',['get_types',['../namespacefmt_1_1v5_1_1internal.html#a6c122dc0a60ed6357913edb855c51d41',1,'fmt::v5::internal::get_types()'],['../namespacefmt_1_1v5_1_1internal.html#a25b3bfdbfda4389ce170995445fbb3bd',1,'fmt::v5::internal::get_types()']]], + ['get_5funits',['get_units',['../namespacefmt_1_1v5.html#ac024f2a2abe824964c2871057d2df7a0',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3aatto_20_3e',['get_units< std::atto >',['../namespacefmt_1_1v5.html#ae02edf3c77bf0dcce95fa440785c10e8',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3acenti_20_3e',['get_units< std::centi >',['../namespacefmt_1_1v5.html#a6aad09a35158e998c2e5ece0ea0be67c',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3adeca_20_3e',['get_units< std::deca >',['../namespacefmt_1_1v5.html#a6b61b71d26bceae8dbbde94f77974ed0',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3adeci_20_3e',['get_units< std::deci >',['../namespacefmt_1_1v5.html#a8fcc6765128d435aee70d2eaf12b14b2',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3aexa_20_3e',['get_units< std::exa >',['../namespacefmt_1_1v5.html#ac8d52a6562cf462d46688fcfb29efc21',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3afemto_20_3e',['get_units< std::femto >',['../namespacefmt_1_1v5.html#a6d437609eef4ec03ef1357ef2c8e6de6',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3agiga_20_3e',['get_units< std::giga >',['../namespacefmt_1_1v5.html#a43ae61533d48f504ef7404c50fb7bf81',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3ahecto_20_3e',['get_units< std::hecto >',['../namespacefmt_1_1v5.html#a8829616880e52dee640ee67ea6228fe6',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3akilo_20_3e',['get_units< std::kilo >',['../namespacefmt_1_1v5.html#ae2784f11c8e123f59fb773b04717d5fb',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3amega_20_3e',['get_units< std::mega >',['../namespacefmt_1_1v5.html#aa86ebbcdd9d02fcda024dc30c3025ee4',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3amicro_20_3e',['get_units< std::micro >',['../namespacefmt_1_1v5.html#aa054e910fa69e26e5762f0dd0af4bf42',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3amilli_20_3e',['get_units< std::milli >',['../namespacefmt_1_1v5.html#a45389b9f9549146c634dc6a20e9c5aa0',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3anano_20_3e',['get_units< std::nano >',['../namespacefmt_1_1v5.html#a3bd0842649988da27458042eaf3531c7',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3apeta_20_3e',['get_units< std::peta >',['../namespacefmt_1_1v5.html#a726baeb0d00c18038ccda7f1adc7a939',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3apico_20_3e',['get_units< std::pico >',['../namespacefmt_1_1v5.html#a58440beb03fea444297f8ca7834fed53',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3aratio_3c_201_20_3e_20_3e',['get_units< std::ratio< 1 > >',['../namespacefmt_1_1v5.html#aca35626c733dd1ba38eea2a3d680f4bb',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3aratio_3c_203600_20_3e_20_3e',['get_units< std::ratio< 3600 > >',['../namespacefmt_1_1v5.html#a35695a1a18217a00cffbbe83469b7cf8',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3aratio_3c_2060_20_3e_20_3e',['get_units< std::ratio< 60 > >',['../namespacefmt_1_1v5.html#a5f9a2b5f27aa0b06a474ab13b2a32043',1,'fmt::v5']]], + ['get_5funits_3c_20std_3a_3atera_20_3e',['get_units< std::tera >',['../namespacefmt_1_1v5.html#aca0a623b6a12f89c1ba373a518aacac8',1,'fmt::v5']]], + ['getandupdateseqnum',['GetAndUpdateSeqNum',['../classlivox_1_1_comm_port.html#a921c62e412bfa973effc62d2592eb2ac',1,'livox::CommPort']]], + ['getconnecteddevices',['GetConnectedDevices',['../livox__sdk_8h.html#a0efffae336c51f16133160a97f321d50',1,'livox_sdk.h']]], + ['getdeviceipinformation',['GetDeviceIPInformation',['../livox__sdk_8h.html#a3b9b87f4ad923df773c0a9c61686cfd0',1,'livox_sdk.h']]], + ['getdeviceipinformationcallback',['GetDeviceIPInformationCallback',['../livox__sdk_8h.html#a119193489eaba2bf1153abac8e3cec92',1,'livox_sdk.h']]], + ['getdeviceipmoderesponse',['GetDeviceIPModeResponse',['../struct_get_device_i_p_mode_response.html',1,'']]], + ['getlivoxsdkversion',['GetLivoxSdkVersion',['../livox__sdk_8h.html#a5686b8850f0626c808a8e2e611ab33f3',1,'livox_sdk.h']]], + ['getpacketlen',['GetPacketLen',['../classlivox_1_1_protocol.html#a8a3949d5d8b4ed37a895cc3a53569200',1,'livox::Protocol']]], + ['getpacketwrapperlen',['GetPacketWrapperLen',['../classlivox_1_1_protocol.html#afc5dbf8f0b6e52622fd5c6185db18aba',1,'livox::Protocol']]], + ['getpagesize',['getpagesize',['../namespacefmt_1_1v5.html#ace4a142aff4cc70ee683b2134cc0fdff',1,'fmt::v5']]], + ['getpreamblelen',['GetPreambleLen',['../classlivox_1_1_protocol.html#a66113a1c1b0f523f05411ef3fab97808',1,'livox::Protocol']]], + ['ghost_5fwhite',['ghost_white',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a396d120e4c6a21d1fad9cd2a57802a6c',1,'fmt::v5']]], + ['gmtime',['gmtime',['../namespacespdlog_1_1details_1_1os.html#a5520aa99f4b24d934f47884c718af8b5',1,'spdlog::details::os::gmtime(const std::time_t &time_tt) noexcept'],['../namespacespdlog_1_1details_1_1os.html#ab96032bfa50f2c6a269f90a89e03051b',1,'spdlog::details::os::gmtime() noexcept'],['../namespacefmt_1_1v5.html#a0875ccc6b7bc1e51c67559eac8c89d97',1,'fmt::v5::gmtime()']]], + ['gmtime_5fr',['gmtime_r',['../namespacefmt_1_1v5_1_1internal.html#a3779b990626b5093f48c272f343d7bf2',1,'fmt::v5::internal']]], + ['gmtime_5fs',['gmtime_s',['../namespacefmt_1_1v5_1_1internal.html#aa90687ad6156f5dfa8422a0189b388e6',1,'fmt::v5::internal']]], + ['gold',['gold',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae07e81c20cf5935f5225765f0af81755',1,'fmt::v5']]], + ['golden_5frod',['golden_rod',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a8f0b108fa3efae8069bfeecaef1f0330',1,'fmt::v5']]], + ['gray',['gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0acda7a650c5856cf2f6738072447d7825',1,'fmt::v5']]], + ['green',['green',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab762e65612c98bbc6b264fb4b042fc9c',1,'spdlog::sinks::ansicolor_sink::green()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a39daa889c7395936e2caf95baf2c4181',1,'spdlog::sinks::wincolor_sink::GREEN()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9f27410725ab8cc8854a2769c7a516b8',1,'fmt::v5::green()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa9f27410725ab8cc8854a2769c7a516b8',1,'fmt::v5::green()']]], + ['green_5fyellow',['green_yellow',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad3472adca7f1b0edf7dc5d99bd79bb9e',1,'fmt::v5']]], + ['grisu2_5fformat',['grisu2_format',['../namespacefmt_1_1v5_1_1internal.html#a270efa9d1d49796e04a96f764a68c8b5',1,'fmt::v5::internal::grisu2_format(Double value, buffer &buf, core_format_specs specs)'],['../namespacefmt_1_1v5_1_1internal.html#a48d02275b9e72a672b92ea3e7acfd656',1,'fmt::v5::internal::grisu2_format(Double, buffer &, core_format_specs)']]], + ['grisu2_5fgen_5fdigits',['grisu2_gen_digits',['../namespacefmt_1_1v5_1_1internal.html#aa8305888233bc94e346b9c162f6a8f18',1,'fmt::v5::internal']]], + ['grisu2_5fprettify',['grisu2_prettify',['../namespacefmt_1_1v5_1_1internal.html#a171b42c0035379bd3c3983f573ee09db',1,'fmt::v5::internal']]], + ['grisu2_5fround',['grisu2_round',['../namespacefmt_1_1v5_1_1internal.html#a5d09560672b4a60a1414fa7321b9ea66',1,'fmt::v5::internal']]], + ['grow',['grow',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a634bc5a3b605f4e96e9860a626c55b64',1,'fmt::v5::internal::basic_buffer::grow()'],['../classfmt_1_1v5_1_1internal_1_1container__buffer.html#a972d31b059aa614f314372e5bde626ee',1,'fmt::v5::internal::container_buffer::grow()'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#aeeb97ae704fbe2d83c32dd2adbfdff7d',1,'fmt::v5::basic_memory_buffer::grow()']]] ]; diff --git a/docs/search/all_9.js b/docs/search/all_9.js index 37fd5dd..7d8a5eb 100644 --- a/docs/search/all_9.js +++ b/docs/search/all_9.js @@ -1,73 +1,51 @@ var searchData= [ - ['arg_5fformatter_5fbase',['arg_formatter_base',['../classfmt_1_1v5_1_1basic__writer.html#a12c04f5659906e93c2418a4eb6358bd2',1,'fmt::v5::basic_writer']]], - ['arg_5fmap_3c_20context_20_3e',['arg_map< Context >',['../classfmt_1_1v5_1_1basic__format__arg.html#a7974100f026be256213827458684be38',1,'fmt::v5::basic_format_arg::arg_map< Context >()'],['../classfmt_1_1v5_1_1basic__format__args.html#a7974100f026be256213827458684be38',1,'fmt::v5::basic_format_args::arg_map< Context >()']]], - ['i_5fformatter',['i_formatter',['../classspdlog_1_1details_1_1i__formatter.html',1,'spdlog::details::i_formatter'],['../classspdlog_1_1details_1_1_i__formatter.html',1,'spdlog::details::I_formatter'],['../classspdlog_1_1details_1_1_i__formatter.html#a33599ccfecedd0d409c91792ffa82fbc',1,'spdlog::details::I_formatter::I_formatter()'],['../classspdlog_1_1details_1_1i__formatter.html#a69d03626d465771f9b6f8ef302114b9c',1,'spdlog::details::i_formatter::i_formatter()']]], - ['id',['id',['../struct_livox_eth_packet.html#acb370bd12205bd9d4218d264fdf81e52',1,'LivoxEthPacket::id()'],['../struct_device_info.html#a1025610698d5ebb8748e420b0dc0f827',1,'DeviceInfo::id()'],['../struct_connected_lidar_info.html#a0a2c04b55c719f4f719de502ada83b74',1,'ConnectedLidarInfo::id()']]], - ['id_5fadapter',['id_adapter',['../structfmt_1_1v5_1_1internal_1_1id__adapter.html',1,'fmt::v5::internal']]], - ['in_5fterminal',['in_terminal',['../namespacespdlog_1_1details_1_1os.html#a9c021ae34fade1511cde10551eb5fb63',1,'spdlog::details::os']]], - ['incr_5fmsg_5fcounter_5f',['incr_msg_counter_',['../classspdlog_1_1logger.html#a55bf9c5c960391a56399b5f1ea601b4b',1,'spdlog::logger']]], - ['index',['index',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a0ca425c4d66eb220b23180538508f089',1,'fmt::v5::internal::arg_ref::index()'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69a89b53b259b51cc1288cc429d907521d0',1,'fmt::v5::internal::arg_ref::INDEX()']]], - ['index_5fsequence',['index_sequence',['../namespacefmt_1_1v5_1_1internal.html#a2f082143e1ace9d34c362c7dd4ea4382',1,'fmt::v5::internal']]], - ['indian_5fred',['indian_red',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a8e150fc012f9d2eb7b61e16abca9462a',1,'fmt::v5']]], - ['indigo',['indigo',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a8a99d28c3c43cafed58cdbac5f4e9201',1,'fmt::v5']]], - ['info',['info',['../classspdlog_1_1logger.html#a72f80c2e379df565c628adab1efdab34',1,'spdlog::logger::info(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#a1e1dff0caa0d1bf072739dfcc1e331d8',1,'spdlog::logger::info(const T &msg)'],['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8ba7f09db55ad64d87e4124f10582cb016f',1,'spdlog::level::info()'],['../namespacespdlog.html#a3ee2e37859d2eee2722afc8ac26319ae',1,'spdlog::info(const char *fmt, const Args &... args)'],['../namespacespdlog.html#ad68b6f9b65e1e8daab0117d75f0c39b4',1,'spdlog::info(const T &msg)']]], - ['init',['init',['../structfmt_1_1v5_1_1internal_1_1init.html',1,'fmt::v5::internal::init< Context, T, TYPE >'],['../structfmt_1_1v5_1_1internal_1_1init.html#ac7b59b84cdac4e0966b101c95c03c0b3',1,'fmt::v5::internal::init::init()'],['../classfmt_1_1v5_1_1internal_1_1arg__map.html#a04351a6b015c6ed8822951f332162a7f',1,'fmt::v5::internal::arg_map::init()'],['../livox__sdk_8h.html#ad19abaacb073bdef7940926f64b2aace',1,'Init(): livox_sdk.h']]], - ['init_5fthread_5fpool',['init_thread_pool',['../namespacespdlog.html#a17a4d95759b4076827905fd8f6b10d36',1,'spdlog']]], - ['initialize_5flogger',['initialize_logger',['../classspdlog_1_1details_1_1registry.html#a7e015c41e9c32c9f1e8e7f9adc578cee',1,'spdlog::details::registry']]], - ['inline_5fbuffer_5fsize',['inline_buffer_size',['../namespacefmt_1_1v5.html#ae7eb8fc665a67b192dc6437bc62ca354a0af8f7e3ddd1a426ef65b42502b4d3a0',1,'fmt::v5']]], - ['insert',['insert',['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a44f39b58e69588b81665ce2f0fb2e8e6',1,'fmt::v5::internal::prettify_handler::insert(ptrdiff_t pos, ptrdiff_t n, F f)'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#ad4387eb92b404732e7cc8b4548fc9abe',1,'fmt::v5::internal::prettify_handler::insert(ptrdiff_t pos, char c)'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#acbc4f0c13cb3239010ff37f09049f72e',1,'fmt::v5::internal::char_counter::insert(ptrdiff_t, ptrdiff_t n, F)'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#a51b440b6cd612f4b83c3c6c4816f6022',1,'fmt::v5::internal::char_counter::insert(ptrdiff_t, char)']]], - ['instance',['instance',['../classspdlog_1_1details_1_1registry.html#a58a1bbb352f751f6b729bc57bfadd6be',1,'spdlog::details::registry']]], - ['int_5fchecker',['int_checker',['../structfmt_1_1v5_1_1internal_1_1int__checker.html',1,'fmt::v5::internal']]], - ['int_5fchecker_3c_20true_20_3e',['int_checker< true >',['../structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html',1,'fmt::v5::internal']]], - ['int_5ftraits',['int_traits',['../structfmt_1_1v5_1_1internal_1_1int__traits.html',1,'fmt::v5::internal']]], - ['int_5ftraits_3c_20int_20_3e',['int_traits< Int >',['../structfmt_1_1v5_1_1internal_1_1int__traits.html',1,'fmt::v5::internal']]], - ['int_5ftype',['int_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13aee2e9fd562a7d50e7e47e5f82188d4d5',1,'fmt::v5::internal']]], - ['int_5ftype_5fchecker',['int_type_checker',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html',1,'fmt::v5::internal::int_type_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#aa75eaaeb64951f8fa9e5480e4fa50c6f',1,'fmt::v5::internal::int_type_checker::int_type_checker()']]], - ['int_5fvalue',['int_value',['../classfmt_1_1v5_1_1internal_1_1value.html#a09d5b4b61a7adc6403a607e29be5555e',1,'fmt::v5::internal::value']]], - ['integer_5fsequence',['integer_sequence',['../structfmt_1_1v5_1_1internal_1_1integer__sequence.html',1,'fmt::v5::internal']]], - ['integer_5fsequence_3c_20t_2c_20ns_2e_2e_2e_20_3e',['integer_sequence< T, Ns... >',['../structfmt_1_1v5_1_1internal_1_1integer__sequence.html',1,'fmt::v5::internal']]], - ['ip',['ip',['../struct_device_info.html#aac0da89d608c3395b193adf4fd5bd3f3',1,'DeviceInfo']]], - ['ip_5faddr',['ip_addr',['../struct_handshake_request.html#a67402bc326594c44575780e7b767e47a',1,'HandshakeRequest::ip_addr()'],['../struct_set_device_i_p_mode_request.html#ab89c04174027155c655a196d383f2964',1,'SetDeviceIPModeRequest::ip_addr()'],['../struct_get_device_i_p_mode_response.html#a1a1f3158df48b991d5ddac05e587638f',1,'GetDeviceIPModeResponse::ip_addr()']]], - ['ip_5fmode',['ip_mode',['../struct_set_device_i_p_mode_request.html#ac49e954a2dea9fcd6fc1cae0162e3f89',1,'SetDeviceIPModeRequest::ip_mode()'],['../struct_get_device_i_p_mode_response.html#a83324ae62a3393f8f3c260ebf4a7629b',1,'GetDeviceIPModeResponse::ip_mode()']]], - ['is_5farithmetic',['is_arithmetic',['../classfmt_1_1v5_1_1basic__format__arg.html#a36ff9952212731669effc63354c5b179',1,'fmt::v5::basic_format_arg::is_arithmetic()'],['../namespacefmt_1_1v5_1_1internal.html#ac78801118381630acf4a9e778e67f6ee',1,'fmt::v5::internal::is_arithmetic()']]], - ['is_5fcolor_5fterminal',['is_color_terminal',['../namespacespdlog_1_1details_1_1os.html#af559cb70eda0e8af7314a3b10136c0d8',1,'spdlog::details::os']]], - ['is_5fcompile_5fstring',['is_compile_string',['../structfmt_1_1v5_1_1is__compile__string.html',1,'fmt::v5']]], - ['is_5fconstructible',['is_constructible',['../structfmt_1_1v5_1_1is__constructible.html',1,'fmt::v5']]], - ['is_5fcontiguous',['is_contiguous',['../structfmt_1_1v5_1_1is__contiguous.html',1,'fmt::v5']]], - ['is_5fcontiguous_3c_20internal_3a_3abasic_5fbuffer_3c_20char_20_3e_20_3e',['is_contiguous< internal::basic_buffer< Char > >',['../structfmt_1_1v5_1_1is__contiguous_3_01internal_1_1basic__buffer_3_01_char_01_4_01_4.html',1,'fmt::v5']]], - ['is_5fcontiguous_3c_20std_3a_3abasic_5fstring_3c_20char_20_3e_20_3e',['is_contiguous< std::basic_string< Char > >',['../structfmt_1_1v5_1_1is__contiguous_3_01std_1_1basic__string_3_01_char_01_4_01_4.html',1,'fmt::v5']]], - ['is_5finteger',['is_integer',['../structfmt_1_1v5_1_1internal_1_1is__integer.html',1,'fmt::v5::internal']]], - ['is_5fintegral',['is_integral',['../classfmt_1_1v5_1_1basic__format__arg.html#a805469bff2286c05dcc69e9e7f10b3b2',1,'fmt::v5::basic_format_arg::is_integral()'],['../namespacefmt_1_1v5_1_1internal.html#a9310b701f90ea156eb6abd7aa4f199cb',1,'fmt::v5::internal::is_integral()']]], - ['is_5flike_5fstd_5fstring',['is_like_std_string',['../classfmt_1_1v5_1_1internal_1_1is__like__std__string.html',1,'fmt::v5::internal']]], - ['is_5flike_5fstd_5fstring_3c_20fmt_3a_3abasic_5fstring_5fview_3c_20char_20_3e_20_3e',['is_like_std_string< fmt::basic_string_view< Char > >',['../structfmt_1_1v5_1_1internal_1_1is__like__std__string_3_01fmt_1_1basic__string__view_3_01_char_01_4_01_4.html',1,'fmt::v5::internal']]], - ['is_5fname_5fstart',['is_name_start',['../namespacefmt_1_1v5_1_1internal.html#aa601e9520a59e9c38b71eba828ebd063',1,'fmt::v5::internal']]], - ['is_5fnegative',['is_negative',['../namespacefmt_1_1v5_1_1internal.html#a58d822138c8882afb5559c4b1d7729cc',1,'fmt::v5::internal::is_negative(T value)'],['../namespacefmt_1_1v5_1_1internal.html#a249ca42d663b664f5b0a78850325d02c',1,'fmt::v5::internal::is_negative(T)']]], - ['is_5foutput_5fiterator',['is_output_iterator',['../classfmt_1_1v5_1_1internal_1_1is__output__iterator.html',1,'fmt::v5::internal']]], - ['is_5frange',['is_range',['../structfmt_1_1v5_1_1is__range.html',1,'fmt::v5']]], - ['is_5frange_5f',['is_range_',['../structfmt_1_1v5_1_1internal_1_1is__range__.html',1,'fmt::v5::internal']]], - ['is_5frange_5f_3c_20t_2c_20typename_20std_3a_3aconditional_3c_20false_2c_20conditional_5fhelper_3c_20decltype_28internal_3a_3adeclval_3c_20t_20_3e_28_29_2ebegin_28_29_29_2c_20decltype_28internal_3a_3adeclval_3c_20t_20_3e_28_29_2eend_28_29_29_3e_2c_20void_20_3e_3a_3atype_20_3e',['is_range_< T, typename std::conditional< false, conditional_helper< decltype(internal::declval< T >().begin()), decltype(internal::declval< T >().end())>, void >::type >',['../structfmt_1_1v5_1_1internal_1_1is__range___3_01_t_00_01typename_01std_1_1conditional_3_01false_00543cac082ebea7893cc13a711f6eb2b.html',1,'fmt::v5::internal']]], - ['is_5frgb',['is_rgb',['../structfmt_1_1v5_1_1internal_1_1color__type.html#a56ecbd5d058a106670bf111154651c25',1,'fmt::v5::internal::color_type']]], - ['is_5fstreamable',['is_streamable',['../classfmt_1_1v5_1_1internal_1_1is__streamable.html',1,'fmt::v5::internal']]], - ['is_5fstring',['is_string',['../structfmt_1_1v5_1_1internal_1_1is__string.html',1,'fmt::v5::internal']]], - ['is_5fstring_3c_20const_20std_3a_3afile_20_2a_20_3e',['is_string< const std::FILE * >',['../structfmt_1_1v5_1_1internal_1_1is__string_3_01const_01std_1_1_f_i_l_e_01_5_01_4.html',1,'fmt::v5::internal']]], - ['is_5fstring_3c_20std_3a_3afile_20_2a_20_3e',['is_string< std::FILE * >',['../structfmt_1_1v5_1_1internal_1_1is__string_3_01std_1_1_f_i_l_e_01_5_01_4.html',1,'fmt::v5::internal']]], - ['is_5ftuple_5flike',['is_tuple_like',['../structfmt_1_1v5_1_1is__tuple__like.html',1,'fmt::v5']]], - ['is_5ftuple_5flike_5f',['is_tuple_like_',['../classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html',1,'fmt::v5::internal']]], - ['is_5funpacked_5fbit',['is_unpacked_bit',['../namespacefmt_1_1v5_1_1internal.html#a31503adb2a84c0005790ee748fb41579a7d2448b2825c27c48270a23cf67055d9',1,'fmt::v5::internal']]], - ['is_5fzero_5fint',['is_zero_int',['../classfmt_1_1v5_1_1internal_1_1is__zero__int.html',1,'fmt::v5::internal']]], - ['isinf',['isinf',['../namespacefmt_1_1v5_1_1internal.html#a8f8fa329c4f6a82b5f4b07e2624b92f6',1,'fmt::v5::internal']]], - ['isinfinity',['isinfinity',['../classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html#ab87acbb0e3b785468702511d2ba20c43',1,'std::numeric_limits< fmt::internal::dummy_int >']]], - ['isnan',['isnan',['../namespacefmt_1_1v5_1_1internal.html#a76566374391410329d8c41e612b24101',1,'fmt::v5::internal']]], - ['isnotanumber',['isnotanumber',['../classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html#a66bfe9a9db1167477806c1973002e941',1,'std::numeric_limits< fmt::internal::dummy_int >']]], - ['it_5fcategory',['it_category',['../structfmt_1_1v5_1_1internal_1_1it__category.html',1,'fmt::v5::internal']]], - ['it_5fcategory_3c_20it_20_3e',['it_category< It >',['../structfmt_1_1v5_1_1internal_1_1it__category.html',1,'fmt::v5::internal']]], - ['it_5fcategory_3c_20t_20_2a_20_3e',['it_category< T * >',['../structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html',1,'fmt::v5::internal']]], - ['it_5fcategory_3c_20t_2c_20typename_20void_5f_3c_20typename_20t_3a_3aiterator_5fcategory_20_3e_3a_3atype_20_3e',['it_category< T, typename void_< typename T::iterator_category >::type >',['../structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html',1,'fmt::v5::internal']]], - ['italic',['italic',['../namespacefmt_1_1v5.html#a3c18bfe3f941ca2b94688cb6d54f1ceca030c5b6d1e5715105943ac111d9671bf',1,'fmt::v5']]], - ['item_5ftype',['item_type',['../classspdlog_1_1details_1_1circular__q.html#a50926d98e20ee48b70d4b66d99895e97',1,'spdlog::details::circular_q::item_type()'],['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#abb22a6f25c5fd96af5b163dc93eec397',1,'spdlog::details::mpmc_blocking_queue::item_type()'],['../classspdlog_1_1details_1_1thread__pool.html#a997d954a51e8fa8aa92071d1a9c08536',1,'spdlog::details::thread_pool::item_type()']]], - ['iterator',['iterator',['../classfmt_1_1v5_1_1basic__string__view.html#a905e99019eff225d448868d9470dac4c',1,'fmt::v5::basic_string_view::iterator()'],['../classfmt_1_1v5_1_1basic__parse__context.html#a2061e0733dc01aafbd2180742ce3e420',1,'fmt::v5::basic_parse_context::iterator()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#aa88412259a118ed5ac97e9bd1cee92e3',1,'fmt::v5::internal::context_base::iterator()'],['../classfmt_1_1v5_1_1output__range.html#a001ad2356c56ce8aa89a3e89487ce8d8',1,'fmt::v5::output_range::iterator()'],['../classfmt_1_1v5_1_1arg__formatter.html#ae170841fcffcd93c9d342f7898f9aef9',1,'fmt::v5::arg_formatter::iterator()'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a43e1b1fba0aa288fd2b33c85eaad5180',1,'fmt::v5::internal::arg_formatter_base::iterator()'],['../classfmt_1_1v5_1_1basic__writer.html#a22d41003c543a4de0c8052ee8f50bd92',1,'fmt::v5::basic_writer::iterator()']]], - ['iterator_5fcategory',['iterator_category',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#affb43cc051a4c3adef65ef36096724dc',1,'fmt::v5::internal::counting_iterator::iterator_category()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a8abc6756a3aee78332053104ecfce661',1,'fmt::v5::internal::truncating_iterator_base::iterator_category()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a87dcc701162ca01725c3702f46aca184',1,'fmt::v5::internal::null_terminating_iterator::iterator_category()']]], - ['ivory',['ivory',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ac55c68625ca1da0e1d4a922fc8cb373e',1,'fmt::v5']]], - ['make_5farg',['make_arg',['../classfmt_1_1v5_1_1basic__format__arg.html#a7d2678b3c4612757b6f1dcea4d284570',1,'fmt::v5::basic_format_arg']]] + ['h_5fformatter',['H_formatter',['../classspdlog_1_1details_1_1_h__formatter.html',1,'spdlog::details::H_formatter'],['../classspdlog_1_1details_1_1_h__formatter.html#a4cbf3915e24d7588af53b06a1233ea56',1,'spdlog::details::H_formatter::H_formatter()']]], + ['handle',['handle',['../classfmt_1_1v5_1_1basic__format__arg_1_1handle.html',1,'fmt::v5::basic_format_arg< Context >::handle'],['../struct_device_info.html#a2ae13df05166a303b5ba98ff8dd2510f',1,'DeviceInfo::handle()'],['../classfmt_1_1v5_1_1basic__format__arg_1_1handle.html#a2c29f6c7a5cc8ebb64f48aa3d4369e83',1,'fmt::v5::basic_format_arg::handle::handle()']]], + ['handle_5fchar_5fspecs',['handle_char_specs',['../namespacefmt_1_1v5_1_1internal.html#ad26cf75c1e4ab48a7d4d2254a44001f0',1,'fmt::v5::internal']]], + ['handle_5fcstring_5ftype_5fspec',['handle_cstring_type_spec',['../namespacefmt_1_1v5_1_1internal.html#a340304e36817771dec9551579579cb71',1,'fmt::v5::internal']]], + ['handle_5fdynamic_5fspec',['handle_dynamic_spec',['../namespacefmt_1_1v5_1_1internal.html#a7a7af692023580101e0f8028e1d0c653',1,'fmt::v5::internal']]], + ['handle_5ffloat_5ftype_5fspec',['handle_float_type_spec',['../namespacefmt_1_1v5_1_1internal.html#aed78230de71427c867d6d49cdf397681',1,'fmt::v5::internal']]], + ['handle_5fint_5ftype_5fspec',['handle_int_type_spec',['../namespacefmt_1_1v5_1_1internal.html#a129e2aec5d517b72a1f6173ee17f52f3',1,'fmt::v5::internal']]], + ['handler',['handler',['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#a524519bc859077ddaa45e229adafddcf',1,'fmt::v5::internal::width_adapter::handler()'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aac38ce68b195f734a981b68497fcac77',1,'fmt::v5::internal::precision_adapter::handler()'],['../structfmt_1_1v5_1_1internal_1_1id__adapter.html#a071bc1ed2aaa59cfbfccefb11d0f0cc4',1,'fmt::v5::internal::id_adapter::handler()']]], + ['handshakerequest',['HandshakeRequest',['../struct_handshake_request.html',1,'']]], + ['has',['has',['../structfmt_1_1v5_1_1core__format__specs.html#a721c8bd2bf91d00f04dc6ef6fcc0189a',1,'fmt::v5::core_format_specs']]], + ['has_5fbackground',['has_background',['../classfmt_1_1v5_1_1text__style.html#ae8b438a20e753fcfc1c912d3a4bdb1c9',1,'fmt::v5::text_style']]], + ['has_5femphasis',['has_emphasis',['../classfmt_1_1v5_1_1text__style.html#ae42bc013e5bdb08527611dc444844f3e',1,'fmt::v5::text_style']]], + ['has_5fforeground',['has_foreground',['../classfmt_1_1v5_1_1text__style.html#af39caf143ad60465481521f0147c1dbf',1,'fmt::v5::text_style']]], + ['hash_5fflag',['HASH_FLAG',['../namespacefmt_1_1v5.html#a2afc98455558e211af15ed1ad8c12bfaa1d9e9ff365a9e37fdcec9b729b9ab046',1,'fmt::v5']]], + ['heartbeatresponse',['HeartbeatResponse',['../struct_heartbeat_response.html',1,'']]], + ['hex_5fwriter',['hex_writer',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html',1,'fmt::v5::basic_writer::int_writer']]], + ['honey_5fdew',['honey_dew',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad2eed3a4c8bdb8a3523e9fc0f6fdc040',1,'fmt::v5']]], + ['hot_5fpink',['hot_pink',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a9c6e5569ecea4e7bfa902bac54f7bbe2',1,'fmt::v5']]], + ['hour',['hour',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ab42b53e1a929f512754d0f8c136ab18c',1,'fmt::v5::internal::chrono_formatter']]], + ['hour12',['hour12',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a2be98cd6ddecf487ba9ea1a66df807e3',1,'fmt::v5::internal::chrono_formatter']]], + ['hubcontrolslotpower',['HubControlSlotPower',['../livox__sdk_8h.html#a8e5ebd472a6560803c216f629b5334b9',1,'livox_sdk.h']]], + ['hubcontrolslotpowerrequest',['HubControlSlotPowerRequest',['../struct_hub_control_slot_power_request.html',1,'']]], + ['hubextrinsicparametercalculation',['HubExtrinsicParameterCalculation',['../livox__sdk_8h.html#a91d00e99928a2b04f48d07925cf74020',1,'livox_sdk.h']]], + ['hubgetextrinsicparameter',['HubGetExtrinsicParameter',['../livox__sdk_8h.html#ac18ec0e686d0646c84d5c8184c9a0e22',1,'livox_sdk.h']]], + ['hubgetextrinsicparametercallback',['HubGetExtrinsicParameterCallback',['../livox__sdk_8h.html#ac5918d37dfd7a46dfdebdcdac030576c',1,'livox_sdk.h']]], + ['hubgetextrinsicparameterrequest',['HubGetExtrinsicParameterRequest',['../struct_hub_get_extrinsic_parameter_request.html',1,'']]], + ['hubgetextrinsicparameterresponse',['HubGetExtrinsicParameterResponse',['../struct_hub_get_extrinsic_parameter_response.html',1,'']]], + ['hubgetlidarhandle',['HubGetLidarHandle',['../livox__sdk_8h.html#af18581acf8cc2163b1118f92fcb0fe17',1,'livox_sdk.h']]], + ['hubquerylidarinformation',['HubQueryLidarInformation',['../livox__sdk_8h.html#a808d71b5f0ae0b39f0cc01a3f3aac4e4',1,'livox_sdk.h']]], + ['hubquerylidarinformationcallback',['HubQueryLidarInformationCallback',['../livox__sdk_8h.html#abe59cde8a0734811f5671bebba2f2163',1,'livox_sdk.h']]], + ['hubquerylidarinformationresponse',['HubQueryLidarInformationResponse',['../struct_hub_query_lidar_information_response.html',1,'']]], + ['hubquerylidarstatus',['HubQueryLidarStatus',['../livox__sdk_8h.html#a0206c01eed30bd0c65984ba89e7f0d46',1,'livox_sdk.h']]], + ['hubquerylidarstatuscallback',['HubQueryLidarStatusCallback',['../livox__sdk_8h.html#acf2240c3e409ab40a86eb0e0c7285bab',1,'livox_sdk.h']]], + ['hubquerylidarstatusresponse',['HubQueryLidarStatusResponse',['../struct_hub_query_lidar_status_response.html',1,'']]], + ['hubrainfogsuppress',['HubRainFogSuppress',['../livox__sdk_8h.html#acc6b67a0b4b1c702342036cf460ba50e',1,'livox_sdk.h']]], + ['hubrainfogsuppresscallback',['HubRainFogSuppressCallback',['../livox__sdk_8h.html#ac9d7cce68b0d6148df59f500b0f4ce7c',1,'livox_sdk.h']]], + ['hubrainfogsuppressrequest',['HubRainFogSuppressRequest',['../struct_hub_rain_fog_suppress_request.html',1,'']]], + ['hubrainfogsuppressresponse',['HubRainFogSuppressResponse',['../struct_hub_rain_fog_suppress_response.html',1,'']]], + ['hubsetextrinsicparameter',['HubSetExtrinsicParameter',['../livox__sdk_8h.html#a1b86409f99a438f62f946d1b83b51dd3',1,'livox_sdk.h']]], + ['hubsetextrinsicparametercallback',['HubSetExtrinsicParameterCallback',['../livox__sdk_8h.html#a776cec3bcfe1f718a24849c752426257',1,'livox_sdk.h']]], + ['hubsetextrinsicparameterrequest',['HubSetExtrinsicParameterRequest',['../struct_hub_set_extrinsic_parameter_request.html',1,'']]], + ['hubsetextrinsicparameterresponse',['HubSetExtrinsicParameterResponse',['../struct_hub_set_extrinsic_parameter_response.html',1,'']]], + ['hubsetmode',['HubSetMode',['../livox__sdk_8h.html#a59c8f942b65a1fce8e54a4a75b0dedbd',1,'livox_sdk.h']]], + ['hubsetmodecallback',['HubSetModeCallback',['../livox__sdk_8h.html#a0f90dffeb284c53a464af021eb0eeb3c',1,'livox_sdk.h']]], + ['hubsetmoderequest',['HubSetModeRequest',['../struct_hub_set_mode_request.html',1,'']]], + ['hubsetmoderesponse',['HubSetModeResponse',['../struct_hub_set_mode_response.html',1,'']]], + ['hubstartsampling',['HubStartSampling',['../livox__sdk_8h.html#ac8777f4edc72526c398da704c4beb6e9',1,'livox_sdk.h']]], + ['hubstopsampling',['HubStopSampling',['../livox__sdk_8h.html#a7027869c70fc6d550dced67ba4285138',1,'livox_sdk.h']]] ]; diff --git a/docs/search/all_a.js b/docs/search/all_a.js index dd095ec..37fd5dd 100644 --- a/docs/search/all_a.js +++ b/docs/search/all_a.js @@ -1,4 +1,73 @@ var searchData= [ - ['join',['join',['../namespacefmt_1_1v5.html#a7610f57d82d6ebfb0869d7583fe13264',1,'fmt::v5::join(It begin, It end, string_view sep)'],['../namespacefmt_1_1v5.html#ad376a5124e6d05579d3360db349aec39',1,'fmt::v5::join(It begin, It end, wstring_view sep)']]] + ['arg_5fformatter_5fbase',['arg_formatter_base',['../classfmt_1_1v5_1_1basic__writer.html#a12c04f5659906e93c2418a4eb6358bd2',1,'fmt::v5::basic_writer']]], + ['arg_5fmap_3c_20context_20_3e',['arg_map< Context >',['../classfmt_1_1v5_1_1basic__format__arg.html#a7974100f026be256213827458684be38',1,'fmt::v5::basic_format_arg::arg_map< Context >()'],['../classfmt_1_1v5_1_1basic__format__args.html#a7974100f026be256213827458684be38',1,'fmt::v5::basic_format_args::arg_map< Context >()']]], + ['i_5fformatter',['i_formatter',['../classspdlog_1_1details_1_1i__formatter.html',1,'spdlog::details::i_formatter'],['../classspdlog_1_1details_1_1_i__formatter.html',1,'spdlog::details::I_formatter'],['../classspdlog_1_1details_1_1_i__formatter.html#a33599ccfecedd0d409c91792ffa82fbc',1,'spdlog::details::I_formatter::I_formatter()'],['../classspdlog_1_1details_1_1i__formatter.html#a69d03626d465771f9b6f8ef302114b9c',1,'spdlog::details::i_formatter::i_formatter()']]], + ['id',['id',['../struct_livox_eth_packet.html#acb370bd12205bd9d4218d264fdf81e52',1,'LivoxEthPacket::id()'],['../struct_device_info.html#a1025610698d5ebb8748e420b0dc0f827',1,'DeviceInfo::id()'],['../struct_connected_lidar_info.html#a0a2c04b55c719f4f719de502ada83b74',1,'ConnectedLidarInfo::id()']]], + ['id_5fadapter',['id_adapter',['../structfmt_1_1v5_1_1internal_1_1id__adapter.html',1,'fmt::v5::internal']]], + ['in_5fterminal',['in_terminal',['../namespacespdlog_1_1details_1_1os.html#a9c021ae34fade1511cde10551eb5fb63',1,'spdlog::details::os']]], + ['incr_5fmsg_5fcounter_5f',['incr_msg_counter_',['../classspdlog_1_1logger.html#a55bf9c5c960391a56399b5f1ea601b4b',1,'spdlog::logger']]], + ['index',['index',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a0ca425c4d66eb220b23180538508f089',1,'fmt::v5::internal::arg_ref::index()'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69a89b53b259b51cc1288cc429d907521d0',1,'fmt::v5::internal::arg_ref::INDEX()']]], + ['index_5fsequence',['index_sequence',['../namespacefmt_1_1v5_1_1internal.html#a2f082143e1ace9d34c362c7dd4ea4382',1,'fmt::v5::internal']]], + ['indian_5fred',['indian_red',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a8e150fc012f9d2eb7b61e16abca9462a',1,'fmt::v5']]], + ['indigo',['indigo',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a8a99d28c3c43cafed58cdbac5f4e9201',1,'fmt::v5']]], + ['info',['info',['../classspdlog_1_1logger.html#a72f80c2e379df565c628adab1efdab34',1,'spdlog::logger::info(const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#a1e1dff0caa0d1bf072739dfcc1e331d8',1,'spdlog::logger::info(const T &msg)'],['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8ba7f09db55ad64d87e4124f10582cb016f',1,'spdlog::level::info()'],['../namespacespdlog.html#a3ee2e37859d2eee2722afc8ac26319ae',1,'spdlog::info(const char *fmt, const Args &... args)'],['../namespacespdlog.html#ad68b6f9b65e1e8daab0117d75f0c39b4',1,'spdlog::info(const T &msg)']]], + ['init',['init',['../structfmt_1_1v5_1_1internal_1_1init.html',1,'fmt::v5::internal::init< Context, T, TYPE >'],['../structfmt_1_1v5_1_1internal_1_1init.html#ac7b59b84cdac4e0966b101c95c03c0b3',1,'fmt::v5::internal::init::init()'],['../classfmt_1_1v5_1_1internal_1_1arg__map.html#a04351a6b015c6ed8822951f332162a7f',1,'fmt::v5::internal::arg_map::init()'],['../livox__sdk_8h.html#ad19abaacb073bdef7940926f64b2aace',1,'Init(): livox_sdk.h']]], + ['init_5fthread_5fpool',['init_thread_pool',['../namespacespdlog.html#a17a4d95759b4076827905fd8f6b10d36',1,'spdlog']]], + ['initialize_5flogger',['initialize_logger',['../classspdlog_1_1details_1_1registry.html#a7e015c41e9c32c9f1e8e7f9adc578cee',1,'spdlog::details::registry']]], + ['inline_5fbuffer_5fsize',['inline_buffer_size',['../namespacefmt_1_1v5.html#ae7eb8fc665a67b192dc6437bc62ca354a0af8f7e3ddd1a426ef65b42502b4d3a0',1,'fmt::v5']]], + ['insert',['insert',['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#a44f39b58e69588b81665ce2f0fb2e8e6',1,'fmt::v5::internal::prettify_handler::insert(ptrdiff_t pos, ptrdiff_t n, F f)'],['../structfmt_1_1v5_1_1internal_1_1prettify__handler.html#ad4387eb92b404732e7cc8b4548fc9abe',1,'fmt::v5::internal::prettify_handler::insert(ptrdiff_t pos, char c)'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#acbc4f0c13cb3239010ff37f09049f72e',1,'fmt::v5::internal::char_counter::insert(ptrdiff_t, ptrdiff_t n, F)'],['../structfmt_1_1v5_1_1internal_1_1char__counter.html#a51b440b6cd612f4b83c3c6c4816f6022',1,'fmt::v5::internal::char_counter::insert(ptrdiff_t, char)']]], + ['instance',['instance',['../classspdlog_1_1details_1_1registry.html#a58a1bbb352f751f6b729bc57bfadd6be',1,'spdlog::details::registry']]], + ['int_5fchecker',['int_checker',['../structfmt_1_1v5_1_1internal_1_1int__checker.html',1,'fmt::v5::internal']]], + ['int_5fchecker_3c_20true_20_3e',['int_checker< true >',['../structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html',1,'fmt::v5::internal']]], + ['int_5ftraits',['int_traits',['../structfmt_1_1v5_1_1internal_1_1int__traits.html',1,'fmt::v5::internal']]], + ['int_5ftraits_3c_20int_20_3e',['int_traits< Int >',['../structfmt_1_1v5_1_1internal_1_1int__traits.html',1,'fmt::v5::internal']]], + ['int_5ftype',['int_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13aee2e9fd562a7d50e7e47e5f82188d4d5',1,'fmt::v5::internal']]], + ['int_5ftype_5fchecker',['int_type_checker',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html',1,'fmt::v5::internal::int_type_checker< ErrorHandler >'],['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#aa75eaaeb64951f8fa9e5480e4fa50c6f',1,'fmt::v5::internal::int_type_checker::int_type_checker()']]], + ['int_5fvalue',['int_value',['../classfmt_1_1v5_1_1internal_1_1value.html#a09d5b4b61a7adc6403a607e29be5555e',1,'fmt::v5::internal::value']]], + ['integer_5fsequence',['integer_sequence',['../structfmt_1_1v5_1_1internal_1_1integer__sequence.html',1,'fmt::v5::internal']]], + ['integer_5fsequence_3c_20t_2c_20ns_2e_2e_2e_20_3e',['integer_sequence< T, Ns... >',['../structfmt_1_1v5_1_1internal_1_1integer__sequence.html',1,'fmt::v5::internal']]], + ['ip',['ip',['../struct_device_info.html#aac0da89d608c3395b193adf4fd5bd3f3',1,'DeviceInfo']]], + ['ip_5faddr',['ip_addr',['../struct_handshake_request.html#a67402bc326594c44575780e7b767e47a',1,'HandshakeRequest::ip_addr()'],['../struct_set_device_i_p_mode_request.html#ab89c04174027155c655a196d383f2964',1,'SetDeviceIPModeRequest::ip_addr()'],['../struct_get_device_i_p_mode_response.html#a1a1f3158df48b991d5ddac05e587638f',1,'GetDeviceIPModeResponse::ip_addr()']]], + ['ip_5fmode',['ip_mode',['../struct_set_device_i_p_mode_request.html#ac49e954a2dea9fcd6fc1cae0162e3f89',1,'SetDeviceIPModeRequest::ip_mode()'],['../struct_get_device_i_p_mode_response.html#a83324ae62a3393f8f3c260ebf4a7629b',1,'GetDeviceIPModeResponse::ip_mode()']]], + ['is_5farithmetic',['is_arithmetic',['../classfmt_1_1v5_1_1basic__format__arg.html#a36ff9952212731669effc63354c5b179',1,'fmt::v5::basic_format_arg::is_arithmetic()'],['../namespacefmt_1_1v5_1_1internal.html#ac78801118381630acf4a9e778e67f6ee',1,'fmt::v5::internal::is_arithmetic()']]], + ['is_5fcolor_5fterminal',['is_color_terminal',['../namespacespdlog_1_1details_1_1os.html#af559cb70eda0e8af7314a3b10136c0d8',1,'spdlog::details::os']]], + ['is_5fcompile_5fstring',['is_compile_string',['../structfmt_1_1v5_1_1is__compile__string.html',1,'fmt::v5']]], + ['is_5fconstructible',['is_constructible',['../structfmt_1_1v5_1_1is__constructible.html',1,'fmt::v5']]], + ['is_5fcontiguous',['is_contiguous',['../structfmt_1_1v5_1_1is__contiguous.html',1,'fmt::v5']]], + ['is_5fcontiguous_3c_20internal_3a_3abasic_5fbuffer_3c_20char_20_3e_20_3e',['is_contiguous< internal::basic_buffer< Char > >',['../structfmt_1_1v5_1_1is__contiguous_3_01internal_1_1basic__buffer_3_01_char_01_4_01_4.html',1,'fmt::v5']]], + ['is_5fcontiguous_3c_20std_3a_3abasic_5fstring_3c_20char_20_3e_20_3e',['is_contiguous< std::basic_string< Char > >',['../structfmt_1_1v5_1_1is__contiguous_3_01std_1_1basic__string_3_01_char_01_4_01_4.html',1,'fmt::v5']]], + ['is_5finteger',['is_integer',['../structfmt_1_1v5_1_1internal_1_1is__integer.html',1,'fmt::v5::internal']]], + ['is_5fintegral',['is_integral',['../classfmt_1_1v5_1_1basic__format__arg.html#a805469bff2286c05dcc69e9e7f10b3b2',1,'fmt::v5::basic_format_arg::is_integral()'],['../namespacefmt_1_1v5_1_1internal.html#a9310b701f90ea156eb6abd7aa4f199cb',1,'fmt::v5::internal::is_integral()']]], + ['is_5flike_5fstd_5fstring',['is_like_std_string',['../classfmt_1_1v5_1_1internal_1_1is__like__std__string.html',1,'fmt::v5::internal']]], + ['is_5flike_5fstd_5fstring_3c_20fmt_3a_3abasic_5fstring_5fview_3c_20char_20_3e_20_3e',['is_like_std_string< fmt::basic_string_view< Char > >',['../structfmt_1_1v5_1_1internal_1_1is__like__std__string_3_01fmt_1_1basic__string__view_3_01_char_01_4_01_4.html',1,'fmt::v5::internal']]], + ['is_5fname_5fstart',['is_name_start',['../namespacefmt_1_1v5_1_1internal.html#aa601e9520a59e9c38b71eba828ebd063',1,'fmt::v5::internal']]], + ['is_5fnegative',['is_negative',['../namespacefmt_1_1v5_1_1internal.html#a58d822138c8882afb5559c4b1d7729cc',1,'fmt::v5::internal::is_negative(T value)'],['../namespacefmt_1_1v5_1_1internal.html#a249ca42d663b664f5b0a78850325d02c',1,'fmt::v5::internal::is_negative(T)']]], + ['is_5foutput_5fiterator',['is_output_iterator',['../classfmt_1_1v5_1_1internal_1_1is__output__iterator.html',1,'fmt::v5::internal']]], + ['is_5frange',['is_range',['../structfmt_1_1v5_1_1is__range.html',1,'fmt::v5']]], + ['is_5frange_5f',['is_range_',['../structfmt_1_1v5_1_1internal_1_1is__range__.html',1,'fmt::v5::internal']]], + ['is_5frange_5f_3c_20t_2c_20typename_20std_3a_3aconditional_3c_20false_2c_20conditional_5fhelper_3c_20decltype_28internal_3a_3adeclval_3c_20t_20_3e_28_29_2ebegin_28_29_29_2c_20decltype_28internal_3a_3adeclval_3c_20t_20_3e_28_29_2eend_28_29_29_3e_2c_20void_20_3e_3a_3atype_20_3e',['is_range_< T, typename std::conditional< false, conditional_helper< decltype(internal::declval< T >().begin()), decltype(internal::declval< T >().end())>, void >::type >',['../structfmt_1_1v5_1_1internal_1_1is__range___3_01_t_00_01typename_01std_1_1conditional_3_01false_00543cac082ebea7893cc13a711f6eb2b.html',1,'fmt::v5::internal']]], + ['is_5frgb',['is_rgb',['../structfmt_1_1v5_1_1internal_1_1color__type.html#a56ecbd5d058a106670bf111154651c25',1,'fmt::v5::internal::color_type']]], + ['is_5fstreamable',['is_streamable',['../classfmt_1_1v5_1_1internal_1_1is__streamable.html',1,'fmt::v5::internal']]], + ['is_5fstring',['is_string',['../structfmt_1_1v5_1_1internal_1_1is__string.html',1,'fmt::v5::internal']]], + ['is_5fstring_3c_20const_20std_3a_3afile_20_2a_20_3e',['is_string< const std::FILE * >',['../structfmt_1_1v5_1_1internal_1_1is__string_3_01const_01std_1_1_f_i_l_e_01_5_01_4.html',1,'fmt::v5::internal']]], + ['is_5fstring_3c_20std_3a_3afile_20_2a_20_3e',['is_string< std::FILE * >',['../structfmt_1_1v5_1_1internal_1_1is__string_3_01std_1_1_f_i_l_e_01_5_01_4.html',1,'fmt::v5::internal']]], + ['is_5ftuple_5flike',['is_tuple_like',['../structfmt_1_1v5_1_1is__tuple__like.html',1,'fmt::v5']]], + ['is_5ftuple_5flike_5f',['is_tuple_like_',['../classfmt_1_1v5_1_1internal_1_1is__tuple__like__.html',1,'fmt::v5::internal']]], + ['is_5funpacked_5fbit',['is_unpacked_bit',['../namespacefmt_1_1v5_1_1internal.html#a31503adb2a84c0005790ee748fb41579a7d2448b2825c27c48270a23cf67055d9',1,'fmt::v5::internal']]], + ['is_5fzero_5fint',['is_zero_int',['../classfmt_1_1v5_1_1internal_1_1is__zero__int.html',1,'fmt::v5::internal']]], + ['isinf',['isinf',['../namespacefmt_1_1v5_1_1internal.html#a8f8fa329c4f6a82b5f4b07e2624b92f6',1,'fmt::v5::internal']]], + ['isinfinity',['isinfinity',['../classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html#ab87acbb0e3b785468702511d2ba20c43',1,'std::numeric_limits< fmt::internal::dummy_int >']]], + ['isnan',['isnan',['../namespacefmt_1_1v5_1_1internal.html#a76566374391410329d8c41e612b24101',1,'fmt::v5::internal']]], + ['isnotanumber',['isnotanumber',['../classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html#a66bfe9a9db1167477806c1973002e941',1,'std::numeric_limits< fmt::internal::dummy_int >']]], + ['it_5fcategory',['it_category',['../structfmt_1_1v5_1_1internal_1_1it__category.html',1,'fmt::v5::internal']]], + ['it_5fcategory_3c_20it_20_3e',['it_category< It >',['../structfmt_1_1v5_1_1internal_1_1it__category.html',1,'fmt::v5::internal']]], + ['it_5fcategory_3c_20t_20_2a_20_3e',['it_category< T * >',['../structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html',1,'fmt::v5::internal']]], + ['it_5fcategory_3c_20t_2c_20typename_20void_5f_3c_20typename_20t_3a_3aiterator_5fcategory_20_3e_3a_3atype_20_3e',['it_category< T, typename void_< typename T::iterator_category >::type >',['../structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html',1,'fmt::v5::internal']]], + ['italic',['italic',['../namespacefmt_1_1v5.html#a3c18bfe3f941ca2b94688cb6d54f1ceca030c5b6d1e5715105943ac111d9671bf',1,'fmt::v5']]], + ['item_5ftype',['item_type',['../classspdlog_1_1details_1_1circular__q.html#a50926d98e20ee48b70d4b66d99895e97',1,'spdlog::details::circular_q::item_type()'],['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#abb22a6f25c5fd96af5b163dc93eec397',1,'spdlog::details::mpmc_blocking_queue::item_type()'],['../classspdlog_1_1details_1_1thread__pool.html#a997d954a51e8fa8aa92071d1a9c08536',1,'spdlog::details::thread_pool::item_type()']]], + ['iterator',['iterator',['../classfmt_1_1v5_1_1basic__string__view.html#a905e99019eff225d448868d9470dac4c',1,'fmt::v5::basic_string_view::iterator()'],['../classfmt_1_1v5_1_1basic__parse__context.html#a2061e0733dc01aafbd2180742ce3e420',1,'fmt::v5::basic_parse_context::iterator()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#aa88412259a118ed5ac97e9bd1cee92e3',1,'fmt::v5::internal::context_base::iterator()'],['../classfmt_1_1v5_1_1output__range.html#a001ad2356c56ce8aa89a3e89487ce8d8',1,'fmt::v5::output_range::iterator()'],['../classfmt_1_1v5_1_1arg__formatter.html#ae170841fcffcd93c9d342f7898f9aef9',1,'fmt::v5::arg_formatter::iterator()'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a43e1b1fba0aa288fd2b33c85eaad5180',1,'fmt::v5::internal::arg_formatter_base::iterator()'],['../classfmt_1_1v5_1_1basic__writer.html#a22d41003c543a4de0c8052ee8f50bd92',1,'fmt::v5::basic_writer::iterator()']]], + ['iterator_5fcategory',['iterator_category',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#affb43cc051a4c3adef65ef36096724dc',1,'fmt::v5::internal::counting_iterator::iterator_category()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a8abc6756a3aee78332053104ecfce661',1,'fmt::v5::internal::truncating_iterator_base::iterator_category()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a87dcc701162ca01725c3702f46aca184',1,'fmt::v5::internal::null_terminating_iterator::iterator_category()']]], + ['ivory',['ivory',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ac55c68625ca1da0e1d4a922fc8cb373e',1,'fmt::v5']]], + ['make_5farg',['make_arg',['../classfmt_1_1v5_1_1basic__format__arg.html#a7d2678b3c4612757b6f1dcea4d284570',1,'fmt::v5::basic_format_arg']]] ]; diff --git a/docs/search/all_b.js b/docs/search/all_b.js index 9cf0cd5..dd095ec 100644 --- a/docs/search/all_b.js +++ b/docs/search/all_b.js @@ -1,50 +1,4 @@ var searchData= [ - ['kackpack',['kAckPack',['../namespacelivox.html#a6941cc71243dd1b067c904fdd91bfb61a9686d537f806d748aece1f03b523d50e',1,'livox']]], - ['kbroadcastcodesize',['kBroadcastCodeSize',['../livox__def_8h.html#ae33a3fcc6acc4bc60ed45b34e5536922',1,'livox_def.h']]], - ['kcachesize',['kCacheSize',['../namespacelivox.html#aa902d8a50576dcdede27023c03f65747',1,'livox']]], - ['kdelayack',['kDelayAck',['../namespacelivox.html#afeebe28eda25022afdc079c1aaff209caa59408252d4020dffb9cd35aa5917337',1,'livox']]], - ['kdevicetypehub',['kDeviceTypeHub',['../livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a106cbd246757e6e662cd7f6a9674cc8c',1,'livox_def.h']]], - ['kdevicetypelidarhorizon',['kDeviceTypeLidarHorizon',['../livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a357d13b3ac8641a1347832e70ce539ea',1,'livox_def.h']]], - ['kdevicetypelidarmid40',['kDeviceTypeLidarMid40',['../livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a5659e6d47fc3ee0a045210d3e9c4e3f9',1,'livox_def.h']]], - ['kdevicetypelidartele',['kDeviceTypeLidarTele',['../livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9ac7ac7fdbfd52ad17b275cef4c74453f3',1,'livox_def.h']]], - ['keventconnect',['kEventConnect',['../livox__def_8h.html#a52a002900b5c97625b3689e34474f1afa97b4d4b175f48ab334cf7b978daf3592',1,'livox_def.h']]], - ['keventdisconnect',['kEventDisconnect',['../livox__def_8h.html#a52a002900b5c97625b3689e34474f1afab9cdd9da2a23827a576f2a10cc58321c',1,'livox_def.h']]], - ['keventstatechange',['kEventStateChange',['../livox__def_8h.html#a52a002900b5c97625b3689e34474f1afaabfb2db81b1abc1ee7e6e7b17eea2462',1,'livox_def.h']]], - ['khaki',['khaki',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a12284913bfe16bebd8bc809573f0387a',1,'fmt::v5']]], - ['kind',['kind',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a8b82cfcb68b97554142d75a2d71afbcd',1,'fmt::v5::internal::arg_ref::kind()'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69',1,'fmt::v5::internal::arg_ref::Kind()']]], - ['klidarfeaturenone',['kLidarFeatureNone',['../livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8a4761167dcadd1bb7be630108aaab16fd',1,'livox_def.h']]], - ['klidarfeaturerainfog',['kLidarFeatureRainFog',['../livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8a8438a46b37b107e81e1a352dc019b310',1,'livox_def.h']]], - ['klidarmodenormal',['kLidarModeNormal',['../livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a4ae22c21c0c2729278af985d7b681595',1,'livox_def.h']]], - ['klidarmodepowersaving',['kLidarModePowerSaving',['../livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a0feb50e1a30f36722f358ec5a1558729',1,'livox_def.h']]], - ['klidarmodestandby',['kLidarModeStandby',['../livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a652a398f78f41ee73bb6e5748b530fdd',1,'livox_def.h']]], - ['klidarsdk',['kLidarSdk',['../namespacelivox.html#ab97b5b082d8b27d02cd14daeb8c9807caa1131d8950d9c7527cafd32ececda15d',1,'livox']]], - ['klidarstateerror',['kLidarStateError',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea4b0e725d05bcebe782dc12fccc822e4f',1,'livox_def.h']]], - ['klidarstateinit',['kLidarStateInit',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea7ec237abe09cd5a1001860a87503badb',1,'livox_def.h']]], - ['klidarstatenormal',['kLidarStateNormal',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea174d099cbeaa59a1ef150697abadabf6',1,'livox_def.h']]], - ['klidarstatepowersaving',['kLidarStatePowerSaving',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea30c45106b02a2fa12103f190fa63cdb1',1,'livox_def.h']]], - ['klidarstatestandby',['kLidarStateStandBy',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049eabf7c7959a9171c1f745281b038f989be',1,'livox_def.h']]], - ['klidarstateunknown',['kLidarStateUnknown',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea9d31303d3daa158091fef2e03662cfa5',1,'livox_def.h']]], - ['kmaxlidarcount',['kMaxLidarCount',['../livox__def_8h.html#aa9da728e6344627dcc138d13623d6866',1,'livox_def.h']]], - ['kmovecachelimit',['kMoveCacheLimit',['../namespacelivox.html#a4db2ee1c995aba81900420b7e4312bc1',1,'livox']]], - ['kmsgpack',['kMsgPack',['../namespacelivox.html#a6941cc71243dd1b067c904fdd91bfb61a195c6286a980061276877c88f4347a65',1,'livox']]], - ['kneedack',['kNeedAck',['../namespacelivox.html#afeebe28eda25022afdc079c1aaff209ca0bfce7eeeb94e9fa66f051de4e0f8889',1,'livox']]], - ['knoneed',['kNoNeed',['../namespacelivox.html#afeebe28eda25022afdc079c1aaff209ca04b4a83f4d5f6af89e52b2d9cfadbb24',1,'livox']]], - ['kparsefail',['kParseFail',['../namespacelivox.html#aa0c7b20b2866108c5e232ff70bea4820a397580937b025c53bf21690ebeb11e7a',1,'livox']]], - ['kparsesuccess',['kParseSuccess',['../namespacelivox.html#aa0c7b20b2866108c5e232ff70bea4820a336a54b375b03cc744f69189037af991',1,'livox']]], - ['kprotocolundef',['kProtocolUndef',['../namespacelivox.html#ab97b5b082d8b27d02cd14daeb8c9807ca892dd3366a89802324e48987b8cb34e1',1,'livox']]], - ['krequestpack',['kRequestPack',['../namespacelivox.html#a6941cc71243dd1b067c904fdd91bfb61aac306c9b5938dac53c45dfc4fcc9c132',1,'livox']]], - ['krsvd1',['kRsvd1',['../namespacelivox.html#ab97b5b082d8b27d02cd14daeb8c9807ca74908aea2df12e49a212f0b00bae1b25',1,'livox']]], - ['kstatusfailure',['kStatusFailure',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6ae1e45f70424eb522bbf56e93521c6d9f',1,'livox_def.h']]], - ['kstatusnotconnected',['kStatusNotConnected',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a7aeebb6d0579967928c56f6a8518e762',1,'livox_def.h']]], - ['kstatusnotenoughmemory',['kStatusNotEnoughMemory',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6ae5eb7e1939530970c3b4ac7cdd356ac7',1,'livox_def.h']]], - ['kstatusnotsupported',['kStatusNotSupported',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a83129665de707a6a0c0bf91eb530f7ac',1,'livox_def.h']]], - ['kstatussuccess',['kStatusSuccess',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a3fe37e905ea4dd050257ca289ee18428',1,'livox_def.h']]], - ['kstatustimeout',['kStatusTimeout',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6aecf83ff5fe86360ac27d110e8a0f8f9b',1,'livox_def.h']]], - ['ktimestamptypenosync',['kTimestampTypeNoSync',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0ab47d964982b63d19b9d170bc1c7b4cd2',1,'livox_def.h']]], - ['ktimestamptypepps',['kTimestampTypePps',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a53c343ed838f8ba6e7002fea16f54d9a',1,'livox_def.h']]], - ['ktimestamptypeppsgps',['kTimestampTypePpsGps',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a2ccaf2fd680a5793f229a6d563e3521a',1,'livox_def.h']]], - ['ktimestamptypeptp',['kTimestampTypePtp',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0aa6fa4326b2093b659e78dccf7a878dfe',1,'livox_def.h']]], - ['ktimestamptypersvd',['kTimestampTypeRsvd',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a1ca5711dfb54ac4bc92ed9ec6e44e8ba',1,'livox_def.h']]], - ['ktimestamptypeunknown',['kTimestampTypeUnknown',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a38b56c1ca1cf164a128c8030921f4bf4',1,'livox_def.h']]] + ['join',['join',['../namespacefmt_1_1v5.html#a7610f57d82d6ebfb0869d7583fe13264',1,'fmt::v5::join(It begin, It end, string_view sep)'],['../namespacefmt_1_1v5.html#ad376a5124e6d05579d3360db349aec39',1,'fmt::v5::join(It begin, It end, wstring_view sep)']]] ]; diff --git a/docs/search/all_c.js b/docs/search/all_c.js index ff94f64..9cf0cd5 100644 --- a/docs/search/all_c.js +++ b/docs/search/all_c.js @@ -1,86 +1,50 @@ var searchData= [ - ['last_5ferr_5ftime_5f',['last_err_time_',['../classspdlog_1_1logger.html#a00677a369b642aec9e8428374ee09df6',1,'spdlog::logger']]], - ['last_5finteger_5ftype',['last_integer_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a3db2e8053c230033779933d7836846c2',1,'fmt::v5::internal']]], - ['last_5fnumeric_5ftype',['last_numeric_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a1956769baf47b0a96768474f1cc5135c',1,'fmt::v5::internal']]], - ['lavender',['lavender',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a153fa52654465ad67f045dc293f3b16e',1,'fmt::v5']]], - ['lavender_5fblush',['lavender_blush',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad557e5da14dcbe24b5b54c33bd8d15ee',1,'fmt::v5']]], - ['lawn_5fgreen',['lawn_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4109165af5329dd59f9bd749c5a55846',1,'fmt::v5']]], - ['left',['left',['../structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942ea44a15fd66c1b0c03c28c995af8b4e029',1,'spdlog::details::padding_info']]], - ['lemon_5fchiffon',['lemon_chiffon',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a8c86fbdd95cf7d3a3bf22d7bd34a3e99',1,'fmt::v5']]], - ['level',['level',['../structspdlog_1_1details_1_1log__msg.html#a4142f4d66140a1ea24053311ebea5706',1,'spdlog::details::log_msg::level()'],['../structspdlog_1_1details_1_1async__msg.html#a3e2008e47f70761ff3240ab56a3be370',1,'spdlog::details::async_msg::level()'],['../classspdlog_1_1logger.html#a20dc8198d08c98f84ae10be635108bef',1,'spdlog::logger::level()'],['../classspdlog_1_1sinks_1_1sink.html#ae59ca2b418c5cdfed1c04e49a444be1c',1,'spdlog::sinks::sink::level()']]], - ['level_5f',['level_',['../classspdlog_1_1logger.html#af167b5b45a369b3cef019b40a87ed71d',1,'spdlog::logger::level_()'],['../classspdlog_1_1sinks_1_1sink.html#a435da07b59e1165b38d53635cdada30a',1,'spdlog::sinks::sink::level_()']]], - ['level_5fenum',['level_enum',['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8b',1,'spdlog::level']]], - ['level_5fformatter',['level_formatter',['../classspdlog_1_1details_1_1level__formatter.html',1,'spdlog::details::level_formatter'],['../classspdlog_1_1details_1_1level__formatter.html#a76ae7447054b8943fede15d0b64f8603',1,'spdlog::details::level_formatter::level_formatter()']]], - ['level_5fhasher',['level_hasher',['../namespacespdlog_1_1level.html#add7f1cc7c1914c6f6a6773cfbd1bb997',1,'spdlog::level']]], - ['level_5fstring_5fviews',['level_string_views',['../namespacespdlog_1_1level.html#ae7c510cd37fa5221221eb91f03a98655',1,'spdlog::level']]], - ['level_5ft',['level_t',['../namespacespdlog.html#a8585bf495310a6ce695191739351709b',1,'spdlog']]], - ['lg',['lg',['../namespacefmt_1_1v5_1_1internal.html#a53dd0b9003b32d9c4c07d008b8a1bebf',1,'fmt::v5::internal']]], - ['lidar_5fcfg_5flist',['lidar_cfg_list',['../struct_hub_rain_fog_suppress_request.html#ab24efdb9e34e6d09edf39526225b0e15',1,'HubRainFogSuppressRequest']]], - ['lidarfeature',['LidarFeature',['../livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8',1,'livox_def.h']]], - ['lidargetextrinsicparameter',['LidarGetExtrinsicParameter',['../livox__sdk_8h.html#ae044161cdd56cb307464944705ed97eb',1,'livox_sdk.h']]], - ['lidargetextrinsicparametercallback',['LidarGetExtrinsicParameterCallback',['../livox__sdk_8h.html#ad86bba656ccf786f0e71a7080c7869b2',1,'livox_sdk.h']]], - ['lidargetextrinsicparameterresponse',['LidarGetExtrinsicParameterResponse',['../struct_lidar_get_extrinsic_parameter_response.html',1,'']]], - ['lidarmode',['LidarMode',['../livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84',1,'livox_def.h']]], - ['lidarmoderequestitem',['LidarModeRequestItem',['../struct_lidar_mode_request_item.html',1,'']]], - ['lidarrainfogsuppress',['LidarRainFogSuppress',['../livox__sdk_8h.html#a7597933a60d4ae38125ea2fa346524a9',1,'livox_sdk.h']]], - ['lidarsetextrinsicparameter',['LidarSetExtrinsicParameter',['../livox__sdk_8h.html#a32a53686c361c645ce4dd83f411e80ff',1,'livox_sdk.h']]], - ['lidarsetextrinsicparameterrequest',['LidarSetExtrinsicParameterRequest',['../struct_lidar_set_extrinsic_parameter_request.html',1,'']]], - ['lidarsetmode',['LidarSetMode',['../livox__sdk_8h.html#a1f3b08665a78e2e662ecd530a292d768',1,'livox_sdk.h']]], - ['lidarstartsampling',['LidarStartSampling',['../livox__sdk_8h.html#afd39ba9dd082188cea2b7d5003a81cd7',1,'livox_sdk.h']]], - ['lidarstate',['LidarState',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049e',1,'livox_def.h']]], - ['lidarstateitem',['LidarStateItem',['../struct_lidar_state_item.html',1,'']]], - ['lidarstopsampling',['LidarStopSampling',['../livox__sdk_8h.html#a649040b7f9fc62d721c4deb8951b8b08',1,'livox_sdk.h']]], - ['light_5fblue',['light_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a61a2783898a9df78bb27edc33f768e6e',1,'fmt::v5']]], - ['light_5fcoral',['light_coral',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a58b516fe6ce07478e0fdfe29e18d62fe',1,'fmt::v5']]], - ['light_5fcyan',['light_cyan',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4eece7cf37c9db41ed9e016e471fcf2f',1,'fmt::v5']]], - ['light_5fgolden_5frod_5fyellow',['light_golden_rod_yellow',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad43a591d2b25a4afe584e778d2d8cdbd',1,'fmt::v5']]], - ['light_5fgray',['light_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a770e427f6a16eb64e2ece9585ba9d193',1,'fmt::v5']]], - ['light_5fgreen',['light_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ac10bddadd1786a8a12f96ae7db5bafb8',1,'fmt::v5']]], - ['light_5fpink',['light_pink',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a617e570ec3920b38e651cf3258d88e47',1,'fmt::v5']]], - ['light_5fsalmon',['light_salmon',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a62c383c02f7de80e5edcbc4f21836c7c',1,'fmt::v5']]], - ['light_5fsea_5fgreen',['light_sea_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a98cf43657dbee14ae37662526484911d',1,'fmt::v5']]], - ['light_5fsky_5fblue',['light_sky_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a67d12da6232b36c362a6437332da50bf',1,'fmt::v5']]], - ['light_5fslate_5fgray',['light_slate_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0abca51d13e304e17f34a3e7c598884ae8',1,'fmt::v5']]], - ['light_5fsteel_5fblue',['light_steel_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ab2fb12c1d8469e020be7d77d0d9cf2dd',1,'fmt::v5']]], - ['light_5fyellow',['light_yellow',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a743b7827c281254e45c305696344535b',1,'fmt::v5']]], - ['lime',['lime',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a67c0ecaf5a1b782b11146e9fbe80f016',1,'fmt::v5']]], - ['lime_5fgreen',['lime_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a68db9bf9d92a944f0138e197b7b02fc2',1,'fmt::v5']]], - ['limit_5f',['limit_',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a24832c279c6143d905912d3181872f44',1,'fmt::v5::internal::truncating_iterator_base']]], - ['line',['line',['../structspdlog_1_1source__loc.html#a1742569c23cc7e3a01fa6de6f43cc60f',1,'spdlog::source_loc']]], - ['line_5fsize',['line_size',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#aae6b62746bc315b2927199438ba2f87a',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]], - ['linen',['linen',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aa6ab62e9da89b20d720c70602624bfc2',1,'fmt::v5']]], - ['livox',['livox',['../namespacelivox.html',1,'']]], - ['livox_5fdef_2eh',['livox_def.h',['../livox__def_8h.html',1,'']]], - ['livox_5fsdk_2eh',['livox_sdk.h',['../livox__sdk_8h.html',1,'']]], - ['livox_5fsdk_5fmajor_5fversion',['LIVOX_SDK_MAJOR_VERSION',['../livox__def_8h.html#abd00f87dca580f94be328c5b51200857',1,'livox_def.h']]], - ['livox_5fsdk_5fminor_5fversion',['LIVOX_SDK_MINOR_VERSION',['../livox__def_8h.html#a8a4322cc238616252f82dac9b694b6fa',1,'livox_def.h']]], - ['livox_5fsdk_5fpatch_5fversion',['LIVOX_SDK_PATCH_VERSION',['../livox__def_8h.html#a434b5d6c9f2fade81081831aa224038e',1,'livox_def.h']]], - ['livoxethpacket',['LivoxEthPacket',['../struct_livox_eth_packet.html',1,'']]], - ['livoxpoint',['LivoxPoint',['../struct_livox_point.html',1,'']]], - ['livoxrawpoint',['LivoxRawPoint',['../struct_livox_raw_point.html',1,'']]], - ['livoxsdkversion',['LivoxSdkVersion',['../struct_livox_sdk_version.html',1,'']]], - ['load',['load',['../structspdlog_1_1details_1_1null__atomic__int.html#a6b7a8489e34705db8d07b44f204a7c2f',1,'spdlog::details::null_atomic_int']]], - ['local',['local',['../namespacespdlog.html#ad598fbd8338772e66ae09e8723a07cedaf5ddaf0ca7929578b408c909429f68f2',1,'spdlog']]], - ['locale',['locale',['../classfmt_1_1v5_1_1internal_1_1locale__ref.html#a0a09223e17db306b813d8b07b4b344fc',1,'fmt::v5::internal::locale_ref::locale()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#acd179b817cfad89a6bca77f4b07401fe',1,'fmt::v5::internal::context_base::locale()']]], - ['locale_2eh',['locale.h',['../locale_8h.html',1,'']]], - ['locale_5fref',['locale_ref',['../classfmt_1_1v5_1_1internal_1_1locale__ref.html',1,'fmt::v5::internal::locale_ref'],['../classfmt_1_1v5_1_1internal_1_1locale__ref.html#ae4ee3bc5f9b88dc96ece438fcbc10c22',1,'fmt::v5::internal::locale_ref::locale_ref()'],['../classfmt_1_1v5_1_1internal_1_1locale__ref.html#ae3997bdc7859ad4d18cbc86a702b61d7',1,'fmt::v5::internal::locale_ref::locale_ref(const Locale &loc)']]], - ['localtime',['localtime',['../namespacespdlog_1_1details_1_1os.html#a9ed2501e3a0bf17176ac848e0a67a148',1,'spdlog::details::os::localtime(const std::time_t &time_tt) noexcept'],['../namespacespdlog_1_1details_1_1os.html#af8b1e6155c2975abfd696ffb5fd9e7dd',1,'spdlog::details::os::localtime() noexcept'],['../namespacefmt_1_1v5.html#a50024f1e98f3fd7af41fc631dba4db22',1,'fmt::v5::localtime()']]], - ['localtime_5fr',['localtime_r',['../namespacefmt_1_1v5_1_1internal.html#a86e43d2c941941591a80c4220f01cec2',1,'fmt::v5::internal']]], - ['localtime_5fs',['localtime_s',['../namespacefmt_1_1v5_1_1internal.html#aaf3759998f3d75d929560c53a29da8c3',1,'fmt::v5::internal']]], - ['lock',['lock',['../structspdlog_1_1details_1_1null__mutex.html#acaccd5741a4d60756a2c23018f670b9a',1,'spdlog::details::null_mutex']]], - ['log',['log',['../classspdlog_1_1logger.html#a1e4b2c515490efb5456665a9a64382d9',1,'spdlog::logger::log(level::level_enum lvl, const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#a50417cea5f81704cd4800aaafa944bc5',1,'spdlog::logger::log(source_loc loc, level::level_enum lvl, const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#ae59d1c2d5b3a4cc4807534c73b46f297',1,'spdlog::logger::log(level::level_enum lvl, const char *msg)'],['../classspdlog_1_1logger.html#abf7d5c94e0c295aa2e55e1139b787a57',1,'spdlog::logger::log(source_loc loc, level::level_enum lvl, const char *msg)'],['../classspdlog_1_1logger.html#a16d3d178ac86ea71b8a0becfca0c5449',1,'spdlog::logger::log(level::level_enum lvl, const T &)'],['../classspdlog_1_1logger.html#a4ad269959d007dcbe38cdb3c4e70d85b',1,'spdlog::logger::log(source_loc loc, level::level_enum lvl, const T &)'],['../classspdlog_1_1logger.html#a4ad269959d007dcbe38cdb3c4e70d85b',1,'spdlog::logger::log(source_loc loc, level::level_enum lvl, const T &)'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a042a6ab886430570095737e1984e7c6e',1,'spdlog::sinks::ansicolor_sink::log()'],['../classspdlog_1_1sinks_1_1base__sink.html#a6a72602ffe60fdfe6a3cbfbecca54bb0',1,'spdlog::sinks::base_sink::log()'],['../classspdlog_1_1sinks_1_1sink.html#a51d8f34ad79064e0dc13c6013236e427',1,'spdlog::sinks::sink::log()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#adda1fffa1daf4565f72b3e94734d984a',1,'spdlog::sinks::stdout_sink::log()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a64d98363a05d1a7a4f295f6de1b5cec1',1,'spdlog::sinks::wincolor_sink::log()'],['../namespacespdlog.html#acc4ad5305b408c41a60540b0e2a8aa85',1,'spdlog::log(source_loc source, level::level_enum lvl, const char *fmt, const Args &... args)'],['../namespacespdlog.html#a7ad1ad069c196a042cb191b05d27167a',1,'spdlog::log(level::level_enum lvl, const char *fmt, const Args &... args)'],['../namespacespdlog.html#aee9d401c7cb3cd8538a139af836c5ec5',1,'spdlog::log(level::level_enum lvl, const T &msg)'],['../namespacespdlog_1_1details.html#a22274995cf879a5d0a08d1f7513ee4fbadc1d71bbb5c4d2a5e936db79ef10c19f',1,'spdlog::details::log()']]], - ['log_5fclock',['log_clock',['../namespacespdlog.html#a173dd7064323e4807d720eabcc95fc73',1,'spdlog']]], - ['log_5ferr_5fhandler',['log_err_handler',['../namespacespdlog.html#ad3ed787a29f245c833ef66faf48036e2',1,'spdlog']]], - ['log_5fmsg',['log_msg',['../structspdlog_1_1details_1_1log__msg.html',1,'spdlog::details::log_msg'],['../structspdlog_1_1details_1_1log__msg.html#af08273268386a97a4e4a02505f830318',1,'spdlog::details::log_msg::log_msg(source_loc loc, const std::string *loggers_name, level::level_enum lvl, string_view_t view)'],['../structspdlog_1_1details_1_1log__msg.html#aed741a89e884b8f51db4fd6364402e7a',1,'spdlog::details::log_msg::log_msg(const std::string *loggers_name, level::level_enum lvl, string_view_t view)'],['../structspdlog_1_1details_1_1log__msg.html#ad3ff125f04a5854bf78f6c359af5183a',1,'spdlog::details::log_msg::log_msg(const log_msg &other)=default']]], - ['log_5fmsg_2eh',['log_msg.h',['../log__msg_8h.html',1,'']]], - ['logger',['logger',['../classspdlog_1_1logger.html',1,'spdlog::logger'],['../classspdlog_1_1logger.html#a5d3b321a0319e9b8b27bf04f206a9900',1,'spdlog::logger::logger(std::string name, sink_ptr single_sink)'],['../classspdlog_1_1logger.html#af1f2f69f6bbbe9eb23cf428d66d20f70',1,'spdlog::logger::logger(std::string name, sinks_init_list sinks)'],['../classspdlog_1_1logger.html#a414da79baaad89ba6ffe0e738027d234',1,'spdlog::logger::logger(std::string name, It begin, It end)'],['../classspdlog_1_1logger.html#aa6074d763b0df4e7d16ccf7d307a3938',1,'spdlog::logger::logger(const logger &)=delete']]], - ['logger_2eh',['logger.h',['../logger_8h.html',1,'']]], - ['logger_5fimpl_2eh',['logger_impl.h',['../logger__impl_8h.html',1,'']]], - ['logger_5fname',['logger_name',['../structspdlog_1_1details_1_1log__msg.html#a0aacbf01e2a67660d328fa2080d55def',1,'spdlog::details::log_msg']]], - ['long_5fdouble_5ftype',['long_double_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13ae9e4c238a7992d284d52befd618886ef',1,'fmt::v5::internal']]], - ['long_5fdouble_5fvalue',['long_double_value',['../classfmt_1_1v5_1_1internal_1_1value.html#abf10ba105cb5ebb65156465cf9126857',1,'fmt::v5::internal::value']]], - ['long_5flong_5ftype',['long_long_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13ae7a9e0deca92ad9278f3def34dafd2c8',1,'fmt::v5::internal']]], - ['long_5flong_5fvalue',['long_long_value',['../classfmt_1_1v5_1_1internal_1_1value.html#a0c125f0f450b4afb7f90759397a65086',1,'fmt::v5::internal::value']]], - ['long_5ftype',['long_type',['../namespacefmt_1_1v5_1_1internal.html#a8a71644ac0a6fba4454f549c1f3f0b2f',1,'fmt::v5::internal']]] + ['kackpack',['kAckPack',['../namespacelivox.html#a6941cc71243dd1b067c904fdd91bfb61a9686d537f806d748aece1f03b523d50e',1,'livox']]], + ['kbroadcastcodesize',['kBroadcastCodeSize',['../livox__def_8h.html#ae33a3fcc6acc4bc60ed45b34e5536922',1,'livox_def.h']]], + ['kcachesize',['kCacheSize',['../namespacelivox.html#aa902d8a50576dcdede27023c03f65747',1,'livox']]], + ['kdelayack',['kDelayAck',['../namespacelivox.html#afeebe28eda25022afdc079c1aaff209caa59408252d4020dffb9cd35aa5917337',1,'livox']]], + ['kdevicetypehub',['kDeviceTypeHub',['../livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a106cbd246757e6e662cd7f6a9674cc8c',1,'livox_def.h']]], + ['kdevicetypelidarhorizon',['kDeviceTypeLidarHorizon',['../livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a357d13b3ac8641a1347832e70ce539ea',1,'livox_def.h']]], + ['kdevicetypelidarmid40',['kDeviceTypeLidarMid40',['../livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9a5659e6d47fc3ee0a045210d3e9c4e3f9',1,'livox_def.h']]], + ['kdevicetypelidartele',['kDeviceTypeLidarTele',['../livox__def_8h.html#ad258d4c51629346fceac4679b3209ad9ac7ac7fdbfd52ad17b275cef4c74453f3',1,'livox_def.h']]], + ['keventconnect',['kEventConnect',['../livox__def_8h.html#a52a002900b5c97625b3689e34474f1afa97b4d4b175f48ab334cf7b978daf3592',1,'livox_def.h']]], + ['keventdisconnect',['kEventDisconnect',['../livox__def_8h.html#a52a002900b5c97625b3689e34474f1afab9cdd9da2a23827a576f2a10cc58321c',1,'livox_def.h']]], + ['keventstatechange',['kEventStateChange',['../livox__def_8h.html#a52a002900b5c97625b3689e34474f1afaabfb2db81b1abc1ee7e6e7b17eea2462',1,'livox_def.h']]], + ['khaki',['khaki',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a12284913bfe16bebd8bc809573f0387a',1,'fmt::v5']]], + ['kind',['kind',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a8b82cfcb68b97554142d75a2d71afbcd',1,'fmt::v5::internal::arg_ref::kind()'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69',1,'fmt::v5::internal::arg_ref::Kind()']]], + ['klidarfeaturenone',['kLidarFeatureNone',['../livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8a4761167dcadd1bb7be630108aaab16fd',1,'livox_def.h']]], + ['klidarfeaturerainfog',['kLidarFeatureRainFog',['../livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8a8438a46b37b107e81e1a352dc019b310',1,'livox_def.h']]], + ['klidarmodenormal',['kLidarModeNormal',['../livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a4ae22c21c0c2729278af985d7b681595',1,'livox_def.h']]], + ['klidarmodepowersaving',['kLidarModePowerSaving',['../livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a0feb50e1a30f36722f358ec5a1558729',1,'livox_def.h']]], + ['klidarmodestandby',['kLidarModeStandby',['../livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84a652a398f78f41ee73bb6e5748b530fdd',1,'livox_def.h']]], + ['klidarsdk',['kLidarSdk',['../namespacelivox.html#ab97b5b082d8b27d02cd14daeb8c9807caa1131d8950d9c7527cafd32ececda15d',1,'livox']]], + ['klidarstateerror',['kLidarStateError',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea4b0e725d05bcebe782dc12fccc822e4f',1,'livox_def.h']]], + ['klidarstateinit',['kLidarStateInit',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea7ec237abe09cd5a1001860a87503badb',1,'livox_def.h']]], + ['klidarstatenormal',['kLidarStateNormal',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea174d099cbeaa59a1ef150697abadabf6',1,'livox_def.h']]], + ['klidarstatepowersaving',['kLidarStatePowerSaving',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea30c45106b02a2fa12103f190fa63cdb1',1,'livox_def.h']]], + ['klidarstatestandby',['kLidarStateStandBy',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049eabf7c7959a9171c1f745281b038f989be',1,'livox_def.h']]], + ['klidarstateunknown',['kLidarStateUnknown',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049ea9d31303d3daa158091fef2e03662cfa5',1,'livox_def.h']]], + ['kmaxlidarcount',['kMaxLidarCount',['../livox__def_8h.html#aa9da728e6344627dcc138d13623d6866',1,'livox_def.h']]], + ['kmovecachelimit',['kMoveCacheLimit',['../namespacelivox.html#a4db2ee1c995aba81900420b7e4312bc1',1,'livox']]], + ['kmsgpack',['kMsgPack',['../namespacelivox.html#a6941cc71243dd1b067c904fdd91bfb61a195c6286a980061276877c88f4347a65',1,'livox']]], + ['kneedack',['kNeedAck',['../namespacelivox.html#afeebe28eda25022afdc079c1aaff209ca0bfce7eeeb94e9fa66f051de4e0f8889',1,'livox']]], + ['knoneed',['kNoNeed',['../namespacelivox.html#afeebe28eda25022afdc079c1aaff209ca04b4a83f4d5f6af89e52b2d9cfadbb24',1,'livox']]], + ['kparsefail',['kParseFail',['../namespacelivox.html#aa0c7b20b2866108c5e232ff70bea4820a397580937b025c53bf21690ebeb11e7a',1,'livox']]], + ['kparsesuccess',['kParseSuccess',['../namespacelivox.html#aa0c7b20b2866108c5e232ff70bea4820a336a54b375b03cc744f69189037af991',1,'livox']]], + ['kprotocolundef',['kProtocolUndef',['../namespacelivox.html#ab97b5b082d8b27d02cd14daeb8c9807ca892dd3366a89802324e48987b8cb34e1',1,'livox']]], + ['krequestpack',['kRequestPack',['../namespacelivox.html#a6941cc71243dd1b067c904fdd91bfb61aac306c9b5938dac53c45dfc4fcc9c132',1,'livox']]], + ['krsvd1',['kRsvd1',['../namespacelivox.html#ab97b5b082d8b27d02cd14daeb8c9807ca74908aea2df12e49a212f0b00bae1b25',1,'livox']]], + ['kstatusfailure',['kStatusFailure',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6ae1e45f70424eb522bbf56e93521c6d9f',1,'livox_def.h']]], + ['kstatusnotconnected',['kStatusNotConnected',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a7aeebb6d0579967928c56f6a8518e762',1,'livox_def.h']]], + ['kstatusnotenoughmemory',['kStatusNotEnoughMemory',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6ae5eb7e1939530970c3b4ac7cdd356ac7',1,'livox_def.h']]], + ['kstatusnotsupported',['kStatusNotSupported',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a83129665de707a6a0c0bf91eb530f7ac',1,'livox_def.h']]], + ['kstatussuccess',['kStatusSuccess',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6a3fe37e905ea4dd050257ca289ee18428',1,'livox_def.h']]], + ['kstatustimeout',['kStatusTimeout',['../livox__def_8h.html#a01965d7e5c20952c815aa140bb0c5dd6aecf83ff5fe86360ac27d110e8a0f8f9b',1,'livox_def.h']]], + ['ktimestamptypenosync',['kTimestampTypeNoSync',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0ab47d964982b63d19b9d170bc1c7b4cd2',1,'livox_def.h']]], + ['ktimestamptypepps',['kTimestampTypePps',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a53c343ed838f8ba6e7002fea16f54d9a',1,'livox_def.h']]], + ['ktimestamptypeppsgps',['kTimestampTypePpsGps',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a2ccaf2fd680a5793f229a6d563e3521a',1,'livox_def.h']]], + ['ktimestamptypeptp',['kTimestampTypePtp',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0aa6fa4326b2093b659e78dccf7a878dfe',1,'livox_def.h']]], + ['ktimestamptypersvd',['kTimestampTypeRsvd',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a1ca5711dfb54ac4bc92ed9ec6e44e8ba',1,'livox_def.h']]], + ['ktimestamptypeunknown',['kTimestampTypeUnknown',['../livox__def_8h.html#a5b99e69700d73fbb898014393e993ca0a38b56c1ca1cf164a128c8030921f4bf4',1,'livox_def.h']]] ]; diff --git a/docs/search/all_d.js b/docs/search/all_d.js index ad4319a..ff94f64 100644 --- a/docs/search/all_d.js +++ b/docs/search/all_d.js @@ -1,56 +1,86 @@ var searchData= [ - ['m_5fformatter',['M_formatter',['../classspdlog_1_1details_1_1_m__formatter.html',1,'spdlog::details::M_formatter'],['../classspdlog_1_1details_1_1m__formatter.html',1,'spdlog::details::m_formatter'],['../classspdlog_1_1details_1_1m__formatter.html#a218eb07d23a3b69557b9347eae493dc3',1,'spdlog::details::m_formatter::m_formatter()'],['../classspdlog_1_1details_1_1_m__formatter.html#a6d27aa27b0ede646701b4b5138afe4cd',1,'spdlog::details::M_formatter::M_formatter()']]], - ['magenta',['magenta',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a9a665375cbfd2c7ab4a07004df386fce',1,'spdlog::sinks::ansicolor_sink::magenta()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4c2a4a7078da0ac6733464eacfd00f86',1,'fmt::v5::magenta()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa4c2a4a7078da0ac6733464eacfd00f86',1,'fmt::v5::magenta()']]], - ['major',['major',['../struct_livox_sdk_version.html#a0099180644f0153f57b0a67f0a96d1ac',1,'LivoxSdkVersion']]], - ['make_5farg',['make_arg',['../namespacefmt_1_1v5_1_1internal.html#aeb8392ed1d3db2b0d61256627fd0ee45',1,'fmt::v5::internal::make_arg(const T &value)'],['../namespacefmt_1_1v5_1_1internal.html#a80b4b91c27453ab70741b162fb1b9ee9',1,'fmt::v5::internal::make_arg(const T &value)'],['../namespacefmt_1_1v5_1_1internal.html#a12e2ca23ef7e44381012322943cd45e4',1,'fmt::v5::internal::make_arg(const T &value)']]], - ['make_5fbackground_5fcolor',['make_background_color',['../namespacefmt_1_1v5_1_1internal.html#a56836a511849e5e52a5664b26ede9cdf',1,'fmt::v5::internal']]], - ['make_5fchecked',['make_checked',['../namespacefmt_1_1v5_1_1internal.html#a0fb9344a00e79ad8826591da20548963',1,'fmt::v5::internal']]], - ['make_5femphasis',['make_emphasis',['../namespacefmt_1_1v5_1_1internal.html#a8ef34ce57c1deb6af9b8c62f27edb49c',1,'fmt::v5::internal']]], - ['make_5fforeground_5fcolor',['make_foreground_color',['../namespacefmt_1_1v5_1_1internal.html#ae4693bb9287d6264cdbded4233e707c0',1,'fmt::v5::internal']]], - ['make_5fformat_5fargs',['make_format_args',['../namespacefmt_1_1v5.html#a99faaaf62db5189f2e36070a04fc6981',1,'fmt::v5']]], - ['make_5fformat_5fto_5fn_5fargs',['make_format_to_n_args',['../namespacefmt_1_1v5.html#a01817fdc23bf5758e9466f02e29c0bc8',1,'fmt::v5']]], - ['make_5findex_5fsequence',['make_index_sequence',['../namespacefmt_1_1v5_1_1internal.html#a1b4e06fe03b811a701e61e4edbe1489a',1,'fmt::v5::internal']]], - ['make_5finteger_5fsequence',['make_integer_sequence',['../structfmt_1_1v5_1_1internal_1_1make__integer__sequence.html',1,'fmt::v5::internal']]], - ['make_5finteger_5fsequence_3c_20t_2c_200_2c_20ns_2e_2e_2e_20_3e',['make_integer_sequence< T, 0, Ns... >',['../structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4.html',1,'fmt::v5::internal']]], - ['make_5fprintf_5fargs',['make_printf_args',['../namespacefmt_1_1v5.html#a2a155fb47a981d3005cfac583e8de68d',1,'fmt::v5']]], - ['make_5funique',['make_unique',['../namespacespdlog_1_1details.html#a2d61216ea1cb33ba27ddc6a78cc98ecd',1,'spdlog::details']]], - ['make_5funsigned_5for_5fbool',['make_unsigned_or_bool',['../structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool.html',1,'fmt::v5::internal']]], - ['make_5funsigned_5for_5fbool_3c_20bool_20_3e',['make_unsigned_or_bool< bool >',['../structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html',1,'fmt::v5::internal']]], - ['make_5fvalue',['make_value',['../namespacefmt_1_1v5_1_1internal.html#ae636a21b85a25f216949a2987bfd9d89',1,'fmt::v5::internal::make_value(bool val)'],['../namespacefmt_1_1v5_1_1internal.html#a114b82825ab2dee13e1914fddb26dd87',1,'fmt::v5::internal::make_value(short val)'],['../namespacefmt_1_1v5_1_1internal.html#a7b75e2a1b428d2a4bdf085e65821c6ee',1,'fmt::v5::internal::make_value(unsigned short val)'],['../namespacefmt_1_1v5_1_1internal.html#a812744db908d21fe09cf9ba844d8b1ce',1,'fmt::v5::internal::make_value(int val)'],['../namespacefmt_1_1v5_1_1internal.html#ab4a71234cf33d295c8776c1ecfd04d80',1,'fmt::v5::internal::make_value(unsigned val)'],['../namespacefmt_1_1v5_1_1internal.html#af68c2d6c2ea535e9fe1dde8a97016019',1,'fmt::v5::internal::make_value(long val)'],['../namespacefmt_1_1v5_1_1internal.html#ab49c070fd72bc190afe897235a6391b7',1,'fmt::v5::internal::make_value(unsigned long val)'],['../namespacefmt_1_1v5_1_1internal.html#a344b631dd2a44d6240a5bf881fa384e5',1,'fmt::v5::internal::make_value(long long val)'],['../namespacefmt_1_1v5_1_1internal.html#a66e6c630864ba13be3eae6aed4b9a2ba',1,'fmt::v5::internal::make_value(unsigned long long val)'],['../namespacefmt_1_1v5_1_1internal.html#ac6a1568f2fc1baa1c6b9e139c038a254',1,'fmt::v5::internal::make_value(signed char val)'],['../namespacefmt_1_1v5_1_1internal.html#a9cf9954148cb1b82eb6d8cf69fef9f0e',1,'fmt::v5::internal::make_value(unsigned char val)'],['../namespacefmt_1_1v5_1_1internal.html#ab190353863f3a4660bed7bea829a6822',1,'fmt::v5::internal::make_value(Char val)'],['../namespacefmt_1_1v5_1_1internal.html#a6522e43666855e8166b0e1097d115d83',1,'fmt::v5::internal::make_value(char val)'],['../namespacefmt_1_1v5_1_1internal.html#a4f4a486379e85b8d88c73eff6197b768',1,'fmt::v5::internal::make_value(float val)'],['../namespacefmt_1_1v5_1_1internal.html#a8fcea7a9901c65a40f9ed5d76c3b53f9',1,'fmt::v5::internal::make_value(double val)'],['../namespacefmt_1_1v5_1_1internal.html#afd48e0f440edf24c821e4ff7554b9730',1,'fmt::v5::internal::make_value(long double val)'],['../namespacefmt_1_1v5_1_1internal.html#aacbe9f39925b33b031be5cffc988c95e',1,'fmt::v5::internal::make_value(typename C::char_type *val)'],['../namespacefmt_1_1v5_1_1internal.html#aa673164d8ab4b4bedc66e0dfa6faf952',1,'fmt::v5::internal::make_value(const typename C::char_type *val)'],['../namespacefmt_1_1v5_1_1internal.html#af1664d9b06d9e4b78a8db3ea1fa99d68',1,'fmt::v5::internal::make_value(signed char *val)'],['../namespacefmt_1_1v5_1_1internal.html#aae8c11e3b42fe7cd379cf3d5e076ce8c',1,'fmt::v5::internal::make_value(const signed char *val)'],['../namespacefmt_1_1v5_1_1internal.html#a3771b53380243f3c36d061438c0596b3',1,'fmt::v5::internal::make_value(unsigned char *val)'],['../namespacefmt_1_1v5_1_1internal.html#a1bee81a83919db01b3cc9d95981d3311',1,'fmt::v5::internal::make_value(const unsigned char *val)'],['../namespacefmt_1_1v5_1_1internal.html#a026d4ace419ac741560868f9cf829727',1,'fmt::v5::internal::make_value(basic_string_view< typename C::char_type > val)'],['../namespacefmt_1_1v5_1_1internal.html#a842c0c5e03126468303bbd3b9a96a945',1,'fmt::v5::internal::make_value(typename basic_string_view< typename C::char_type >::type val)'],['../namespacefmt_1_1v5_1_1internal.html#ab366b11763385ee5096ec32544a9ac63',1,'fmt::v5::internal::make_value(const std::basic_string< typename C::char_type > &val)'],['../namespacefmt_1_1v5_1_1internal.html#a3a6e943d8c70bf3cc543abaaec5bfc46',1,'fmt::v5::internal::make_value(void *val)'],['../namespacefmt_1_1v5_1_1internal.html#a49a095fdcf7a195744579493e8b93e0b',1,'fmt::v5::internal::make_value(const void *val)'],['../namespacefmt_1_1v5_1_1internal.html#aa0d84dd629a961d4ba20bad142b6fa75',1,'fmt::v5::internal::make_value(const T *)'],['../namespacefmt_1_1v5_1_1internal.html#aab9ed525c003632b5b9c5314f22411af',1,'fmt::v5::internal::make_value(const T &val)'],['../namespacefmt_1_1v5_1_1internal.html#a2f833eb53fcc22e4b5a7bd8cb99f0232',1,'fmt::v5::internal::make_value(const T &val)'],['../namespacefmt_1_1v5_1_1internal.html#ad61b07c8fe83db5520e226ab23edf892',1,'fmt::v5::internal::make_value(const T &val)'],['../namespacefmt_1_1v5_1_1internal.html#a7f29400879301aadb96b80568b8fecc7',1,'fmt::v5::internal::make_value(const named_arg< T, typename C::char_type > &val)'],['../namespacefmt_1_1v5_1_1internal.html#ad61aad8232950c65bdff8b83abe92929',1,'fmt::v5::internal::make_value(const S &val)']]], - ['make_5fwprintf_5fargs',['make_wprintf_args',['../namespacefmt_1_1v5.html#a00613ec467c7dd2b621ee725398b19b0',1,'fmt::v5']]], - ['maroon',['maroon',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a04a3da97880fcedeb087378f29c3a102',1,'fmt::v5']]], - ['max_5fpacked_5fargs',['max_packed_args',['../namespacefmt_1_1v5_1_1internal.html#ad553d3adb090e46cde2de286a928a8c9a9a0a8f1a6f42d5a0e96eadee1aaf4e3b',1,'fmt::v5::internal']]], - ['max_5fsize',['max_size',['../classfmt_1_1v5_1_1basic__format__args.html#a7793770b464ca724fc86fcb199cd6d8b',1,'fmt::v5::basic_format_args']]], - ['mcrf4xx_5fcalc',['mcrf4xx_calc',['../class_fast_c_r_c16.html#aa127f7c21a5ab74c0c30619ade0181b4',1,'FastCRC16']]], - ['medium_5faquamarine',['medium_aquamarine',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a3971b68e2b89dbe29871b9061dff0af9',1,'fmt::v5']]], - ['medium_5fblue',['medium_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a73bdd29aeb8e3e3274bbb71c30d70eb7',1,'fmt::v5']]], - ['medium_5forchid',['medium_orchid',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0adfcfa24e3022fb4b704f051d98ec0557',1,'fmt::v5']]], - ['medium_5fpurple',['medium_purple',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a2a51478b9caafc3a28fef46a916cd92d',1,'fmt::v5']]], - ['medium_5fsea_5fgreen',['medium_sea_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ac5aaf97240e28904c5b96eab2cbf753b',1,'fmt::v5']]], - ['medium_5fslate_5fblue',['medium_slate_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a996976a37b7f6296cc3cbf388ac91cee',1,'fmt::v5']]], - ['medium_5fspring_5fgreen',['medium_spring_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5157a28c83d98d39066c60c83a6983f8',1,'fmt::v5']]], - ['medium_5fturquoise',['medium_turquoise',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4db3022648c31d28b86ad95583d6c3c7',1,'fmt::v5']]], - ['medium_5fviolet_5fred',['medium_violet_red',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae8c7ad982a8c98a38c7e3381043b94d8',1,'fmt::v5']]], - ['memory_5fbuffer',['memory_buffer',['../namespacefmt_1_1v5.html#a87104ff0bbd588f55bbbadf592227d75',1,'fmt::v5']]], - ['midnight_5fblue',['midnight_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a83d1d60e0de07e8b1bf164247a77e28b',1,'fmt::v5']]], - ['minor',['minor',['../struct_livox_sdk_version.html#a6bbcc9b12aa6c3aed826600325a57e46',1,'LivoxSdkVersion']]], - ['mint_5fcream',['mint_cream',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a28a62909f84c7a965ea755d99db1ca2b',1,'fmt::v5']]], - ['minus_5fflag',['MINUS_FLAG',['../namespacefmt_1_1v5.html#a2afc98455558e211af15ed1ad8c12bfaaaf7cf0b0f8341fafc6ab56b5c5c77f03',1,'fmt::v5']]], - ['minute',['minute',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a23fd5944d19602da875e39b45d66c737',1,'fmt::v5::internal::chrono_formatter']]], - ['misty_5frose',['misty_rose',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a0552f51c284790d9d0f4b43ebfa9f2a8',1,'fmt::v5']]], - ['moccasin',['moccasin',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0adc8a6c38cc98a2c29859c34b26974bc7',1,'fmt::v5']]], - ['monostate',['monostate',['../structfmt_1_1v5_1_1monostate.html',1,'fmt::v5']]], - ['months',['months',['../namespacespdlog_1_1details.html#ac9a2865e6c6a61f6e3f67e57cf24d55c',1,'spdlog::details']]], - ['mpmc_5fblocking_5fq_2eh',['mpmc_blocking_q.h',['../mpmc__blocking__q_8h.html',1,'']]], - ['mpmc_5fblocking_5fqueue',['mpmc_blocking_queue',['../classspdlog_1_1details_1_1mpmc__blocking__queue.html',1,'spdlog::details::mpmc_blocking_queue< T >'],['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#ace609561c8f631202988ec49f95422fa',1,'spdlog::details::mpmc_blocking_queue::mpmc_blocking_queue()']]], - ['mpmc_5fblocking_5fqueue_3c_20item_5ftype_20_3e',['mpmc_blocking_queue< item_type >',['../classspdlog_1_1details_1_1mpmc__blocking__queue.html',1,'spdlog::details']]], - ['ms',['ms',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ace51dbe524dffc062d59c9464587e9dd',1,'fmt::v5::internal::chrono_formatter']]], - ['msg_5fcounter_5f',['msg_counter_',['../classspdlog_1_1logger.html#a7ef1e291dcb766951fc5c25f110d775f',1,'spdlog::logger']]], - ['msg_5fid',['msg_id',['../structspdlog_1_1details_1_1log__msg.html#a8cbec91cdecd3cb4efe9cfa39d5d1d84',1,'spdlog::details::log_msg::msg_id()'],['../structspdlog_1_1details_1_1async__msg.html#a74136620d40e667dbfec1050c8e74179',1,'spdlog::details::async_msg::msg_id()']]], - ['msg_5ftype',['msg_type',['../structspdlog_1_1details_1_1async__msg.html#a02c7d8e28bc720dea6552042801a86c0',1,'spdlog::details::async_msg']]], - ['msvc_5fsink_2eh',['msvc_sink.h',['../msvc__sink_8h.html',1,'']]], - ['mutex',['mutex',['../structspdlog_1_1details_1_1console__mutex.html#a0eca5de786748bdfe509966a54b4d32f',1,'spdlog::details::console_mutex::mutex()'],['../structspdlog_1_1details_1_1console__nullmutex.html#a61016e82a5c02f104e04b58c53f8c95d',1,'spdlog::details::console_nullmutex::mutex()']]], - ['mutex_5f',['mutex_',['../classspdlog_1_1sinks_1_1base__sink.html#a929422554ce18d8bffd9b4d75cc7acf3',1,'spdlog::sinks::base_sink']]], - ['mutex_5ft',['mutex_t',['../structspdlog_1_1details_1_1console__mutex.html#a8c47cc70b6f1c3c7ddda2f919e4fae53',1,'spdlog::details::console_mutex::mutex_t()'],['../structspdlog_1_1details_1_1console__nullmutex.html#a8464e2d02b3800061339841b94400da5',1,'spdlog::details::console_nullmutex::mutex_t()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a99718be9a953edac6cae0371bc00fb2f',1,'spdlog::sinks::ansicolor_sink::mutex_t()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#a8546278774f901c3b5159876154e2eea',1,'spdlog::sinks::stdout_sink::mutex_t()']]] + ['last_5ferr_5ftime_5f',['last_err_time_',['../classspdlog_1_1logger.html#a00677a369b642aec9e8428374ee09df6',1,'spdlog::logger']]], + ['last_5finteger_5ftype',['last_integer_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a3db2e8053c230033779933d7836846c2',1,'fmt::v5::internal']]], + ['last_5fnumeric_5ftype',['last_numeric_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a1956769baf47b0a96768474f1cc5135c',1,'fmt::v5::internal']]], + ['lavender',['lavender',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a153fa52654465ad67f045dc293f3b16e',1,'fmt::v5']]], + ['lavender_5fblush',['lavender_blush',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad557e5da14dcbe24b5b54c33bd8d15ee',1,'fmt::v5']]], + ['lawn_5fgreen',['lawn_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4109165af5329dd59f9bd749c5a55846',1,'fmt::v5']]], + ['left',['left',['../structspdlog_1_1details_1_1padding__info.html#aa2ad84ba80fb8fc36b753d1a34e4942ea44a15fd66c1b0c03c28c995af8b4e029',1,'spdlog::details::padding_info']]], + ['lemon_5fchiffon',['lemon_chiffon',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a8c86fbdd95cf7d3a3bf22d7bd34a3e99',1,'fmt::v5']]], + ['level',['level',['../structspdlog_1_1details_1_1log__msg.html#a4142f4d66140a1ea24053311ebea5706',1,'spdlog::details::log_msg::level()'],['../structspdlog_1_1details_1_1async__msg.html#a3e2008e47f70761ff3240ab56a3be370',1,'spdlog::details::async_msg::level()'],['../classspdlog_1_1logger.html#a20dc8198d08c98f84ae10be635108bef',1,'spdlog::logger::level()'],['../classspdlog_1_1sinks_1_1sink.html#ae59ca2b418c5cdfed1c04e49a444be1c',1,'spdlog::sinks::sink::level()']]], + ['level_5f',['level_',['../classspdlog_1_1logger.html#af167b5b45a369b3cef019b40a87ed71d',1,'spdlog::logger::level_()'],['../classspdlog_1_1sinks_1_1sink.html#a435da07b59e1165b38d53635cdada30a',1,'spdlog::sinks::sink::level_()']]], + ['level_5fenum',['level_enum',['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8b',1,'spdlog::level']]], + ['level_5fformatter',['level_formatter',['../classspdlog_1_1details_1_1level__formatter.html',1,'spdlog::details::level_formatter'],['../classspdlog_1_1details_1_1level__formatter.html#a76ae7447054b8943fede15d0b64f8603',1,'spdlog::details::level_formatter::level_formatter()']]], + ['level_5fhasher',['level_hasher',['../namespacespdlog_1_1level.html#add7f1cc7c1914c6f6a6773cfbd1bb997',1,'spdlog::level']]], + ['level_5fstring_5fviews',['level_string_views',['../namespacespdlog_1_1level.html#ae7c510cd37fa5221221eb91f03a98655',1,'spdlog::level']]], + ['level_5ft',['level_t',['../namespacespdlog.html#a8585bf495310a6ce695191739351709b',1,'spdlog']]], + ['lg',['lg',['../namespacefmt_1_1v5_1_1internal.html#a53dd0b9003b32d9c4c07d008b8a1bebf',1,'fmt::v5::internal']]], + ['lidar_5fcfg_5flist',['lidar_cfg_list',['../struct_hub_rain_fog_suppress_request.html#ab24efdb9e34e6d09edf39526225b0e15',1,'HubRainFogSuppressRequest']]], + ['lidarfeature',['LidarFeature',['../livox__def_8h.html#a48ea264cca26ef99ff11e3410adad9d8',1,'livox_def.h']]], + ['lidargetextrinsicparameter',['LidarGetExtrinsicParameter',['../livox__sdk_8h.html#ae044161cdd56cb307464944705ed97eb',1,'livox_sdk.h']]], + ['lidargetextrinsicparametercallback',['LidarGetExtrinsicParameterCallback',['../livox__sdk_8h.html#ad86bba656ccf786f0e71a7080c7869b2',1,'livox_sdk.h']]], + ['lidargetextrinsicparameterresponse',['LidarGetExtrinsicParameterResponse',['../struct_lidar_get_extrinsic_parameter_response.html',1,'']]], + ['lidarmode',['LidarMode',['../livox__def_8h.html#affc3c75e14e794567016e1ac9b223a84',1,'livox_def.h']]], + ['lidarmoderequestitem',['LidarModeRequestItem',['../struct_lidar_mode_request_item.html',1,'']]], + ['lidarrainfogsuppress',['LidarRainFogSuppress',['../livox__sdk_8h.html#a7597933a60d4ae38125ea2fa346524a9',1,'livox_sdk.h']]], + ['lidarsetextrinsicparameter',['LidarSetExtrinsicParameter',['../livox__sdk_8h.html#a32a53686c361c645ce4dd83f411e80ff',1,'livox_sdk.h']]], + ['lidarsetextrinsicparameterrequest',['LidarSetExtrinsicParameterRequest',['../struct_lidar_set_extrinsic_parameter_request.html',1,'']]], + ['lidarsetmode',['LidarSetMode',['../livox__sdk_8h.html#a1f3b08665a78e2e662ecd530a292d768',1,'livox_sdk.h']]], + ['lidarstartsampling',['LidarStartSampling',['../livox__sdk_8h.html#afd39ba9dd082188cea2b7d5003a81cd7',1,'livox_sdk.h']]], + ['lidarstate',['LidarState',['../livox__def_8h.html#ac452bffa284c87aa7cafa14ff1c1049e',1,'livox_def.h']]], + ['lidarstateitem',['LidarStateItem',['../struct_lidar_state_item.html',1,'']]], + ['lidarstopsampling',['LidarStopSampling',['../livox__sdk_8h.html#a649040b7f9fc62d721c4deb8951b8b08',1,'livox_sdk.h']]], + ['light_5fblue',['light_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a61a2783898a9df78bb27edc33f768e6e',1,'fmt::v5']]], + ['light_5fcoral',['light_coral',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a58b516fe6ce07478e0fdfe29e18d62fe',1,'fmt::v5']]], + ['light_5fcyan',['light_cyan',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4eece7cf37c9db41ed9e016e471fcf2f',1,'fmt::v5']]], + ['light_5fgolden_5frod_5fyellow',['light_golden_rod_yellow',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ad43a591d2b25a4afe584e778d2d8cdbd',1,'fmt::v5']]], + ['light_5fgray',['light_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a770e427f6a16eb64e2ece9585ba9d193',1,'fmt::v5']]], + ['light_5fgreen',['light_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ac10bddadd1786a8a12f96ae7db5bafb8',1,'fmt::v5']]], + ['light_5fpink',['light_pink',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a617e570ec3920b38e651cf3258d88e47',1,'fmt::v5']]], + ['light_5fsalmon',['light_salmon',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a62c383c02f7de80e5edcbc4f21836c7c',1,'fmt::v5']]], + ['light_5fsea_5fgreen',['light_sea_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a98cf43657dbee14ae37662526484911d',1,'fmt::v5']]], + ['light_5fsky_5fblue',['light_sky_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a67d12da6232b36c362a6437332da50bf',1,'fmt::v5']]], + ['light_5fslate_5fgray',['light_slate_gray',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0abca51d13e304e17f34a3e7c598884ae8',1,'fmt::v5']]], + ['light_5fsteel_5fblue',['light_steel_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ab2fb12c1d8469e020be7d77d0d9cf2dd',1,'fmt::v5']]], + ['light_5fyellow',['light_yellow',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a743b7827c281254e45c305696344535b',1,'fmt::v5']]], + ['lime',['lime',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a67c0ecaf5a1b782b11146e9fbe80f016',1,'fmt::v5']]], + ['lime_5fgreen',['lime_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a68db9bf9d92a944f0138e197b7b02fc2',1,'fmt::v5']]], + ['limit_5f',['limit_',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a24832c279c6143d905912d3181872f44',1,'fmt::v5::internal::truncating_iterator_base']]], + ['line',['line',['../structspdlog_1_1source__loc.html#a1742569c23cc7e3a01fa6de6f43cc60f',1,'spdlog::source_loc']]], + ['line_5fsize',['line_size',['../structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html#aae6b62746bc315b2927199438ba2f87a',1,'fmt::formatter< spdlog::details::bytes_range< T > >']]], + ['linen',['linen',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0aa6ab62e9da89b20d720c70602624bfc2',1,'fmt::v5']]], + ['livox',['livox',['../namespacelivox.html',1,'']]], + ['livox_5fdef_2eh',['livox_def.h',['../livox__def_8h.html',1,'']]], + ['livox_5fsdk_2eh',['livox_sdk.h',['../livox__sdk_8h.html',1,'']]], + ['livox_5fsdk_5fmajor_5fversion',['LIVOX_SDK_MAJOR_VERSION',['../livox__def_8h.html#abd00f87dca580f94be328c5b51200857',1,'livox_def.h']]], + ['livox_5fsdk_5fminor_5fversion',['LIVOX_SDK_MINOR_VERSION',['../livox__def_8h.html#a8a4322cc238616252f82dac9b694b6fa',1,'livox_def.h']]], + ['livox_5fsdk_5fpatch_5fversion',['LIVOX_SDK_PATCH_VERSION',['../livox__def_8h.html#a434b5d6c9f2fade81081831aa224038e',1,'livox_def.h']]], + ['livoxethpacket',['LivoxEthPacket',['../struct_livox_eth_packet.html',1,'']]], + ['livoxpoint',['LivoxPoint',['../struct_livox_point.html',1,'']]], + ['livoxrawpoint',['LivoxRawPoint',['../struct_livox_raw_point.html',1,'']]], + ['livoxsdkversion',['LivoxSdkVersion',['../struct_livox_sdk_version.html',1,'']]], + ['load',['load',['../structspdlog_1_1details_1_1null__atomic__int.html#a6b7a8489e34705db8d07b44f204a7c2f',1,'spdlog::details::null_atomic_int']]], + ['local',['local',['../namespacespdlog.html#ad598fbd8338772e66ae09e8723a07cedaf5ddaf0ca7929578b408c909429f68f2',1,'spdlog']]], + ['locale',['locale',['../classfmt_1_1v5_1_1internal_1_1locale__ref.html#a0a09223e17db306b813d8b07b4b344fc',1,'fmt::v5::internal::locale_ref::locale()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#acd179b817cfad89a6bca77f4b07401fe',1,'fmt::v5::internal::context_base::locale()']]], + ['locale_2eh',['locale.h',['../locale_8h.html',1,'']]], + ['locale_5fref',['locale_ref',['../classfmt_1_1v5_1_1internal_1_1locale__ref.html',1,'fmt::v5::internal::locale_ref'],['../classfmt_1_1v5_1_1internal_1_1locale__ref.html#ae4ee3bc5f9b88dc96ece438fcbc10c22',1,'fmt::v5::internal::locale_ref::locale_ref()'],['../classfmt_1_1v5_1_1internal_1_1locale__ref.html#ae3997bdc7859ad4d18cbc86a702b61d7',1,'fmt::v5::internal::locale_ref::locale_ref(const Locale &loc)']]], + ['localtime',['localtime',['../namespacespdlog_1_1details_1_1os.html#a9ed2501e3a0bf17176ac848e0a67a148',1,'spdlog::details::os::localtime(const std::time_t &time_tt) noexcept'],['../namespacespdlog_1_1details_1_1os.html#af8b1e6155c2975abfd696ffb5fd9e7dd',1,'spdlog::details::os::localtime() noexcept'],['../namespacefmt_1_1v5.html#a50024f1e98f3fd7af41fc631dba4db22',1,'fmt::v5::localtime()']]], + ['localtime_5fr',['localtime_r',['../namespacefmt_1_1v5_1_1internal.html#a86e43d2c941941591a80c4220f01cec2',1,'fmt::v5::internal']]], + ['localtime_5fs',['localtime_s',['../namespacefmt_1_1v5_1_1internal.html#aaf3759998f3d75d929560c53a29da8c3',1,'fmt::v5::internal']]], + ['lock',['lock',['../structspdlog_1_1details_1_1null__mutex.html#acaccd5741a4d60756a2c23018f670b9a',1,'spdlog::details::null_mutex']]], + ['log',['log',['../classspdlog_1_1logger.html#a1e4b2c515490efb5456665a9a64382d9',1,'spdlog::logger::log(level::level_enum lvl, const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#a50417cea5f81704cd4800aaafa944bc5',1,'spdlog::logger::log(source_loc loc, level::level_enum lvl, const char *fmt, const Args &... args)'],['../classspdlog_1_1logger.html#ae59d1c2d5b3a4cc4807534c73b46f297',1,'spdlog::logger::log(level::level_enum lvl, const char *msg)'],['../classspdlog_1_1logger.html#abf7d5c94e0c295aa2e55e1139b787a57',1,'spdlog::logger::log(source_loc loc, level::level_enum lvl, const char *msg)'],['../classspdlog_1_1logger.html#a16d3d178ac86ea71b8a0becfca0c5449',1,'spdlog::logger::log(level::level_enum lvl, const T &)'],['../classspdlog_1_1logger.html#a4ad269959d007dcbe38cdb3c4e70d85b',1,'spdlog::logger::log(source_loc loc, level::level_enum lvl, const T &)'],['../classspdlog_1_1logger.html#a4ad269959d007dcbe38cdb3c4e70d85b',1,'spdlog::logger::log(source_loc loc, level::level_enum lvl, const T &)'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a042a6ab886430570095737e1984e7c6e',1,'spdlog::sinks::ansicolor_sink::log()'],['../classspdlog_1_1sinks_1_1base__sink.html#a6a72602ffe60fdfe6a3cbfbecca54bb0',1,'spdlog::sinks::base_sink::log()'],['../classspdlog_1_1sinks_1_1sink.html#a51d8f34ad79064e0dc13c6013236e427',1,'spdlog::sinks::sink::log()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#adda1fffa1daf4565f72b3e94734d984a',1,'spdlog::sinks::stdout_sink::log()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a64d98363a05d1a7a4f295f6de1b5cec1',1,'spdlog::sinks::wincolor_sink::log()'],['../namespacespdlog.html#acc4ad5305b408c41a60540b0e2a8aa85',1,'spdlog::log(source_loc source, level::level_enum lvl, const char *fmt, const Args &... args)'],['../namespacespdlog.html#a7ad1ad069c196a042cb191b05d27167a',1,'spdlog::log(level::level_enum lvl, const char *fmt, const Args &... args)'],['../namespacespdlog.html#aee9d401c7cb3cd8538a139af836c5ec5',1,'spdlog::log(level::level_enum lvl, const T &msg)'],['../namespacespdlog_1_1details.html#a22274995cf879a5d0a08d1f7513ee4fbadc1d71bbb5c4d2a5e936db79ef10c19f',1,'spdlog::details::log()']]], + ['log_5fclock',['log_clock',['../namespacespdlog.html#a173dd7064323e4807d720eabcc95fc73',1,'spdlog']]], + ['log_5ferr_5fhandler',['log_err_handler',['../namespacespdlog.html#ad3ed787a29f245c833ef66faf48036e2',1,'spdlog']]], + ['log_5fmsg',['log_msg',['../structspdlog_1_1details_1_1log__msg.html',1,'spdlog::details::log_msg'],['../structspdlog_1_1details_1_1log__msg.html#af08273268386a97a4e4a02505f830318',1,'spdlog::details::log_msg::log_msg(source_loc loc, const std::string *loggers_name, level::level_enum lvl, string_view_t view)'],['../structspdlog_1_1details_1_1log__msg.html#aed741a89e884b8f51db4fd6364402e7a',1,'spdlog::details::log_msg::log_msg(const std::string *loggers_name, level::level_enum lvl, string_view_t view)'],['../structspdlog_1_1details_1_1log__msg.html#ad3ff125f04a5854bf78f6c359af5183a',1,'spdlog::details::log_msg::log_msg(const log_msg &other)=default']]], + ['log_5fmsg_2eh',['log_msg.h',['../log__msg_8h.html',1,'']]], + ['logger',['logger',['../classspdlog_1_1logger.html',1,'spdlog::logger'],['../classspdlog_1_1logger.html#a5d3b321a0319e9b8b27bf04f206a9900',1,'spdlog::logger::logger(std::string name, sink_ptr single_sink)'],['../classspdlog_1_1logger.html#af1f2f69f6bbbe9eb23cf428d66d20f70',1,'spdlog::logger::logger(std::string name, sinks_init_list sinks)'],['../classspdlog_1_1logger.html#a414da79baaad89ba6ffe0e738027d234',1,'spdlog::logger::logger(std::string name, It begin, It end)'],['../classspdlog_1_1logger.html#aa6074d763b0df4e7d16ccf7d307a3938',1,'spdlog::logger::logger(const logger &)=delete']]], + ['logger_2eh',['logger.h',['../logger_8h.html',1,'']]], + ['logger_5fimpl_2eh',['logger_impl.h',['../logger__impl_8h.html',1,'']]], + ['logger_5fname',['logger_name',['../structspdlog_1_1details_1_1log__msg.html#a0aacbf01e2a67660d328fa2080d55def',1,'spdlog::details::log_msg']]], + ['long_5fdouble_5ftype',['long_double_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13ae9e4c238a7992d284d52befd618886ef',1,'fmt::v5::internal']]], + ['long_5fdouble_5fvalue',['long_double_value',['../classfmt_1_1v5_1_1internal_1_1value.html#abf10ba105cb5ebb65156465cf9126857',1,'fmt::v5::internal::value']]], + ['long_5flong_5ftype',['long_long_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13ae7a9e0deca92ad9278f3def34dafd2c8',1,'fmt::v5::internal']]], + ['long_5flong_5fvalue',['long_long_value',['../classfmt_1_1v5_1_1internal_1_1value.html#a0c125f0f450b4afb7f90759397a65086',1,'fmt::v5::internal::value']]], + ['long_5ftype',['long_type',['../namespacefmt_1_1v5_1_1internal.html#a8a71644ac0a6fba4454f549c1f3f0b2f',1,'fmt::v5::internal']]] ]; diff --git a/docs/search/all_e.js b/docs/search/all_e.js index 3a915b7..ad4319a 100644 --- a/docs/search/all_e.js +++ b/docs/search/all_e.js @@ -1,37 +1,56 @@ var searchData= [ - ['n',['n',['../structfmt_1_1v5_1_1internal_1_1fill.html#af4901adffe747a5563f73ec9e640420c',1,'fmt::v5::internal::fill']]], - ['name',['NAME',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69abf8b717453e333c567d68786e862acfa',1,'fmt::v5::internal::arg_ref::NAME()'],['../structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a593f217f9b351886a0312a816be51be1',1,'fmt::v5::internal::named_arg_base::name()'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#af240860ec3c7ab05495ec8380b3e3479',1,'fmt::v5::internal::arg_ref::name()'],['../classspdlog_1_1logger.html#ac7c6ed0f30ace90402254dc2d3ef1453',1,'spdlog::logger::name()']]], - ['name_5f',['name_',['../classspdlog_1_1logger.html#aad05282c338eb617ca260e40ab8134bc',1,'spdlog::logger']]], - ['name_5fformatter',['name_formatter',['../classspdlog_1_1details_1_1name__formatter.html',1,'spdlog::details::name_formatter'],['../classspdlog_1_1details_1_1name__formatter.html#a03bf01931018c5c2cd9dcbff64233d6e',1,'spdlog::details::name_formatter::name_formatter()']]], - ['named_5farg',['named_arg',['../structfmt_1_1v5_1_1internal_1_1named__arg.html',1,'fmt::v5::internal::named_arg< T, Char >'],['../structfmt_1_1v5_1_1internal_1_1named__arg.html#a3b6203a5a5308065fc90392a293fed93',1,'fmt::v5::internal::named_arg::named_arg()']]], - ['named_5farg_5fbase',['named_arg_base',['../structfmt_1_1v5_1_1internal_1_1named__arg__base.html',1,'fmt::v5::internal::named_arg_base< Char >'],['../structfmt_1_1v5_1_1internal_1_1named__arg__base.html#acb59c24062e1fccd674816adce9558b6',1,'fmt::v5::internal::named_arg_base::named_arg_base()']]], - ['named_5farg_5ftype',['named_arg_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13aa7a6f8b82db485f179833d300de9d139',1,'fmt::v5::internal']]], - ['navajo_5fwhite',['navajo_white',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a667b2e78d0dabb83c2ec684e3b4253b1',1,'fmt::v5']]], - ['navy',['navy',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0af3311d3d14c8437553bf3e3f90920736',1,'fmt::v5']]], - ['needacktype',['NeedAckType',['../namespacelivox.html#afeebe28eda25022afdc079c1aaff209c',1,'livox']]], - ['needs_5fconversion',['needs_conversion',['../structfmt_1_1v5_1_1internal_1_1needs__conversion.html',1,'fmt::v5::internal']]], - ['next_5farg',['next_arg',['../classfmt_1_1v5_1_1basic__format__context.html#ac5b96279f3ca0db9c1879e7c33551985',1,'fmt::v5::basic_format_context']]], - ['next_5farg_5fid',['next_arg_id',['../classfmt_1_1v5_1_1basic__parse__context.html#a904ad0013ff0d1e633218bcf1810592d',1,'fmt::v5::basic_parse_context']]], - ['no_5fformatter_5ferror',['no_formatter_error',['../structfmt_1_1v5_1_1internal_1_1no__formatter__error.html',1,'fmt::v5::internal']]], - ['no_5fthousands_5fsep',['no_thousands_sep',['../structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html',1,'fmt::v5::internal']]], - ['none',['NONE',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69af74dc3a4fdb7441bc5d0a3885e6b22b4',1,'fmt::v5::internal::arg_ref']]], - ['none_5ftype',['none_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a782542b1b5c4dd8c67d2d015aeb79ee9',1,'fmt::v5::internal']]], - ['normalize',['normalize',['../classfmt_1_1v5_1_1internal_1_1fp.html#ab59ad7dfcd4ed603592d93cf4b7aaa42',1,'fmt::v5::internal::fp']]], - ['now',['now',['../namespacespdlog_1_1details_1_1os.html#a0128efefe7b8bbf3b3ba58a1f7a309dd',1,'spdlog::details::os']]], - ['null',['null',['../structfmt_1_1v5_1_1internal_1_1null.html',1,'fmt::v5::internal']]], - ['null_5fatomic_5fint',['null_atomic_int',['../structspdlog_1_1details_1_1null__atomic__int.html',1,'spdlog::details::null_atomic_int'],['../structspdlog_1_1details_1_1null__atomic__int.html#af41bb35b91f4a0195ab1cd8688fc1ccc',1,'spdlog::details::null_atomic_int::null_atomic_int()=default'],['../structspdlog_1_1details_1_1null__atomic__int.html#aa9856518fa8bc88f466b2b9c17bff1b9',1,'spdlog::details::null_atomic_int::null_atomic_int(int val)']]], - ['null_5flogger_5fmt',['null_logger_mt',['../namespacespdlog.html#a6d6344c349d1c6d957d5f21f4387c8f8',1,'spdlog']]], - ['null_5flogger_5fst',['null_logger_st',['../namespacespdlog.html#af6a7d6f86b50ab1c5c346949ca5af564',1,'spdlog']]], - ['null_5fmutex',['null_mutex',['../structspdlog_1_1details_1_1null__mutex.html',1,'spdlog::details']]], - ['null_5fmutex_2eh',['null_mutex.h',['../null__mutex_8h.html',1,'']]], - ['null_5fsink',['null_sink',['../classspdlog_1_1sinks_1_1null__sink.html',1,'spdlog::sinks']]], - ['null_5fsink_2eh',['null_sink.h',['../null__sink_8h.html',1,'']]], - ['null_5fsink_5fmt',['null_sink_mt',['../namespacespdlog_1_1sinks.html#a0712014c0dae16e0b332d3caba31435a',1,'spdlog::sinks']]], - ['null_5fsink_5fst',['null_sink_st',['../namespacespdlog_1_1sinks.html#a44a99e8a56b2f902ffd50da4f8628100',1,'spdlog::sinks']]], - ['null_5fterminating_5fiterator',['null_terminating_iterator',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html',1,'fmt::v5::internal::null_terminating_iterator< Char >'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ab1bc138b0ba1989222557dc92c53fe1f',1,'fmt::v5::internal::null_terminating_iterator::null_terminating_iterator()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ac03548f66b12217a2ed1bce77729b1c1',1,'fmt::v5::internal::null_terminating_iterator::null_terminating_iterator(const Char *ptr, const Char *end)'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#acd09cb49aec23c8912be032da932545c',1,'fmt::v5::internal::null_terminating_iterator::null_terminating_iterator(const Range &r)']]], - ['num_5fdigits',['num_digits',['../structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#ae5d119f024f6844f366eacbb80dc905b',1,'fmt::v5::internal::gen_digits_params::num_digits()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html#a481aea3f8ddd9813b012e00d1e39348d',1,'fmt::v5::basic_writer::int_writer::dec_writer::num_digits()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html#a00aa69723c38070f04aadeb0ad0c375d',1,'fmt::v5::basic_writer::int_writer::hex_writer::num_digits()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html#af957d7cd5b03d0094f3601d8421ae6f7',1,'fmt::v5::basic_writer::int_writer::bin_writer::num_digits()']]], - ['num_5fwriter',['num_writer',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html',1,'fmt::v5::basic_writer::int_writer']]], - ['numeric_5flimits_3c_20fmt_3a_3ainternal_3a_3adummy_5fint_20_3e',['numeric_limits< fmt::internal::dummy_int >',['../classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html',1,'std']]], - ['numeric_5fsystem',['numeric_system',['../namespacefmt_1_1v5_1_1internal.html#a8217980ba3189c7d8c3ce93f7d8e4c74',1,'fmt::v5::internal']]] + ['m_5fformatter',['M_formatter',['../classspdlog_1_1details_1_1_m__formatter.html',1,'spdlog::details::M_formatter'],['../classspdlog_1_1details_1_1m__formatter.html',1,'spdlog::details::m_formatter'],['../classspdlog_1_1details_1_1m__formatter.html#a218eb07d23a3b69557b9347eae493dc3',1,'spdlog::details::m_formatter::m_formatter()'],['../classspdlog_1_1details_1_1_m__formatter.html#a6d27aa27b0ede646701b4b5138afe4cd',1,'spdlog::details::M_formatter::M_formatter()']]], + ['magenta',['magenta',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a9a665375cbfd2c7ab4a07004df386fce',1,'spdlog::sinks::ansicolor_sink::magenta()'],['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4c2a4a7078da0ac6733464eacfd00f86',1,'fmt::v5::magenta()'],['../namespacefmt_1_1v5.html#ab2f4feae8b2e17242b5f089a38e23fbaa4c2a4a7078da0ac6733464eacfd00f86',1,'fmt::v5::magenta()']]], + ['major',['major',['../struct_livox_sdk_version.html#a0099180644f0153f57b0a67f0a96d1ac',1,'LivoxSdkVersion']]], + ['make_5farg',['make_arg',['../namespacefmt_1_1v5_1_1internal.html#aeb8392ed1d3db2b0d61256627fd0ee45',1,'fmt::v5::internal::make_arg(const T &value)'],['../namespacefmt_1_1v5_1_1internal.html#a80b4b91c27453ab70741b162fb1b9ee9',1,'fmt::v5::internal::make_arg(const T &value)'],['../namespacefmt_1_1v5_1_1internal.html#a12e2ca23ef7e44381012322943cd45e4',1,'fmt::v5::internal::make_arg(const T &value)']]], + ['make_5fbackground_5fcolor',['make_background_color',['../namespacefmt_1_1v5_1_1internal.html#a56836a511849e5e52a5664b26ede9cdf',1,'fmt::v5::internal']]], + ['make_5fchecked',['make_checked',['../namespacefmt_1_1v5_1_1internal.html#a0fb9344a00e79ad8826591da20548963',1,'fmt::v5::internal']]], + ['make_5femphasis',['make_emphasis',['../namespacefmt_1_1v5_1_1internal.html#a8ef34ce57c1deb6af9b8c62f27edb49c',1,'fmt::v5::internal']]], + ['make_5fforeground_5fcolor',['make_foreground_color',['../namespacefmt_1_1v5_1_1internal.html#ae4693bb9287d6264cdbded4233e707c0',1,'fmt::v5::internal']]], + ['make_5fformat_5fargs',['make_format_args',['../namespacefmt_1_1v5.html#a99faaaf62db5189f2e36070a04fc6981',1,'fmt::v5']]], + ['make_5fformat_5fto_5fn_5fargs',['make_format_to_n_args',['../namespacefmt_1_1v5.html#a01817fdc23bf5758e9466f02e29c0bc8',1,'fmt::v5']]], + ['make_5findex_5fsequence',['make_index_sequence',['../namespacefmt_1_1v5_1_1internal.html#a1b4e06fe03b811a701e61e4edbe1489a',1,'fmt::v5::internal']]], + ['make_5finteger_5fsequence',['make_integer_sequence',['../structfmt_1_1v5_1_1internal_1_1make__integer__sequence.html',1,'fmt::v5::internal']]], + ['make_5finteger_5fsequence_3c_20t_2c_200_2c_20ns_2e_2e_2e_20_3e',['make_integer_sequence< T, 0, Ns... >',['../structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4.html',1,'fmt::v5::internal']]], + ['make_5fprintf_5fargs',['make_printf_args',['../namespacefmt_1_1v5.html#a2a155fb47a981d3005cfac583e8de68d',1,'fmt::v5']]], + ['make_5funique',['make_unique',['../namespacespdlog_1_1details.html#a2d61216ea1cb33ba27ddc6a78cc98ecd',1,'spdlog::details']]], + ['make_5funsigned_5for_5fbool',['make_unsigned_or_bool',['../structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool.html',1,'fmt::v5::internal']]], + ['make_5funsigned_5for_5fbool_3c_20bool_20_3e',['make_unsigned_or_bool< bool >',['../structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html',1,'fmt::v5::internal']]], + ['make_5fvalue',['make_value',['../namespacefmt_1_1v5_1_1internal.html#ae636a21b85a25f216949a2987bfd9d89',1,'fmt::v5::internal::make_value(bool val)'],['../namespacefmt_1_1v5_1_1internal.html#a114b82825ab2dee13e1914fddb26dd87',1,'fmt::v5::internal::make_value(short val)'],['../namespacefmt_1_1v5_1_1internal.html#a7b75e2a1b428d2a4bdf085e65821c6ee',1,'fmt::v5::internal::make_value(unsigned short val)'],['../namespacefmt_1_1v5_1_1internal.html#a812744db908d21fe09cf9ba844d8b1ce',1,'fmt::v5::internal::make_value(int val)'],['../namespacefmt_1_1v5_1_1internal.html#ab4a71234cf33d295c8776c1ecfd04d80',1,'fmt::v5::internal::make_value(unsigned val)'],['../namespacefmt_1_1v5_1_1internal.html#af68c2d6c2ea535e9fe1dde8a97016019',1,'fmt::v5::internal::make_value(long val)'],['../namespacefmt_1_1v5_1_1internal.html#ab49c070fd72bc190afe897235a6391b7',1,'fmt::v5::internal::make_value(unsigned long val)'],['../namespacefmt_1_1v5_1_1internal.html#a344b631dd2a44d6240a5bf881fa384e5',1,'fmt::v5::internal::make_value(long long val)'],['../namespacefmt_1_1v5_1_1internal.html#a66e6c630864ba13be3eae6aed4b9a2ba',1,'fmt::v5::internal::make_value(unsigned long long val)'],['../namespacefmt_1_1v5_1_1internal.html#ac6a1568f2fc1baa1c6b9e139c038a254',1,'fmt::v5::internal::make_value(signed char val)'],['../namespacefmt_1_1v5_1_1internal.html#a9cf9954148cb1b82eb6d8cf69fef9f0e',1,'fmt::v5::internal::make_value(unsigned char val)'],['../namespacefmt_1_1v5_1_1internal.html#ab190353863f3a4660bed7bea829a6822',1,'fmt::v5::internal::make_value(Char val)'],['../namespacefmt_1_1v5_1_1internal.html#a6522e43666855e8166b0e1097d115d83',1,'fmt::v5::internal::make_value(char val)'],['../namespacefmt_1_1v5_1_1internal.html#a4f4a486379e85b8d88c73eff6197b768',1,'fmt::v5::internal::make_value(float val)'],['../namespacefmt_1_1v5_1_1internal.html#a8fcea7a9901c65a40f9ed5d76c3b53f9',1,'fmt::v5::internal::make_value(double val)'],['../namespacefmt_1_1v5_1_1internal.html#afd48e0f440edf24c821e4ff7554b9730',1,'fmt::v5::internal::make_value(long double val)'],['../namespacefmt_1_1v5_1_1internal.html#aacbe9f39925b33b031be5cffc988c95e',1,'fmt::v5::internal::make_value(typename C::char_type *val)'],['../namespacefmt_1_1v5_1_1internal.html#aa673164d8ab4b4bedc66e0dfa6faf952',1,'fmt::v5::internal::make_value(const typename C::char_type *val)'],['../namespacefmt_1_1v5_1_1internal.html#af1664d9b06d9e4b78a8db3ea1fa99d68',1,'fmt::v5::internal::make_value(signed char *val)'],['../namespacefmt_1_1v5_1_1internal.html#aae8c11e3b42fe7cd379cf3d5e076ce8c',1,'fmt::v5::internal::make_value(const signed char *val)'],['../namespacefmt_1_1v5_1_1internal.html#a3771b53380243f3c36d061438c0596b3',1,'fmt::v5::internal::make_value(unsigned char *val)'],['../namespacefmt_1_1v5_1_1internal.html#a1bee81a83919db01b3cc9d95981d3311',1,'fmt::v5::internal::make_value(const unsigned char *val)'],['../namespacefmt_1_1v5_1_1internal.html#a026d4ace419ac741560868f9cf829727',1,'fmt::v5::internal::make_value(basic_string_view< typename C::char_type > val)'],['../namespacefmt_1_1v5_1_1internal.html#a842c0c5e03126468303bbd3b9a96a945',1,'fmt::v5::internal::make_value(typename basic_string_view< typename C::char_type >::type val)'],['../namespacefmt_1_1v5_1_1internal.html#ab366b11763385ee5096ec32544a9ac63',1,'fmt::v5::internal::make_value(const std::basic_string< typename C::char_type > &val)'],['../namespacefmt_1_1v5_1_1internal.html#a3a6e943d8c70bf3cc543abaaec5bfc46',1,'fmt::v5::internal::make_value(void *val)'],['../namespacefmt_1_1v5_1_1internal.html#a49a095fdcf7a195744579493e8b93e0b',1,'fmt::v5::internal::make_value(const void *val)'],['../namespacefmt_1_1v5_1_1internal.html#aa0d84dd629a961d4ba20bad142b6fa75',1,'fmt::v5::internal::make_value(const T *)'],['../namespacefmt_1_1v5_1_1internal.html#aab9ed525c003632b5b9c5314f22411af',1,'fmt::v5::internal::make_value(const T &val)'],['../namespacefmt_1_1v5_1_1internal.html#a2f833eb53fcc22e4b5a7bd8cb99f0232',1,'fmt::v5::internal::make_value(const T &val)'],['../namespacefmt_1_1v5_1_1internal.html#ad61b07c8fe83db5520e226ab23edf892',1,'fmt::v5::internal::make_value(const T &val)'],['../namespacefmt_1_1v5_1_1internal.html#a7f29400879301aadb96b80568b8fecc7',1,'fmt::v5::internal::make_value(const named_arg< T, typename C::char_type > &val)'],['../namespacefmt_1_1v5_1_1internal.html#ad61aad8232950c65bdff8b83abe92929',1,'fmt::v5::internal::make_value(const S &val)']]], + ['make_5fwprintf_5fargs',['make_wprintf_args',['../namespacefmt_1_1v5.html#a00613ec467c7dd2b621ee725398b19b0',1,'fmt::v5']]], + ['maroon',['maroon',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a04a3da97880fcedeb087378f29c3a102',1,'fmt::v5']]], + ['max_5fpacked_5fargs',['max_packed_args',['../namespacefmt_1_1v5_1_1internal.html#ad553d3adb090e46cde2de286a928a8c9a9a0a8f1a6f42d5a0e96eadee1aaf4e3b',1,'fmt::v5::internal']]], + ['max_5fsize',['max_size',['../classfmt_1_1v5_1_1basic__format__args.html#a7793770b464ca724fc86fcb199cd6d8b',1,'fmt::v5::basic_format_args']]], + ['mcrf4xx_5fcalc',['mcrf4xx_calc',['../class_fast_c_r_c16.html#aa127f7c21a5ab74c0c30619ade0181b4',1,'FastCRC16']]], + ['medium_5faquamarine',['medium_aquamarine',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a3971b68e2b89dbe29871b9061dff0af9',1,'fmt::v5']]], + ['medium_5fblue',['medium_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a73bdd29aeb8e3e3274bbb71c30d70eb7',1,'fmt::v5']]], + ['medium_5forchid',['medium_orchid',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0adfcfa24e3022fb4b704f051d98ec0557',1,'fmt::v5']]], + ['medium_5fpurple',['medium_purple',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a2a51478b9caafc3a28fef46a916cd92d',1,'fmt::v5']]], + ['medium_5fsea_5fgreen',['medium_sea_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ac5aaf97240e28904c5b96eab2cbf753b',1,'fmt::v5']]], + ['medium_5fslate_5fblue',['medium_slate_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a996976a37b7f6296cc3cbf388ac91cee',1,'fmt::v5']]], + ['medium_5fspring_5fgreen',['medium_spring_green',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5157a28c83d98d39066c60c83a6983f8',1,'fmt::v5']]], + ['medium_5fturquoise',['medium_turquoise',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a4db3022648c31d28b86ad95583d6c3c7',1,'fmt::v5']]], + ['medium_5fviolet_5fred',['medium_violet_red',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae8c7ad982a8c98a38c7e3381043b94d8',1,'fmt::v5']]], + ['memory_5fbuffer',['memory_buffer',['../namespacefmt_1_1v5.html#a87104ff0bbd588f55bbbadf592227d75',1,'fmt::v5']]], + ['midnight_5fblue',['midnight_blue',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a83d1d60e0de07e8b1bf164247a77e28b',1,'fmt::v5']]], + ['minor',['minor',['../struct_livox_sdk_version.html#a6bbcc9b12aa6c3aed826600325a57e46',1,'LivoxSdkVersion']]], + ['mint_5fcream',['mint_cream',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a28a62909f84c7a965ea755d99db1ca2b',1,'fmt::v5']]], + ['minus_5fflag',['MINUS_FLAG',['../namespacefmt_1_1v5.html#a2afc98455558e211af15ed1ad8c12bfaaaf7cf0b0f8341fafc6ab56b5c5c77f03',1,'fmt::v5']]], + ['minute',['minute',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a23fd5944d19602da875e39b45d66c737',1,'fmt::v5::internal::chrono_formatter']]], + ['misty_5frose',['misty_rose',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a0552f51c284790d9d0f4b43ebfa9f2a8',1,'fmt::v5']]], + ['moccasin',['moccasin',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0adc8a6c38cc98a2c29859c34b26974bc7',1,'fmt::v5']]], + ['monostate',['monostate',['../structfmt_1_1v5_1_1monostate.html',1,'fmt::v5']]], + ['months',['months',['../namespacespdlog_1_1details.html#ac9a2865e6c6a61f6e3f67e57cf24d55c',1,'spdlog::details']]], + ['mpmc_5fblocking_5fq_2eh',['mpmc_blocking_q.h',['../mpmc__blocking__q_8h.html',1,'']]], + ['mpmc_5fblocking_5fqueue',['mpmc_blocking_queue',['../classspdlog_1_1details_1_1mpmc__blocking__queue.html',1,'spdlog::details::mpmc_blocking_queue< T >'],['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#ace609561c8f631202988ec49f95422fa',1,'spdlog::details::mpmc_blocking_queue::mpmc_blocking_queue()']]], + ['mpmc_5fblocking_5fqueue_3c_20item_5ftype_20_3e',['mpmc_blocking_queue< item_type >',['../classspdlog_1_1details_1_1mpmc__blocking__queue.html',1,'spdlog::details']]], + ['ms',['ms',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ace51dbe524dffc062d59c9464587e9dd',1,'fmt::v5::internal::chrono_formatter']]], + ['msg_5fcounter_5f',['msg_counter_',['../classspdlog_1_1logger.html#a7ef1e291dcb766951fc5c25f110d775f',1,'spdlog::logger']]], + ['msg_5fid',['msg_id',['../structspdlog_1_1details_1_1log__msg.html#a8cbec91cdecd3cb4efe9cfa39d5d1d84',1,'spdlog::details::log_msg::msg_id()'],['../structspdlog_1_1details_1_1async__msg.html#a74136620d40e667dbfec1050c8e74179',1,'spdlog::details::async_msg::msg_id()']]], + ['msg_5ftype',['msg_type',['../structspdlog_1_1details_1_1async__msg.html#a02c7d8e28bc720dea6552042801a86c0',1,'spdlog::details::async_msg']]], + ['msvc_5fsink_2eh',['msvc_sink.h',['../msvc__sink_8h.html',1,'']]], + ['mutex',['mutex',['../structspdlog_1_1details_1_1console__mutex.html#a0eca5de786748bdfe509966a54b4d32f',1,'spdlog::details::console_mutex::mutex()'],['../structspdlog_1_1details_1_1console__nullmutex.html#a61016e82a5c02f104e04b58c53f8c95d',1,'spdlog::details::console_nullmutex::mutex()']]], + ['mutex_5f',['mutex_',['../classspdlog_1_1sinks_1_1base__sink.html#a929422554ce18d8bffd9b4d75cc7acf3',1,'spdlog::sinks::base_sink']]], + ['mutex_5ft',['mutex_t',['../structspdlog_1_1details_1_1console__mutex.html#a8c47cc70b6f1c3c7ddda2f919e4fae53',1,'spdlog::details::console_mutex::mutex_t()'],['../structspdlog_1_1details_1_1console__nullmutex.html#a8464e2d02b3800061339841b94400da5',1,'spdlog::details::console_nullmutex::mutex_t()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a99718be9a953edac6cae0371bc00fb2f',1,'spdlog::sinks::ansicolor_sink::mutex_t()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#a8546278774f901c3b5159876154e2eea',1,'spdlog::sinks::stdout_sink::mutex_t()']]] ]; diff --git a/docs/search/all_f.js b/docs/search/all_f.js index b0a647e..3a915b7 100644 --- a/docs/search/all_f.js +++ b/docs/search/all_f.js @@ -1,110 +1,37 @@ var searchData= [ - ['off',['off',['../namespacespdlog_1_1level.html#a35f5227e5daf228d28a207b7b2aefc8ba917591d8c0e89f6e6247c95c67809a1a',1,'spdlog::level']]], - ['old_5flace',['old_lace',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a5e84be20fb6dd068f5368e6d245460bd',1,'fmt::v5']]], - ['olive',['olive',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0af431b0eea3c08186ed101e588bfb3a2f',1,'fmt::v5']]], - ['olive_5fdrab',['olive_drab',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a2fe5734b0399752dfa2a0c93b6c75934',1,'fmt::v5']]], - ['on',['on',['../classfmt_1_1v5_1_1internal_1_1decimal__formatter.html#a1a6a63018f8b53729b183608f4baa79a',1,'fmt::v5::internal::decimal_formatter::on()'],['../classfmt_1_1v5_1_1internal_1_1decimal__formatter__null.html#aa973d156e8cd5038b4cbaa8ee7c2b021',1,'fmt::v5::internal::decimal_formatter_null::on()']]], - ['on_5f12_5fhour',['on_12_hour',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a95cd0458553c10a26bd580c73d528a2e',1,'fmt::v5::internal::chrono_format_checker::on_12_hour()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a2e3caddf766cdd91f70527ee6b1d5506',1,'fmt::v5::internal::chrono_formatter::on_12_hour()']]], - ['on_5f12_5fhour_5ftime',['on_12_hour_time',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a94a739330ac56034fb9bde5d89c1c2b8',1,'fmt::v5::internal::chrono_format_checker::on_12_hour_time()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#acabd988cd5815af1577389e5576359a5',1,'fmt::v5::internal::chrono_formatter::on_12_hour_time()']]], - ['on_5f24_5fhour',['on_24_hour',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#abc0fa900734b8934699a8705732f4394',1,'fmt::v5::internal::chrono_format_checker::on_24_hour()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#aa0e5243ab84d9be54fbfc85691f93a24',1,'fmt::v5::internal::chrono_formatter::on_24_hour()']]], - ['on_5f24_5fhour_5ftime',['on_24_hour_time',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aecf25d830a00bf920d3e366e946506f0',1,'fmt::v5::internal::chrono_format_checker::on_24_hour_time()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ac752c273d5033c35d1c8bd1aacc7efd4',1,'fmt::v5::internal::chrono_formatter::on_24_hour_time()']]], - ['on_5fabbr_5fmonth',['on_abbr_month',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a1b49b5b3497e4da015a75c0f5ad77f8a',1,'fmt::v5::internal::chrono_format_checker::on_abbr_month()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a8695bfe8c62948476e06fb866f1b5abd',1,'fmt::v5::internal::chrono_formatter::on_abbr_month()']]], - ['on_5fabbr_5fweekday',['on_abbr_weekday',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a75a9ec7180a8977b83bcaaba724f058f',1,'fmt::v5::internal::chrono_format_checker::on_abbr_weekday()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a9f368ece915dc9a49062e497ba8ffd3e',1,'fmt::v5::internal::chrono_formatter::on_abbr_weekday()']]], - ['on_5falign',['on_align',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a1a5c67ffa1e2120fbbb6ce62dd2b0c61',1,'fmt::v5::internal::specs_setter::on_align()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#abce5f587ed4b5a7461b1c2812e7650a7',1,'fmt::v5::internal::specs_checker::on_align()']]], - ['on_5fam_5fpm',['on_am_pm',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a98e676383a1103f987671d3ae77e108c',1,'fmt::v5::internal::chrono_format_checker::on_am_pm()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a1388824f7e836e2bd1158854a8167e16',1,'fmt::v5::internal::chrono_formatter::on_am_pm()']]], - ['on_5farg_5fid',['on_arg_id',['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a8f5842b3b1c1f74fdbfe1a7139166272',1,'fmt::v5::internal::format_string_checker::on_arg_id()'],['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a149ce0957470639d28afc84c3205db79',1,'fmt::v5::internal::format_string_checker::on_arg_id(unsigned id)'],['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a3acec6cf8e16fcae6dd75da1930684f6',1,'fmt::v5::internal::format_string_checker::on_arg_id(basic_string_view< Char >)'],['../structfmt_1_1v5_1_1format__handler.html#af45f0577c38773dae862118b947fd671',1,'fmt::v5::format_handler::on_arg_id()'],['../structfmt_1_1v5_1_1format__handler.html#a988c9b12cdd78f32d51c231134317a9a',1,'fmt::v5::format_handler::on_arg_id(unsigned id)'],['../structfmt_1_1v5_1_1format__handler.html#a32a2f523495547bcd97610b62d01a610',1,'fmt::v5::format_handler::on_arg_id(basic_string_view< Char > id)']]], - ['on_5fbin',['on_bin',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a34213cd8fddd550812e0e3dbc6fba583',1,'fmt::v5::internal::int_type_checker']]], - ['on_5fblack',['on_black',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ac887dfeac8f16dbd96128398333786f5',1,'spdlog::sinks::ansicolor_sink']]], - ['on_5fblue',['on_blue',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a8b4b2900e0db2ed81b1d87531c75db70',1,'spdlog::sinks::ansicolor_sink']]], - ['on_5fchar',['on_char',['../classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#a66e7f01c770f2002fe729864e0e85d7e',1,'fmt::v5::internal::char_specs_checker::on_char()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#ad45d0067f9a6f6edfe1c0f0a7ff50af5',1,'fmt::v5::internal::arg_formatter_base::char_spec_handler::on_char()']]], - ['on_5fcyan',['on_cyan',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a628bbe153b16a66b33566608794b82fc',1,'spdlog::sinks::ansicolor_sink']]], - ['on_5fdatetime',['on_datetime',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a1fb3b5911e2cfa3e99a19f660a4386a3',1,'fmt::v5::internal::chrono_format_checker::on_datetime()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#af3f1770368c80ca2261b51f14c96f0c1',1,'fmt::v5::internal::chrono_formatter::on_datetime()']]], - ['on_5fdec',['on_dec',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a249a93159605bb04c62fdfbd27d31547',1,'fmt::v5::internal::int_type_checker']]], - ['on_5fdec0_5fweekday',['on_dec0_weekday',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aef2fc6d8013c88e2b6589c015e4c826e',1,'fmt::v5::internal::chrono_format_checker::on_dec0_weekday()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a393e3b451800b1933a7c8814cba0035e',1,'fmt::v5::internal::chrono_formatter::on_dec0_weekday()']]], - ['on_5fdec1_5fweekday',['on_dec1_weekday',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a7ec73eba1f9686886b0cd6e73f69c5ed',1,'fmt::v5::internal::chrono_format_checker::on_dec1_weekday()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a6f2ea84fef033aff9e450320bd6c6adc',1,'fmt::v5::internal::chrono_formatter::on_dec1_weekday()']]], - ['on_5fdynamic_5fprecision',['on_dynamic_precision',['../classfmt_1_1v5_1_1internal_1_1specs__handler.html#a1e09219c0d595a59d9271600ecffcc7b',1,'fmt::v5::internal::specs_handler::on_dynamic_precision()'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a308cbb025165a2b6183eb1064919abb7',1,'fmt::v5::internal::dynamic_specs_handler::on_dynamic_precision()']]], - ['on_5fdynamic_5fwidth',['on_dynamic_width',['../classfmt_1_1v5_1_1internal_1_1specs__handler.html#a3577cd82b12c640ecd649dea25c1e4a6',1,'fmt::v5::internal::specs_handler::on_dynamic_width()'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#ad86ceb430a696429d7d9ccb2e295f725',1,'fmt::v5::internal::dynamic_specs_handler::on_dynamic_width()']]], - ['on_5ferror',['on_error',['../structfmt_1_1v5_1_1internal_1_1error__handler.html#af917438f30466b0b8cd4de4f8b549ab9',1,'fmt::v5::internal::error_handler::on_error()'],['../classfmt_1_1v5_1_1basic__parse__context.html#aa5e6f5d821319449d7569d5670b15c8e',1,'fmt::v5::basic_parse_context::on_error()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#a3760d881e55281f49c546d0102cda9f3',1,'fmt::v5::internal::context_base::on_error()'],['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a0006985aadbde8a6ac0234965afac80c',1,'fmt::v5::internal::int_type_checker::on_error()'],['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a6259e777a6b575e11c682d91d0be83ab',1,'fmt::v5::internal::float_type_checker::on_error()'],['../classfmt_1_1v5_1_1internal_1_1specs__handler.html#a4bb79b8a65ceec46b89cdd048abff739',1,'fmt::v5::internal::specs_handler::on_error()'],['../classfmt_1_1v5_1_1internal_1_1dynamic__specs__handler.html#a884a3f983b8dd92638bdcfc2efa0fef0',1,'fmt::v5::internal::dynamic_specs_handler::on_error()'],['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3d13e902cc03addce9102d21294260a6',1,'fmt::v5::internal::width_adapter::on_error()'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aa5e2b37a4b3cafed33be6fcc69bb8d98',1,'fmt::v5::internal::precision_adapter::on_error()'],['../structfmt_1_1v5_1_1internal_1_1id__adapter.html#a75ba87fda26a74c86407b89b4785fcc0',1,'fmt::v5::internal::id_adapter::on_error()'],['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#aa08622a95cb0dd13bc3295f347f2e5ac',1,'fmt::v5::internal::format_string_checker::on_error()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a44813c139c2754dcf56294433728ca44',1,'fmt::v5::float_spec_handler::on_error()']]], - ['on_5fexp',['on_exp',['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a022d595c17259f8b0df0e10f4397ca67',1,'fmt::v5::internal::float_type_checker::on_exp()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a08c5f4af9e7376bd3e21f6cc89b6b7a6',1,'fmt::v5::float_spec_handler::on_exp()']]], - ['on_5ffill',['on_fill',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a0109570b2d60f43af209bd9f42f81f50',1,'fmt::v5::internal::specs_setter']]], - ['on_5ffixed',['on_fixed',['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a28bc42a672af599e109938f34d58bb30',1,'fmt::v5::internal::float_type_checker::on_fixed()'],['../structfmt_1_1v5_1_1float__spec__handler.html#ace39bc5327e1dfafaff796b1e7cdd3df',1,'fmt::v5::float_spec_handler::on_fixed()']]], - ['on_5fformat_5fspecs',['on_format_specs',['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#af211eec79b6f10bba9828dd5bc486fb8',1,'fmt::v5::internal::format_string_checker::on_format_specs()'],['../structfmt_1_1v5_1_1format__handler.html#a10f0bb03d362ecb21a688778230e2925',1,'fmt::v5::format_handler::on_format_specs()']]], - ['on_5ffull_5fmonth',['on_full_month',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a73341707b4ec25420120be39cb1ad1f3',1,'fmt::v5::internal::chrono_format_checker::on_full_month()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a5219e7d23e107a5b02c3912cce41ba1c',1,'fmt::v5::internal::chrono_formatter::on_full_month()']]], - ['on_5ffull_5fweekday',['on_full_weekday',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a3ea0a9ac1f2f6a92e28fc14bdd9cf044',1,'fmt::v5::internal::chrono_format_checker::on_full_weekday()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a250161d0793ae68087d3d4b7c12c8e9b',1,'fmt::v5::internal::chrono_formatter::on_full_weekday()']]], - ['on_5fgeneral',['on_general',['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a0f7bbace087804f834170962a3751838',1,'fmt::v5::internal::float_type_checker::on_general()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a9ca4fbeb01db2a21cd1ce54a1e7d179c',1,'fmt::v5::float_spec_handler::on_general()']]], - ['on_5fgreen',['on_green',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#addc3addb0060ca767421a4a3149c4747',1,'spdlog::sinks::ansicolor_sink']]], - ['on_5fhash',['on_hash',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a02f2dcb84c84e7b7050cb380ca53f37b',1,'fmt::v5::internal::specs_setter::on_hash()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#a13f99fab9887df8c7e6502787a278bfb',1,'fmt::v5::internal::specs_checker::on_hash()']]], - ['on_5fhex',['on_hex',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a13ed97c71cee805fc3548feea42db5a5',1,'fmt::v5::internal::int_type_checker::on_hex()'],['../classfmt_1_1v5_1_1internal_1_1float__type__checker.html#a488c1569ecc390390de41642af877cf1',1,'fmt::v5::internal::float_type_checker::on_hex()'],['../structfmt_1_1v5_1_1float__spec__handler.html#a47c600fba7735d313592f3cbf97c5fe8',1,'fmt::v5::float_spec_handler::on_hex()']]], - ['on_5fint',['on_int',['../classfmt_1_1v5_1_1internal_1_1char__specs__checker.html#aaf74a0eb4908b6ac92930c068a39bf4d',1,'fmt::v5::internal::char_specs_checker::on_int()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html#aa48913a1f52a97dbba8436cd493810db',1,'fmt::v5::internal::arg_formatter_base::char_spec_handler::on_int()']]], - ['on_5fiso_5fdate',['on_iso_date',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a0eef44f4227621f82efdd96522a34cea',1,'fmt::v5::internal::chrono_format_checker::on_iso_date()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#aa41c3019274a95fe19f1abf2013311a3',1,'fmt::v5::internal::chrono_formatter::on_iso_date()']]], - ['on_5fiso_5ftime',['on_iso_time',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a2e995899ed1678d122629269247a911c',1,'fmt::v5::internal::chrono_format_checker::on_iso_time()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a27ccaaa51fec0226b7b508e9d21f02f7',1,'fmt::v5::internal::chrono_formatter::on_iso_time()']]], - ['on_5floc_5fdate',['on_loc_date',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#af00dab6f03010eb7c0e076f61949aa85',1,'fmt::v5::internal::chrono_format_checker::on_loc_date()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a998f57672158911587892e30b6442034',1,'fmt::v5::internal::chrono_formatter::on_loc_date()']]], - ['on_5floc_5ftime',['on_loc_time',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a5c580fdd162ee92928248fcbe380ced4',1,'fmt::v5::internal::chrono_format_checker::on_loc_time()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ad11342e8d7b36dc1fc82aa5e81e5a33c',1,'fmt::v5::internal::chrono_formatter::on_loc_time()']]], - ['on_5fmagenta',['on_magenta',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a0cf149033d141e033f2ffb4b239f84f6',1,'spdlog::sinks::ansicolor_sink']]], - ['on_5fminus',['on_minus',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a8a81bc15ccaed031629365ee8b57104d',1,'fmt::v5::internal::specs_setter::on_minus()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#a8e9c7bb30c9a44f86aaabd956358452b',1,'fmt::v5::internal::specs_checker::on_minus()']]], - ['on_5fminute',['on_minute',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a889e4a54d94853a3674df17d325e2cfc',1,'fmt::v5::internal::chrono_format_checker::on_minute()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a39304fcfe6bd5ba7cbf20d7dc8c25625',1,'fmt::v5::internal::chrono_formatter::on_minute()']]], - ['on_5fnum',['on_num',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#a38d3e72fdf277b4f7d431e83e96c943e',1,'fmt::v5::internal::int_type_checker']]], - ['on_5foct',['on_oct',['../classfmt_1_1v5_1_1internal_1_1int__type__checker.html#af209985f05390106353bc61242343ca7',1,'fmt::v5::internal::int_type_checker']]], - ['on_5fplus',['on_plus',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a1ec03a0f5d574c5dd31b0ebaa810029a',1,'fmt::v5::internal::specs_setter::on_plus()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#aa8f05ebfb4d08764760e94b3ed9d89c3',1,'fmt::v5::internal::specs_checker::on_plus()']]], - ['on_5fpointer',['on_pointer',['../classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#a56ab12958652d01caad11b75747d05d8',1,'fmt::v5::internal::cstring_type_checker::on_pointer()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a4bef3a86933f35c061589933b1fc36a2',1,'fmt::v5::internal::arg_formatter_base::cstring_spec_handler::on_pointer()']]], - ['on_5fprecision',['on_precision',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#aad41fe0a8b8b0f452f866e51d3dbf1b1',1,'fmt::v5::internal::specs_setter']]], - ['on_5fred',['on_red',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#aa66893db05fcfebc131c66b7db30ea49',1,'spdlog::sinks::ansicolor_sink']]], - ['on_5freplacement_5ffield',['on_replacement_field',['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a76c07cc9b08a444f3587b3382250107e',1,'fmt::v5::internal::format_string_checker::on_replacement_field()'],['../structfmt_1_1v5_1_1format__handler.html#ad2e95af5d37c6f9d3e996085c978cad2',1,'fmt::v5::format_handler::on_replacement_field()']]], - ['on_5fsecond',['on_second',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#aec0afcb1ea82fb8398061b69483726d1',1,'fmt::v5::internal::chrono_format_checker::on_second()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#abb96cb6058ee5cd88fff52e08951913f',1,'fmt::v5::internal::chrono_formatter::on_second()']]], - ['on_5fspace',['on_space',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a415ee68e15aa5943d16bcc24fecc5596',1,'fmt::v5::internal::specs_setter::on_space()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#af0240aa8eb685e3e6b5350e18fae20b2',1,'fmt::v5::internal::specs_checker::on_space()']]], - ['on_5fstring',['on_string',['../classfmt_1_1v5_1_1internal_1_1cstring__type__checker.html#acef9add1fb34d2d175a1dd92afdfe1e5',1,'fmt::v5::internal::cstring_type_checker::on_string()'],['../structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html#a519ca34f6bded5481821e4c0ad29a9ba',1,'fmt::v5::internal::arg_formatter_base::cstring_spec_handler::on_string()']]], - ['on_5ftext',['on_text',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#af565f6815eef5198d9d9f792346aa599',1,'fmt::v5::internal::chrono_format_checker::on_text()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a0ed40f7f5d0fb57d145b880699442049',1,'fmt::v5::internal::chrono_formatter::on_text()'],['../classfmt_1_1v5_1_1internal_1_1format__string__checker.html#a3fbe7d41bebcb3f3a2d29ebe3bf84dd5',1,'fmt::v5::internal::format_string_checker::on_text()'],['../structfmt_1_1v5_1_1format__handler.html#ac8c589250f37514c3fac3a123698ac01',1,'fmt::v5::format_handler::on_text()']]], - ['on_5ftype',['on_type',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#aa11c3c244e8b5343d50a9ba6407b0b24',1,'fmt::v5::internal::specs_setter']]], - ['on_5ftz_5fname',['on_tz_name',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a03ef6dd252f466dc9ef48e61adb97e62',1,'fmt::v5::internal::chrono_format_checker::on_tz_name()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ab8d234f82d65181090cdf1602871e485',1,'fmt::v5::internal::chrono_formatter::on_tz_name()']]], - ['on_5fus_5fdate',['on_us_date',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a5090856f227bd8922edeecf97ea8bc31',1,'fmt::v5::internal::chrono_format_checker::on_us_date()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#ae7113c63bfe389915537b985236ea3e2',1,'fmt::v5::internal::chrono_formatter::on_us_date()']]], - ['on_5futc_5foffset',['on_utc_offset',['../structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html#a401617e182eb83c9dbb3c17fce04029a',1,'fmt::v5::internal::chrono_format_checker::on_utc_offset()'],['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a437caae6cfab224f6f4d5ec7d32939d4',1,'fmt::v5::internal::chrono_formatter::on_utc_offset()']]], - ['on_5fwhite',['on_white',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#ab42fb978ba2ad9d004bf31903f0d0edc',1,'spdlog::sinks::ansicolor_sink']]], - ['on_5fwidth',['on_width',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a8ec97ee5743a7adb1d27793190004066',1,'fmt::v5::internal::specs_setter']]], - ['on_5fyellow',['on_yellow',['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a7450ec0f85ad82c7830b11e1f54f1606',1,'spdlog::sinks::ansicolor_sink']]], - ['on_5fzero',['on_zero',['../classfmt_1_1v5_1_1internal_1_1specs__setter.html#a5620d3455b48a3110b4b2b2312c9fb5a',1,'fmt::v5::internal::specs_setter::on_zero()'],['../classfmt_1_1v5_1_1internal_1_1specs__checker.html#a548e6a06b4a2d1af66f4acfe575e2a76',1,'fmt::v5::internal::specs_checker::on_zero()']]], - ['open',['open',['../classspdlog_1_1details_1_1file__helper.html#a8612066fd098080cc60e3aefed6a6085',1,'spdlog::details::file_helper']]], - ['open_5finterval',['open_interval',['../classspdlog_1_1details_1_1file__helper.html#aea72ea8d655bb11f19dbe48477e6c8b3',1,'spdlog::details::file_helper']]], - ['open_5ftries',['open_tries',['../classspdlog_1_1details_1_1file__helper.html#a22be952a421d866566eed3a5ce201144',1,'spdlog::details::file_helper']]], - ['operator_20_26',['operator &',['../classfmt_1_1v5_1_1text__style.html#a8f82651b0a8ae904452f333054ea1a64',1,'fmt::v5::text_style']]], - ['operator_20_2a',['operator *',['../structfmt_1_1v5_1_1internal_1_1checked__args.html#a27369b0b9836336f73f4719a2f4e9fa3',1,'fmt::v5::internal::checked_args::operator *()'],['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a79e3e8094b4d91acd6233a2f1bd69add',1,'fmt::v5::internal::counting_iterator::operator *()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a69069d1c78272aa6520fdee9fdd987d6',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::false_type >::operator *()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a390d19340dce95b689844db8c030707a',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::operator *()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a047900de1c609b1b67599b2e87e6be61',1,'fmt::v5::internal::null_terminating_iterator::operator *()'],['../namespacefmt_1_1v5_1_1internal.html#a1fa02ff736934db730c7545b4c840a4c',1,'fmt::v5::internal::operator *()']]], - ['operator_20bool',['operator bool',['../classfmt_1_1v5_1_1basic__format__arg.html#ac4eb1aac92345fa137b08888a2839313',1,'fmt::v5::basic_format_arg']]], - ['operator_20const_20char_20_2a',['operator const Char *',['../structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html#ae1694c33443324d13f7b79f17a5f5ad4',1,'fmt::v5::internal::ansi_color_escape']]], - ['operator_20int',['operator int',['../structfmt_1_1v5_1_1internal_1_1dummy__int.html#a9cc59ebeafaa73368d404b3f22de4d43',1,'fmt::v5::internal::dummy_int']]], - ['operator_20value_3c_20context_20_3e',['operator value< Context >',['../structfmt_1_1v5_1_1internal_1_1init.html#a033f79651b7bafcfe24e07f616e5285f',1,'fmt::v5::internal::init']]], - ['operator_21_3d',['operator!=',['../classfmt_1_1v5_1_1basic__string__view.html#a5ceb2a1bfa175c69d7bfda735e901d73',1,'fmt::v5::basic_string_view::operator!=()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a768ecde717e21463fb0a470fdd2db034',1,'fmt::v5::internal::null_terminating_iterator::operator!=()']]], - ['operator_26_3d',['operator&=',['../classfmt_1_1v5_1_1text__style.html#acb1535c94d8cc4d69b19c4170a78f7d0',1,'fmt::v5::text_style']]], - ['operator_28_29',['operator()',['../structfmt_1_1v5_1_1internal_1_1fill.html#a8ac696cf33afd220f17fea77b4fd9df2',1,'fmt::v5::internal::fill::operator()()'],['../structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html#ab9fe0f0042a2d6a65a907a58a2a387b2',1,'fmt::v5::internal::no_thousands_sep::operator()()'],['../classfmt_1_1v5_1_1internal_1_1add__thousands__sep.html#a2b67cdb6e9828877661e6fd9348206f3',1,'fmt::v5::internal::add_thousands_sep::operator()()'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a8ae25aadcb11be0f632537d24bc3ba37',1,'fmt::v5::internal::arg_formatter_base::operator()(monostate)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a05e90e22d2222c1c458d625f8559599a',1,'fmt::v5::internal::arg_formatter_base::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a4c6d77344d1e2c8327965b544adb03fb',1,'fmt::v5::internal::arg_formatter_base::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#ae20e743a85c240feefa62a82cb81d836',1,'fmt::v5::internal::arg_formatter_base::operator()(const char_type *value)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a59b215cea8bf6e89883b58c47d4f0d94',1,'fmt::v5::internal::arg_formatter_base::operator()(basic_string_view< char_type > value)'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a793d82c248d310c8b1bdf06b00a9bdf8',1,'fmt::v5::internal::arg_formatter_base::operator()(const void *value)'],['../classfmt_1_1v5_1_1internal_1_1custom__formatter.html#a42116f5a926129d0caee0c8996923458',1,'fmt::v5::internal::custom_formatter::operator()(typename basic_format_arg< Context >::handle h) const'],['../classfmt_1_1v5_1_1internal_1_1custom__formatter.html#a6561dbaebd329e3fcf614224764b860f',1,'fmt::v5::internal::custom_formatter::operator()(T) const'],['../classfmt_1_1v5_1_1internal_1_1width__checker.html#a69ee4d46cb35d94fdc14aeb469781957',1,'fmt::v5::internal::width_checker::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1width__checker.html#a5cbe5b8226dc90636572d2e0d2b30c01',1,'fmt::v5::internal::width_checker::operator()(T)'],['../classfmt_1_1v5_1_1internal_1_1precision__checker.html#aef64950df9269488dea1a8f1c91fc3bc',1,'fmt::v5::internal::precision_checker::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1precision__checker.html#a091ba51843b08d80ef6d332adf95949a',1,'fmt::v5::internal::precision_checker::operator()(T)'],['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3f0b73ae2cec14566f76d0f5977dc32c',1,'fmt::v5::internal::width_adapter::operator()()'],['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#ac02c304cf7b266259fd689c7c336935d',1,'fmt::v5::internal::width_adapter::operator()(unsigned id)'],['../structfmt_1_1v5_1_1internal_1_1width__adapter.html#a3b64e9078c79528825385b55cbf1e34c',1,'fmt::v5::internal::width_adapter::operator()(basic_string_view< Char > id)'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#a428b2cb22f69719987193e9b49f4bf9d',1,'fmt::v5::internal::precision_adapter::operator()()'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#a36e54d0d8eca245cbb452460373122df',1,'fmt::v5::internal::precision_adapter::operator()(unsigned id)'],['../structfmt_1_1v5_1_1internal_1_1precision__adapter.html#aa71ca1e30b68b25348bb19bb2e056869',1,'fmt::v5::internal::precision_adapter::operator()(basic_string_view< Char > id)'],['../structfmt_1_1v5_1_1internal_1_1id__adapter.html#ae84a96563d3159d5749665b00f000758',1,'fmt::v5::internal::id_adapter::operator()()'],['../structfmt_1_1v5_1_1internal_1_1id__adapter.html#a64e5a16f6183b57476f9e15af2aaf866',1,'fmt::v5::internal::id_adapter::operator()(unsigned id)'],['../structfmt_1_1v5_1_1internal_1_1id__adapter.html#a281a7335138c4e7a2bb5f9c7456659e8',1,'fmt::v5::internal::id_adapter::operator()(basic_string_view< Char > id)'],['../classfmt_1_1v5_1_1arg__formatter.html#a093e3203258d2dfa3fa0282cb41c6b4d',1,'fmt::v5::arg_formatter::operator()()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html#a794e755eaf559c53f20a9274c41df923',1,'fmt::v5::basic_writer::int_writer::dec_writer::operator()()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html#a2b4729fa9db4af17aa1a0aa3c047176d',1,'fmt::v5::basic_writer::int_writer::hex_writer::operator()()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html#aaca6095ee92b5ffe5b8a2477667f296d',1,'fmt::v5::basic_writer::int_writer::bin_writer::operator()()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html#a0d63aada88f995eecf3b6a416d5c041f',1,'fmt::v5::basic_writer::int_writer::num_writer::operator()()'],['../classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html#a6220270ad9933076a07d97d5f140d835',1,'fmt::v5::internal::printf_precision_handler::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1printf__precision__handler.html#ad5d83f423cc9b8e8913d6f1cbe6a7d3d',1,'fmt::v5::internal::printf_precision_handler::operator()(T)'],['../classfmt_1_1v5_1_1internal_1_1is__zero__int.html#a19ee91e091c76fe269e401b15ea7eff3',1,'fmt::v5::internal::is_zero_int::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1is__zero__int.html#a3af159d2914d8de6ef0516c86da2a481',1,'fmt::v5::internal::is_zero_int::operator()(T)'],['../classfmt_1_1v5_1_1internal_1_1arg__converter.html#ab0794cf47439d7e560916c9b4d565320',1,'fmt::v5::internal::arg_converter::operator()(bool value)'],['../classfmt_1_1v5_1_1internal_1_1arg__converter.html#a84121ff1b1f0533ad51bff04bf0eb77b',1,'fmt::v5::internal::arg_converter::operator()(U value)'],['../classfmt_1_1v5_1_1internal_1_1arg__converter.html#a8405b74eeb4825deead78fd5e508b4ed',1,'fmt::v5::internal::arg_converter::operator()(U)'],['../classfmt_1_1v5_1_1internal_1_1char__converter.html#ad2751b0df568ddd4130d2f5ddc39c29b',1,'fmt::v5::internal::char_converter::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1char__converter.html#a36eebf1fb8156ed284c270b2a7c713bd',1,'fmt::v5::internal::char_converter::operator()(T)'],['../classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a9abe7a6b4e53386ffd7d261dffc38385',1,'fmt::v5::internal::printf_width_handler::operator()(T value)'],['../classfmt_1_1v5_1_1internal_1_1printf__width__handler.html#a3a935a65cddc273eb6eceede698c9b1d',1,'fmt::v5::internal::printf_width_handler::operator()(T)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a22240208526549d9d65250ee2d82c118',1,'fmt::v5::printf_arg_formatter::operator()(T value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#af46ac008c63fe91ec5e60ba5ed9fb3ba',1,'fmt::v5::printf_arg_formatter::operator()(T value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a417fd64792fc9869670cc1abbbdb79d0',1,'fmt::v5::printf_arg_formatter::operator()(const char *value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a3cbb7f33e396d8a644a118e4434c5b81',1,'fmt::v5::printf_arg_formatter::operator()(const wchar_t *value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a9060b8f9cef005edf81af5d70d162668',1,'fmt::v5::printf_arg_formatter::operator()(basic_string_view< char_type > value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#ae47a63e9e03c8a3470c0ada1dc351837',1,'fmt::v5::printf_arg_formatter::operator()(monostate value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a8365e0442d0fece054b41d7e2ae7b13f',1,'fmt::v5::printf_arg_formatter::operator()(const void *value)'],['../classfmt_1_1v5_1_1printf__arg__formatter.html#a7a7f1491adb37d14a9083a6bba1cb3c8',1,'fmt::v5::printf_arg_formatter::operator()(typename basic_format_arg< context_type >::handle handle)']]], - ['operator_2b',['operator+',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a65a6dc37670afbdb757175eca7e87ef6',1,'fmt::v5::internal::null_terminating_iterator']]], - ['operator_2b_2b',['operator++',['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#a5f49bbf0aec176d242443c81811b439c',1,'fmt::v5::internal::counting_iterator::operator++()'],['../classfmt_1_1v5_1_1internal_1_1counting__iterator.html#ab92c73e74847673855c24767e21430dd',1,'fmt::v5::internal::counting_iterator::operator++(int)'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#a3e3eaa69e1f7a8302cc9be5f0ce76a98',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::false_type >::operator++()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1false__type_01_4.html#ab2c94df15db5ebd65b8f4164cc16431d',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::false_type >::operator++(int)'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#adacdaff3cef2aca38eb851d4b2f38cac',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::operator++()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a2314451849f79cbc4c302dc97dff64c7',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::operator++(int)'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a78ee94466140c7d086d3ce3ef87ec79f',1,'fmt::v5::internal::null_terminating_iterator::operator++()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a5ca7f8621af24ad5f3dde243d132fb6d',1,'fmt::v5::internal::null_terminating_iterator::operator++(int)']]], - ['operator_2b_3d',['operator+=',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a5ed8769f6e99acd27c34d5cacfb6ab1d',1,'fmt::v5::internal::null_terminating_iterator']]], - ['operator_2d',['operator-',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a862bae07a99e36fe5017e4ee3cccfefe',1,'fmt::v5::internal::null_terminating_iterator::operator-(difference_type n)'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#a3c15e34c777dfd9111db29bfa338ada2',1,'fmt::v5::internal::null_terminating_iterator::operator-(null_terminating_iterator other) const'],['../namespacefmt_1_1v5_1_1internal.html#a96be9ab86d7703a1aace4eda80007e69',1,'fmt::v5::internal::operator-()']]], - ['operator_2d_2d',['operator--',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#af9870396209e1408dafa552aa8c5a867',1,'fmt::v5::internal::null_terminating_iterator']]], - ['operator_3c',['operator<',['../classfmt_1_1v5_1_1basic__string__view.html#a0e53f2258bbcde6cc8426b0a0755029b',1,'fmt::v5::basic_string_view']]], - ['operator_3c_3d',['operator<=',['../classfmt_1_1v5_1_1basic__string__view.html#a9b92d9c7a937c6945253fd8adfba7803',1,'fmt::v5::basic_string_view']]], - ['operator_3d',['operator=',['../classspdlog_1_1details_1_1file__helper.html#a7c7314360e404efa02326feb7aa98442',1,'spdlog::details::file_helper::operator=()'],['../classspdlog_1_1details_1_1z__formatter.html#aea05e7a7a960bb9450b00aa9558e78fe',1,'spdlog::details::z_formatter::operator=()'],['../classspdlog_1_1pattern__formatter.html#a868ba15a181c7a407780aaa84902de31',1,'spdlog::pattern_formatter::operator=()'],['../classspdlog_1_1details_1_1periodic__worker.html#a81c0461ef77f85295b93991749df746b',1,'spdlog::details::periodic_worker::operator=()'],['../classspdlog_1_1details_1_1registry.html#a12da238b4eda17829b194b36f383e8a0',1,'spdlog::details::registry::operator=()'],['../structspdlog_1_1details_1_1async__msg.html#a963cf593d81367843c4347603a18c5f8',1,'spdlog::details::async_msg::operator=()'],['../classspdlog_1_1details_1_1thread__pool.html#a1a62f3ab1474d69cd1e25143664e856d',1,'spdlog::details::thread_pool::operator=()'],['../classfmt_1_1v5_1_1basic__memory__buffer.html#a04e7e682d636a65fa60fb0a5b78fa98d',1,'fmt::v5::basic_memory_buffer::operator=()'],['../classfmt_1_1v5_1_1internal_1_1truncating__iterator_3_01_output_it_00_01std_1_1true__type_01_4.html#a9135efbc2c3a9c304e49eb092c85131d',1,'fmt::v5::internal::truncating_iterator< OutputIt, std::true_type >::operator=()'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#ae2a99fa912b67cda62fcce7a7c7bc976',1,'fmt::v5::internal::arg_ref::operator=()'],['../classfmt_1_1v5_1_1buffered__file.html#a74bd895df8fc7612ed57b267272d0d6e',1,'fmt::v5::buffered_file::operator=()'],['../classfmt_1_1v5_1_1file.html#ad3bb617d365c213a074264b39a2e1f46',1,'fmt::v5::file::operator=()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ae5c938544e66e266f119f25ec4ab27ca',1,'fmt::v5::internal::null_terminating_iterator::operator=()'],['../classspdlog_1_1logger.html#afd373cd857f49de170d9a23f1dd34bc0',1,'spdlog::logger::operator=()'],['../classspdlog_1_1sinks_1_1ansicolor__sink.html#a7d2fcd5a2f9a3f02e64648a609a45fb1',1,'spdlog::sinks::ansicolor_sink::operator=()'],['../classspdlog_1_1sinks_1_1base__sink.html#a1b99823aeb2513a891bba168639421a9',1,'spdlog::sinks::base_sink::operator=()'],['../classspdlog_1_1sinks_1_1dist__sink.html#a6f91b5522c12fd448ca2fd7cb8fe0097',1,'spdlog::sinks::dist_sink::operator=()'],['../classspdlog_1_1sinks_1_1ostream__sink.html#a727591b2a4ca044848cacccfca4eb3af',1,'spdlog::sinks::ostream_sink::operator=()'],['../classspdlog_1_1sinks_1_1stdout__sink.html#a0bee23de61cbea7c1dfb5e8712a98d74',1,'spdlog::sinks::stdout_sink::operator=()'],['../classspdlog_1_1sinks_1_1syslog__sink.html#a3e2454370f91c3fe2befb3f24e25ede7',1,'spdlog::sinks::syslog_sink::operator=()'],['../classspdlog_1_1sinks_1_1wincolor__sink.html#a54ca784b8f5e1ee9c2adcda3125c3515',1,'spdlog::sinks::wincolor_sink::operator=()']]], - ['operator_3d_3d',['operator==',['../classfmt_1_1v5_1_1basic__string__view.html#abbcc283ebd35db4ae2d5365a0861a2e2',1,'fmt::v5::basic_string_view']]], - ['operator_3e',['operator>',['../classfmt_1_1v5_1_1basic__string__view.html#a78b8913fe704e33269d9baa6f310b9b8',1,'fmt::v5::basic_string_view']]], - ['operator_3e_3d',['operator>=',['../classfmt_1_1v5_1_1basic__string__view.html#a13611d21d36e30193ebaf50463cbe75e',1,'fmt::v5::basic_string_view::operator>=()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ad164270aa9d019ca4e07c56e8b44d2c3',1,'fmt::v5::internal::null_terminating_iterator::operator>=()']]], - ['operator_5b_5d',['operator[]',['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a2f3ec418e47e041ffd5628d10ef80f56',1,'fmt::v5::internal::basic_buffer::operator[](std::size_t index)'],['../classfmt_1_1v5_1_1internal_1_1basic__buffer.html#a97721e13c38c6fd4a305067b61004b42',1,'fmt::v5::internal::basic_buffer::operator[](std::size_t index) const']]], - ['operator_7c',['operator|',['../classfmt_1_1v5_1_1text__style.html#ab8ce8b037913d539e5a753d513297f14',1,'fmt::v5::text_style::operator|()'],['../namespacefmt_1_1v5.html#a7e5a3d7f521a367387e1191c7893a240',1,'fmt::v5::operator|()']]], - ['operator_7c_3d',['operator|=',['../classfmt_1_1v5_1_1text__style.html#aab30ce069feb1260eb2f51b92b3c61c4',1,'fmt::v5::text_style']]], - ['orange',['orange',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0afe01d67a002dfa0f3ac084298142eccd',1,'fmt::v5']]], - ['orange_5fred',['orange_red',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0ae962684214d1c84dbc6a691b6d9eb60c',1,'fmt::v5']]], - ['orchid',['orchid',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a93b1453c8ec5a548389c935052536ccb',1,'fmt::v5']]], - ['os_2eh',['os.h',['../os_8h.html',1,'']]], - ['ostr_2eh',['ostr.h',['../ostr_8h.html',1,'']]], - ['ostream_2eh',['ostream.h',['../ostream_8h.html',1,'']]], - ['ostream_5f',['ostream_',['../classspdlog_1_1sinks_1_1ostream__sink.html#a53db4ea84203737b100365438d1951b4',1,'spdlog::sinks::ostream_sink']]], - ['ostream_5fsink',['ostream_sink',['../classspdlog_1_1sinks_1_1ostream__sink.html',1,'spdlog::sinks::ostream_sink< Mutex >'],['../classspdlog_1_1sinks_1_1ostream__sink.html#aa038c6518dc69c08a1251e7469bc4fd8',1,'spdlog::sinks::ostream_sink::ostream_sink(std::ostream &os, bool force_flush=false)'],['../classspdlog_1_1sinks_1_1ostream__sink.html#a761f1c26210fe42673af4734b38fe167',1,'spdlog::sinks::ostream_sink::ostream_sink(const ostream_sink &)=delete']]], - ['ostream_5fsink_2eh',['ostream_sink.h',['../ostream__sink_8h.html',1,'']]], - ['ostream_5fsink_5fmt',['ostream_sink_mt',['../namespacespdlog_1_1sinks.html#aeef023d4552e1e9be997bec2aa2fb184',1,'spdlog::sinks']]], - ['ostream_5fsink_5fst',['ostream_sink_st',['../namespacespdlog_1_1sinks.html#a7c6131fdceb0975b2700d70994a6b351',1,'spdlog::sinks']]], - ['out',['out',['../structfmt_1_1v5_1_1internal_1_1chrono__formatter.html#a269fbfd37ea5e35b04d8ff1fd991138d',1,'fmt::v5::internal::chrono_formatter::out()'],['../structfmt_1_1v5_1_1format__to__n__result.html#a03f23327f9690a2407193ad112a1b65d',1,'fmt::v5::format_to_n_result::out()'],['../classfmt_1_1v5_1_1internal_1_1context__base.html#aa8255081d2498a11c4d0db766907709c',1,'fmt::v5::internal::context_base::out()'],['../classfmt_1_1v5_1_1internal_1_1arg__formatter__base.html#a8890ae003e8b00eed900cd18d216cf48',1,'fmt::v5::internal::arg_formatter_base::out()'],['../classfmt_1_1v5_1_1basic__writer.html#a0bad6b95b096ed85f9db16c66c72bec9',1,'fmt::v5::basic_writer::out()']]], - ['out_5f',['out_',['../classfmt_1_1v5_1_1internal_1_1truncating__iterator__base.html#a1549daf80c73bb341ed33dbe97d9c8a5',1,'fmt::v5::internal::truncating_iterator_base']]], - ['output_5frange',['output_range',['../classfmt_1_1v5_1_1output__range.html',1,'fmt::v5::output_range< OutputIt, T >'],['../classfmt_1_1v5_1_1output__range.html#a1c35641258830babeb553b03a6bc802b',1,'fmt::v5::output_range::output_range()']]], - ['output_5frange_3c_20std_3a_3aback_5finsert_5fiterator_3c_20container_20_3e_20_3e',['output_range< std::back_insert_iterator< Container > >',['../classfmt_1_1v5_1_1output__range.html',1,'fmt::v5']]], - ['overflow',['overflow',['../classfmt_1_1v5_1_1internal_1_1formatbuf.html#a9dfaa03638d438c79cd2d3bfa597d077',1,'fmt::v5::internal::formatbuf']]], - ['overrun_5fcounter',['overrun_counter',['../classspdlog_1_1details_1_1circular__q.html#a2f683dc45eca25efad9e415cf73c7ea0',1,'spdlog::details::circular_q::overrun_counter()'],['../classspdlog_1_1details_1_1mpmc__blocking__queue.html#a15e3d12dff953034d5aad5590b8282cd',1,'spdlog::details::mpmc_blocking_queue::overrun_counter()'],['../classspdlog_1_1details_1_1thread__pool.html#adc34920f65797d8f54986dc1894a8804',1,'spdlog::details::thread_pool::overrun_counter()']]], - ['overrun_5foldest',['overrun_oldest',['../namespacespdlog.html#a42e109759a11c9514d3f6313a7709852a6d09cc54ae10145444aa2f43fe46d9f2',1,'spdlog']]] + ['n',['n',['../structfmt_1_1v5_1_1internal_1_1fill.html#af4901adffe747a5563f73ec9e640420c',1,'fmt::v5::internal::fill']]], + ['name',['NAME',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69abf8b717453e333c567d68786e862acfa',1,'fmt::v5::internal::arg_ref::NAME()'],['../structfmt_1_1v5_1_1internal_1_1named__arg__base.html#a593f217f9b351886a0312a816be51be1',1,'fmt::v5::internal::named_arg_base::name()'],['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#af240860ec3c7ab05495ec8380b3e3479',1,'fmt::v5::internal::arg_ref::name()'],['../classspdlog_1_1logger.html#ac7c6ed0f30ace90402254dc2d3ef1453',1,'spdlog::logger::name()']]], + ['name_5f',['name_',['../classspdlog_1_1logger.html#aad05282c338eb617ca260e40ab8134bc',1,'spdlog::logger']]], + ['name_5fformatter',['name_formatter',['../classspdlog_1_1details_1_1name__formatter.html',1,'spdlog::details::name_formatter'],['../classspdlog_1_1details_1_1name__formatter.html#a03bf01931018c5c2cd9dcbff64233d6e',1,'spdlog::details::name_formatter::name_formatter()']]], + ['named_5farg',['named_arg',['../structfmt_1_1v5_1_1internal_1_1named__arg.html',1,'fmt::v5::internal::named_arg< T, Char >'],['../structfmt_1_1v5_1_1internal_1_1named__arg.html#a3b6203a5a5308065fc90392a293fed93',1,'fmt::v5::internal::named_arg::named_arg()']]], + ['named_5farg_5fbase',['named_arg_base',['../structfmt_1_1v5_1_1internal_1_1named__arg__base.html',1,'fmt::v5::internal::named_arg_base< Char >'],['../structfmt_1_1v5_1_1internal_1_1named__arg__base.html#acb59c24062e1fccd674816adce9558b6',1,'fmt::v5::internal::named_arg_base::named_arg_base()']]], + ['named_5farg_5ftype',['named_arg_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13aa7a6f8b82db485f179833d300de9d139',1,'fmt::v5::internal']]], + ['navajo_5fwhite',['navajo_white',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0a667b2e78d0dabb83c2ec684e3b4253b1',1,'fmt::v5']]], + ['navy',['navy',['../namespacefmt_1_1v5.html#afcb360f8436b357c4d6f62a3fd73afc0af3311d3d14c8437553bf3e3f90920736',1,'fmt::v5']]], + ['needacktype',['NeedAckType',['../namespacelivox.html#afeebe28eda25022afdc079c1aaff209c',1,'livox']]], + ['needs_5fconversion',['needs_conversion',['../structfmt_1_1v5_1_1internal_1_1needs__conversion.html',1,'fmt::v5::internal']]], + ['next_5farg',['next_arg',['../classfmt_1_1v5_1_1basic__format__context.html#ac5b96279f3ca0db9c1879e7c33551985',1,'fmt::v5::basic_format_context']]], + ['next_5farg_5fid',['next_arg_id',['../classfmt_1_1v5_1_1basic__parse__context.html#a904ad0013ff0d1e633218bcf1810592d',1,'fmt::v5::basic_parse_context']]], + ['no_5fformatter_5ferror',['no_formatter_error',['../structfmt_1_1v5_1_1internal_1_1no__formatter__error.html',1,'fmt::v5::internal']]], + ['no_5fthousands_5fsep',['no_thousands_sep',['../structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html',1,'fmt::v5::internal']]], + ['none',['NONE',['../structfmt_1_1v5_1_1internal_1_1arg__ref.html#a506047c25d9e5272850b4efe1b2fba69af74dc3a4fdb7441bc5d0a3885e6b22b4',1,'fmt::v5::internal::arg_ref']]], + ['none_5ftype',['none_type',['../namespacefmt_1_1v5_1_1internal.html#af8b98afef956b03a99bc61d088705f13a782542b1b5c4dd8c67d2d015aeb79ee9',1,'fmt::v5::internal']]], + ['normalize',['normalize',['../classfmt_1_1v5_1_1internal_1_1fp.html#ab59ad7dfcd4ed603592d93cf4b7aaa42',1,'fmt::v5::internal::fp']]], + ['now',['now',['../namespacespdlog_1_1details_1_1os.html#a0128efefe7b8bbf3b3ba58a1f7a309dd',1,'spdlog::details::os']]], + ['null',['null',['../structfmt_1_1v5_1_1internal_1_1null.html',1,'fmt::v5::internal']]], + ['null_5fatomic_5fint',['null_atomic_int',['../structspdlog_1_1details_1_1null__atomic__int.html',1,'spdlog::details::null_atomic_int'],['../structspdlog_1_1details_1_1null__atomic__int.html#af41bb35b91f4a0195ab1cd8688fc1ccc',1,'spdlog::details::null_atomic_int::null_atomic_int()=default'],['../structspdlog_1_1details_1_1null__atomic__int.html#aa9856518fa8bc88f466b2b9c17bff1b9',1,'spdlog::details::null_atomic_int::null_atomic_int(int val)']]], + ['null_5flogger_5fmt',['null_logger_mt',['../namespacespdlog.html#a6d6344c349d1c6d957d5f21f4387c8f8',1,'spdlog']]], + ['null_5flogger_5fst',['null_logger_st',['../namespacespdlog.html#af6a7d6f86b50ab1c5c346949ca5af564',1,'spdlog']]], + ['null_5fmutex',['null_mutex',['../structspdlog_1_1details_1_1null__mutex.html',1,'spdlog::details']]], + ['null_5fmutex_2eh',['null_mutex.h',['../null__mutex_8h.html',1,'']]], + ['null_5fsink',['null_sink',['../classspdlog_1_1sinks_1_1null__sink.html',1,'spdlog::sinks']]], + ['null_5fsink_2eh',['null_sink.h',['../null__sink_8h.html',1,'']]], + ['null_5fsink_5fmt',['null_sink_mt',['../namespacespdlog_1_1sinks.html#a0712014c0dae16e0b332d3caba31435a',1,'spdlog::sinks']]], + ['null_5fsink_5fst',['null_sink_st',['../namespacespdlog_1_1sinks.html#a44a99e8a56b2f902ffd50da4f8628100',1,'spdlog::sinks']]], + ['null_5fterminating_5fiterator',['null_terminating_iterator',['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html',1,'fmt::v5::internal::null_terminating_iterator< Char >'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ab1bc138b0ba1989222557dc92c53fe1f',1,'fmt::v5::internal::null_terminating_iterator::null_terminating_iterator()'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#ac03548f66b12217a2ed1bce77729b1c1',1,'fmt::v5::internal::null_terminating_iterator::null_terminating_iterator(const Char *ptr, const Char *end)'],['../classfmt_1_1v5_1_1internal_1_1null__terminating__iterator.html#acd09cb49aec23c8912be032da932545c',1,'fmt::v5::internal::null_terminating_iterator::null_terminating_iterator(const Range &r)']]], + ['num_5fdigits',['num_digits',['../structfmt_1_1v5_1_1internal_1_1gen__digits__params.html#ae5d119f024f6844f366eacbb80dc905b',1,'fmt::v5::internal::gen_digits_params::num_digits()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html#a481aea3f8ddd9813b012e00d1e39348d',1,'fmt::v5::basic_writer::int_writer::dec_writer::num_digits()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html#a00aa69723c38070f04aadeb0ad0c375d',1,'fmt::v5::basic_writer::int_writer::hex_writer::num_digits()'],['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html#af957d7cd5b03d0094f3601d8421ae6f7',1,'fmt::v5::basic_writer::int_writer::bin_writer::num_digits()']]], + ['num_5fwriter',['num_writer',['../structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html',1,'fmt::v5::basic_writer::int_writer']]], + ['numeric_5flimits_3c_20fmt_3a_3ainternal_3a_3adummy_5fint_20_3e',['numeric_limits< fmt::internal::dummy_int >',['../classstd_1_1numeric__limits_3_01fmt_1_1internal_1_1dummy__int_01_4.html',1,'std']]], + ['numeric_5fsystem',['numeric_system',['../namespacefmt_1_1v5_1_1internal.html#a8217980ba3189c7d8c3ce93f7d8e4c74',1,'fmt::v5::internal']]] ]; diff --git a/docs/search/files_a.js b/docs/search/files_a.js index 0b77ed0..1fda0a9 100644 --- a/docs/search/files_a.js +++ b/docs/search/files_a.js @@ -1,6 +1,7 @@ var searchData= [ ['ranges_2eh',['ranges.h',['../ranges_8h.html',1,'']]], + ['readme_2emd',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]], ['registry_2eh',['registry.h',['../registry_8h.html',1,'']]], ['rotating_5ffile_5fsink_2eh',['rotating_file_sink.h',['../rotating__file__sink_8h.html',1,'']]] ]; diff --git a/docs/search/pages_0.html b/docs/search/pages_0.html new file mode 100644 index 0000000..3d06b05 --- /dev/null +++ b/docs/search/pages_0.html @@ -0,0 +1,30 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/docs/search/pages_0.js b/docs/search/pages_0.js new file mode 100644 index 0000000..2936573 --- /dev/null +++ b/docs/search/pages_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['1_20introduction',['1 Introduction',['../index.html',1,'']]] +]; diff --git a/docs/search/searchdata.js b/docs/search/searchdata.js index dcc5485..fc46aca 100644 --- a/docs/search/searchdata.js +++ b/docs/search/searchdata.js @@ -1,6 +1,6 @@ var indexSectionsWithContent = { - 0: "_abcdefghijklmnopqrstuvwxyz~", + 0: "1_abcdefghijklmnopqrstuvwxyz~", 1: "abcdefghilmnoprstuvwyz", 2: "fls", 3: "abcdflmnoprstvw", @@ -10,7 +10,8 @@ var indexSectionsWithContent = 7: "acdeklnprt", 8: "abcdefghiklmnoprstuvwy", 9: "bdfilopv", - 10: "_fkls" + 10: "_fkls", + 11: "1" }; var indexSectionNames = @@ -25,7 +26,8 @@ var indexSectionNames = 7: "enums", 8: "enumvalues", 9: "related", - 10: "defines" + 10: "defines", + 11: "pages" }; var indexSectionLabels = @@ -40,6 +42,7 @@ var indexSectionLabels = 7: "Enumerations", 8: "Enumerator", 9: "Friends", - 10: "Macros" + 10: "Macros", + 11: "Pages" }; diff --git a/docs/sink_8h.html b/docs/sink_8h.html index c62eae4..51587ad 100644 --- a/docs/sink_8h.html +++ b/docs/sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/sink_8h_source.html b/docs/sink_8h_source.html index 422c3f4..3412b51 100644 --- a/docs/sink_8h_source.html +++ b/docs/sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/spdlog_8h.html b/docs/spdlog_8h.html index 0b06c6b..8f56e4c 100644 --- a/docs/spdlog_8h.html +++ b/docs/spdlog_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/spdlog_8h_source.html b/docs/spdlog_8h_source.html index 1a89805..7a9d576 100644 --- a/docs/spdlog_8h_source.html +++ b/docs/spdlog_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/stdout__color__sinks_8h.html b/docs/stdout__color__sinks_8h.html index 5268017..1e044bc 100644 --- a/docs/stdout__color__sinks_8h.html +++ b/docs/stdout__color__sinks_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/stdout__color__sinks_8h_source.html b/docs/stdout__color__sinks_8h_source.html index aa20bfb..b0e8e2e 100644 --- a/docs/stdout__color__sinks_8h_source.html +++ b/docs/stdout__color__sinks_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/stdout__sinks_8h.html b/docs/stdout__sinks_8h.html index 1fb6428..9f538e8 100644 --- a/docs/stdout__sinks_8h.html +++ b/docs/stdout__sinks_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/stdout__sinks_8h_source.html b/docs/stdout__sinks_8h_source.html index d03efdb..dbe7d35 100644 --- a/docs/stdout__sinks_8h_source.html +++ b/docs/stdout__sinks_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_broadcast_device_info-members.html b/docs/struct_broadcast_device_info-members.html index da0d335..11327e1 100644 --- a/docs/struct_broadcast_device_info-members.html +++ b/docs/struct_broadcast_device_info-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_broadcast_device_info.html b/docs/struct_broadcast_device_info.html index 90ca4c6..0300090 100644 --- a/docs/struct_broadcast_device_info.html +++ b/docs/struct_broadcast_device_info.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_connected_lidar_info-members.html b/docs/struct_connected_lidar_info-members.html index 1dff9be..edf92dc 100644 --- a/docs/struct_connected_lidar_info-members.html +++ b/docs/struct_connected_lidar_info-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_connected_lidar_info.html b/docs/struct_connected_lidar_info.html index 53c7047..7f9a944 100644 --- a/docs/struct_connected_lidar_info.html +++ b/docs/struct_connected_lidar_info.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_device_broadcast_code-members.html b/docs/struct_device_broadcast_code-members.html index 94928b6..0c510ba 100644 --- a/docs/struct_device_broadcast_code-members.html +++ b/docs/struct_device_broadcast_code-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_device_broadcast_code.html b/docs/struct_device_broadcast_code.html index 4659a90..ac819ca 100644 --- a/docs/struct_device_broadcast_code.html +++ b/docs/struct_device_broadcast_code.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_device_info-members.html b/docs/struct_device_info-members.html index 9330299..6f44289 100644 --- a/docs/struct_device_info-members.html +++ b/docs/struct_device_info-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_device_info.html b/docs/struct_device_info.html index ae1868b..d6a146b 100644 --- a/docs/struct_device_info.html +++ b/docs/struct_device_info.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_device_information_response-members.html b/docs/struct_device_information_response-members.html index b4b60b9..4908179 100644 --- a/docs/struct_device_information_response-members.html +++ b/docs/struct_device_information_response-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_device_information_response.html b/docs/struct_device_information_response.html index b381077..213e8c5 100644 --- a/docs/struct_device_information_response.html +++ b/docs/struct_device_information_response.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_error_message-members.html b/docs/struct_error_message-members.html index cbe3656..fb2f28b 100644 --- a/docs/struct_error_message-members.html +++ b/docs/struct_error_message-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_error_message.html b/docs/struct_error_message.html index 27589ee..c769d4e 100644 --- a/docs/struct_error_message.html +++ b/docs/struct_error_message.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_extrinsic_parameter_request_item-members.html b/docs/struct_extrinsic_parameter_request_item-members.html index f4e99b0..296180d 100644 --- a/docs/struct_extrinsic_parameter_request_item-members.html +++ b/docs/struct_extrinsic_parameter_request_item-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_extrinsic_parameter_request_item.html b/docs/struct_extrinsic_parameter_request_item.html index 1fcca55..c92520e 100644 --- a/docs/struct_extrinsic_parameter_request_item.html +++ b/docs/struct_extrinsic_parameter_request_item.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_extrinsic_parameter_response_item-members.html b/docs/struct_extrinsic_parameter_response_item-members.html index 96c4161..96571b5 100644 --- a/docs/struct_extrinsic_parameter_response_item-members.html +++ b/docs/struct_extrinsic_parameter_response_item-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_extrinsic_parameter_response_item.html b/docs/struct_extrinsic_parameter_response_item.html index 153bc5a..c7d74ca 100644 --- a/docs/struct_extrinsic_parameter_response_item.html +++ b/docs/struct_extrinsic_parameter_response_item.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_get_device_i_p_mode_response-members.html b/docs/struct_get_device_i_p_mode_response-members.html index 2bceca2..9743199 100644 --- a/docs/struct_get_device_i_p_mode_response-members.html +++ b/docs/struct_get_device_i_p_mode_response-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_get_device_i_p_mode_response.html b/docs/struct_get_device_i_p_mode_response.html index fc5a72a..7d74c51 100644 --- a/docs/struct_get_device_i_p_mode_response.html +++ b/docs/struct_get_device_i_p_mode_response.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_handshake_request-members.html b/docs/struct_handshake_request-members.html index 64778aa..2ff4289 100644 --- a/docs/struct_handshake_request-members.html +++ b/docs/struct_handshake_request-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_handshake_request.html b/docs/struct_handshake_request.html index 17d982e..0f0747e 100644 --- a/docs/struct_handshake_request.html +++ b/docs/struct_handshake_request.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_heartbeat_response-members.html b/docs/struct_heartbeat_response-members.html index a8bfaaf..1040604 100644 --- a/docs/struct_heartbeat_response-members.html +++ b/docs/struct_heartbeat_response-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_heartbeat_response.html b/docs/struct_heartbeat_response.html index ced23c1..2f9ad27 100644 --- a/docs/struct_heartbeat_response.html +++ b/docs/struct_heartbeat_response.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_control_slot_power_request-members.html b/docs/struct_hub_control_slot_power_request-members.html index 308aeac..b98223e 100644 --- a/docs/struct_hub_control_slot_power_request-members.html +++ b/docs/struct_hub_control_slot_power_request-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_control_slot_power_request.html b/docs/struct_hub_control_slot_power_request.html index 09836aa..059e590 100644 --- a/docs/struct_hub_control_slot_power_request.html +++ b/docs/struct_hub_control_slot_power_request.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_get_extrinsic_parameter_request-members.html b/docs/struct_hub_get_extrinsic_parameter_request-members.html index dc2b315..5d7d5bd 100644 --- a/docs/struct_hub_get_extrinsic_parameter_request-members.html +++ b/docs/struct_hub_get_extrinsic_parameter_request-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_get_extrinsic_parameter_request.html b/docs/struct_hub_get_extrinsic_parameter_request.html index ed787cc..5f9a1aa 100644 --- a/docs/struct_hub_get_extrinsic_parameter_request.html +++ b/docs/struct_hub_get_extrinsic_parameter_request.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_get_extrinsic_parameter_response-members.html b/docs/struct_hub_get_extrinsic_parameter_response-members.html index 5040275..b1d8c81 100644 --- a/docs/struct_hub_get_extrinsic_parameter_response-members.html +++ b/docs/struct_hub_get_extrinsic_parameter_response-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_get_extrinsic_parameter_response.html b/docs/struct_hub_get_extrinsic_parameter_response.html index c3c55dd..82e6151 100644 --- a/docs/struct_hub_get_extrinsic_parameter_response.html +++ b/docs/struct_hub_get_extrinsic_parameter_response.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_query_lidar_information_response-members.html b/docs/struct_hub_query_lidar_information_response-members.html index cbfffac..a2b2a8f 100644 --- a/docs/struct_hub_query_lidar_information_response-members.html +++ b/docs/struct_hub_query_lidar_information_response-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_query_lidar_information_response.html b/docs/struct_hub_query_lidar_information_response.html index 255101c..d2fc568 100644 --- a/docs/struct_hub_query_lidar_information_response.html +++ b/docs/struct_hub_query_lidar_information_response.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_query_lidar_status_response-members.html b/docs/struct_hub_query_lidar_status_response-members.html index 4ff4750..c4a5ca8 100644 --- a/docs/struct_hub_query_lidar_status_response-members.html +++ b/docs/struct_hub_query_lidar_status_response-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_query_lidar_status_response.html b/docs/struct_hub_query_lidar_status_response.html index e15698e..bc30005 100644 --- a/docs/struct_hub_query_lidar_status_response.html +++ b/docs/struct_hub_query_lidar_status_response.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_rain_fog_suppress_request-members.html b/docs/struct_hub_rain_fog_suppress_request-members.html index c8c15f7..797aa65 100644 --- a/docs/struct_hub_rain_fog_suppress_request-members.html +++ b/docs/struct_hub_rain_fog_suppress_request-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_rain_fog_suppress_request.html b/docs/struct_hub_rain_fog_suppress_request.html index b980020..854440f 100644 --- a/docs/struct_hub_rain_fog_suppress_request.html +++ b/docs/struct_hub_rain_fog_suppress_request.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_rain_fog_suppress_response-members.html b/docs/struct_hub_rain_fog_suppress_response-members.html index 7e8310b..6cabbb3 100644 --- a/docs/struct_hub_rain_fog_suppress_response-members.html +++ b/docs/struct_hub_rain_fog_suppress_response-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_rain_fog_suppress_response.html b/docs/struct_hub_rain_fog_suppress_response.html index 4f4e5a4..a00a48e 100644 --- a/docs/struct_hub_rain_fog_suppress_response.html +++ b/docs/struct_hub_rain_fog_suppress_response.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_set_extrinsic_parameter_request-members.html b/docs/struct_hub_set_extrinsic_parameter_request-members.html index 6d52901..50a3f57 100644 --- a/docs/struct_hub_set_extrinsic_parameter_request-members.html +++ b/docs/struct_hub_set_extrinsic_parameter_request-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_set_extrinsic_parameter_request.html b/docs/struct_hub_set_extrinsic_parameter_request.html index d32f747..787859c 100644 --- a/docs/struct_hub_set_extrinsic_parameter_request.html +++ b/docs/struct_hub_set_extrinsic_parameter_request.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_set_extrinsic_parameter_response-members.html b/docs/struct_hub_set_extrinsic_parameter_response-members.html index 8a18bab..c178490 100644 --- a/docs/struct_hub_set_extrinsic_parameter_response-members.html +++ b/docs/struct_hub_set_extrinsic_parameter_response-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_set_extrinsic_parameter_response.html b/docs/struct_hub_set_extrinsic_parameter_response.html index 088000a..d821379 100644 --- a/docs/struct_hub_set_extrinsic_parameter_response.html +++ b/docs/struct_hub_set_extrinsic_parameter_response.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_set_mode_request-members.html b/docs/struct_hub_set_mode_request-members.html index 859b72d..717398a 100644 --- a/docs/struct_hub_set_mode_request-members.html +++ b/docs/struct_hub_set_mode_request-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_set_mode_request.html b/docs/struct_hub_set_mode_request.html index 0f149cb..a2cee6a 100644 --- a/docs/struct_hub_set_mode_request.html +++ b/docs/struct_hub_set_mode_request.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_set_mode_response-members.html b/docs/struct_hub_set_mode_response-members.html index 88598ab..6d73a9c 100644 --- a/docs/struct_hub_set_mode_response-members.html +++ b/docs/struct_hub_set_mode_response-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_hub_set_mode_response.html b/docs/struct_hub_set_mode_response.html index 2407bd3..a8fb011 100644 --- a/docs/struct_hub_set_mode_response.html +++ b/docs/struct_hub_set_mode_response.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_lidar_get_extrinsic_parameter_response-members.html b/docs/struct_lidar_get_extrinsic_parameter_response-members.html index 681819b..744514a 100644 --- a/docs/struct_lidar_get_extrinsic_parameter_response-members.html +++ b/docs/struct_lidar_get_extrinsic_parameter_response-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_lidar_get_extrinsic_parameter_response.html b/docs/struct_lidar_get_extrinsic_parameter_response.html index 8322b67..eb0ce33 100644 --- a/docs/struct_lidar_get_extrinsic_parameter_response.html +++ b/docs/struct_lidar_get_extrinsic_parameter_response.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_lidar_mode_request_item-members.html b/docs/struct_lidar_mode_request_item-members.html index 574a335..7030370 100644 --- a/docs/struct_lidar_mode_request_item-members.html +++ b/docs/struct_lidar_mode_request_item-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_lidar_mode_request_item.html b/docs/struct_lidar_mode_request_item.html index 9244f87..0d7f789 100644 --- a/docs/struct_lidar_mode_request_item.html +++ b/docs/struct_lidar_mode_request_item.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_lidar_set_extrinsic_parameter_request-members.html b/docs/struct_lidar_set_extrinsic_parameter_request-members.html index ab8c8a6..3e9a96b 100644 --- a/docs/struct_lidar_set_extrinsic_parameter_request-members.html +++ b/docs/struct_lidar_set_extrinsic_parameter_request-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_lidar_set_extrinsic_parameter_request.html b/docs/struct_lidar_set_extrinsic_parameter_request.html index 83f739c..00d1488 100644 --- a/docs/struct_lidar_set_extrinsic_parameter_request.html +++ b/docs/struct_lidar_set_extrinsic_parameter_request.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_lidar_state_item-members.html b/docs/struct_lidar_state_item-members.html index 093e62f..21919a9 100644 --- a/docs/struct_lidar_state_item-members.html +++ b/docs/struct_lidar_state_item-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_lidar_state_item.html b/docs/struct_lidar_state_item.html index 29dd7fd..9e367ce 100644 --- a/docs/struct_lidar_state_item.html +++ b/docs/struct_lidar_state_item.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_livox_eth_packet-members.html b/docs/struct_livox_eth_packet-members.html index ac173ba..c24b192 100644 --- a/docs/struct_livox_eth_packet-members.html +++ b/docs/struct_livox_eth_packet-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_livox_eth_packet.html b/docs/struct_livox_eth_packet.html index 9d78f27..776b3f1 100644 --- a/docs/struct_livox_eth_packet.html +++ b/docs/struct_livox_eth_packet.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_livox_point-members.html b/docs/struct_livox_point-members.html index b6bda23..e3f893d 100644 --- a/docs/struct_livox_point-members.html +++ b/docs/struct_livox_point-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_livox_point.html b/docs/struct_livox_point.html index ed5bff5..49e4789 100644 --- a/docs/struct_livox_point.html +++ b/docs/struct_livox_point.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_livox_raw_point-members.html b/docs/struct_livox_raw_point-members.html index 7e02e45..bc712df 100644 --- a/docs/struct_livox_raw_point-members.html +++ b/docs/struct_livox_raw_point-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_livox_raw_point.html b/docs/struct_livox_raw_point.html index 7ad67c7..438dacb 100644 --- a/docs/struct_livox_raw_point.html +++ b/docs/struct_livox_raw_point.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_livox_sdk_version-members.html b/docs/struct_livox_sdk_version-members.html index 64d75d5..e09b992 100644 --- a/docs/struct_livox_sdk_version-members.html +++ b/docs/struct_livox_sdk_version-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_livox_sdk_version.html b/docs/struct_livox_sdk_version.html index 47ac3c3..43f1cf3 100644 --- a/docs/struct_livox_sdk_version.html +++ b/docs/struct_livox_sdk_version.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_rain_fog_suppress_request_item-members.html b/docs/struct_rain_fog_suppress_request_item-members.html index 3e0aa5f..96a7936 100644 --- a/docs/struct_rain_fog_suppress_request_item-members.html +++ b/docs/struct_rain_fog_suppress_request_item-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_rain_fog_suppress_request_item.html b/docs/struct_rain_fog_suppress_request_item.html index 9ccb625..1cb81f9 100644 --- a/docs/struct_rain_fog_suppress_request_item.html +++ b/docs/struct_rain_fog_suppress_request_item.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_return_code-members.html b/docs/struct_return_code-members.html index ad1397b..24b87e4 100644 --- a/docs/struct_return_code-members.html +++ b/docs/struct_return_code-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_return_code.html b/docs/struct_return_code.html index 2d348b8..0968639 100644 --- a/docs/struct_return_code.html +++ b/docs/struct_return_code.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_set_device_i_p_mode_request-members.html b/docs/struct_set_device_i_p_mode_request-members.html index ea984ce..fe7fa1f 100644 --- a/docs/struct_set_device_i_p_mode_request-members.html +++ b/docs/struct_set_device_i_p_mode_request-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/struct_set_device_i_p_mode_request.html b/docs/struct_set_device_i_p_mode_request.html index 5012bd4..62ee77f 100644 --- a/docs/struct_set_device_i_p_mode_request.html +++ b/docs/struct_set_device_i_p_mode_request.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4-members.html b/docs/structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4-members.html index bdc6919..1393926 100644 --- a/docs/structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4-members.html +++ b/docs/structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html b/docs/structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html index 6a4d43c..69477a1 100644 --- a/docs/structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html +++ b/docs/structfmt_1_1formatter_3_01spdlog_1_1details_1_1bytes__range_3_01_t_01_4_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1align__spec-members.html b/docs/structfmt_1_1v5_1_1align__spec-members.html index e1f43d4..9bd4c19 100644 --- a/docs/structfmt_1_1v5_1_1align__spec-members.html +++ b/docs/structfmt_1_1v5_1_1align__spec-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1align__spec.html b/docs/structfmt_1_1v5_1_1align__spec.html index 0477542..50e178b 100644 --- a/docs/structfmt_1_1v5_1_1align__spec.html +++ b/docs/structfmt_1_1v5_1_1align__spec.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1arg__join-members.html b/docs/structfmt_1_1v5_1_1arg__join-members.html index cd89073..ed6ede0 100644 --- a/docs/structfmt_1_1v5_1_1arg__join-members.html +++ b/docs/structfmt_1_1v5_1_1arg__join-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1arg__join.html b/docs/structfmt_1_1v5_1_1arg__join.html index df74910..53bba58 100644 --- a/docs/structfmt_1_1v5_1_1arg__join.html +++ b/docs/structfmt_1_1v5_1_1arg__join.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__format__context_1_1formatter__type-members.html b/docs/structfmt_1_1v5_1_1basic__format__context_1_1formatter__type-members.html index 15df829..3effcf7 100644 --- a/docs/structfmt_1_1v5_1_1basic__format__context_1_1formatter__type-members.html +++ b/docs/structfmt_1_1v5_1_1basic__format__context_1_1formatter__type-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html b/docs/structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html index 1485ce2..eb8b404 100644 --- a/docs/structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html +++ b/docs/structfmt_1_1v5_1_1basic__format__context_1_1formatter__type.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__format__specs-members.html b/docs/structfmt_1_1v5_1_1basic__format__specs-members.html index b95b356..299ccc0 100644 --- a/docs/structfmt_1_1v5_1_1basic__format__specs-members.html +++ b/docs/structfmt_1_1v5_1_1basic__format__specs-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__format__specs.html b/docs/structfmt_1_1v5_1_1basic__format__specs.html index e7f8233..af5653a 100644 --- a/docs/structfmt_1_1v5_1_1basic__format__specs.html +++ b/docs/structfmt_1_1v5_1_1basic__format__specs.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type-members.html b/docs/structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type-members.html index 4ef8134..895a5ae 100644 --- a/docs/structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type-members.html +++ b/docs/structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html b/docs/structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html index c8bfe67..c718bd4 100644 --- a/docs/structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html +++ b/docs/structfmt_1_1v5_1_1basic__printf__context_1_1formatter__type.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__printf__context__t-members.html b/docs/structfmt_1_1v5_1_1basic__printf__context__t-members.html index 2700937..da97d69 100644 --- a/docs/structfmt_1_1v5_1_1basic__printf__context__t-members.html +++ b/docs/structfmt_1_1v5_1_1basic__printf__context__t-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__printf__context__t.html b/docs/structfmt_1_1v5_1_1basic__printf__context__t.html index ced3f72..b8c4eab 100644 --- a/docs/structfmt_1_1v5_1_1basic__printf__context__t.html +++ b/docs/structfmt_1_1v5_1_1basic__printf__context__t.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer-members.html b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer-members.html index 4934b78..fdd08af 100644 --- a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer-members.html +++ b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html index ad90286..2ffde4d 100644 --- a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html +++ b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1bin__writer.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer-members.html b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer-members.html index 7c1b0e6..49c80e9 100644 --- a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer-members.html +++ b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html index 15239ee..f18a051 100644 --- a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html +++ b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1dec__writer.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer-members.html b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer-members.html index 04391ad..593a627 100644 --- a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer-members.html +++ b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html index f03e9d3..586c57e 100644 --- a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html +++ b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1hex__writer.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer-members.html b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer-members.html index fda3aa8..17667ee 100644 --- a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer-members.html +++ b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html index 2f24c35..16b4546 100644 --- a/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html +++ b/docs/structfmt_1_1v5_1_1basic__writer_1_1int__writer_1_1num__writer.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1buffer__context-members.html b/docs/structfmt_1_1v5_1_1buffer__context-members.html index 980aa0f..72c9424 100644 --- a/docs/structfmt_1_1v5_1_1buffer__context-members.html +++ b/docs/structfmt_1_1v5_1_1buffer__context-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1buffer__context.html b/docs/structfmt_1_1v5_1_1buffer__context.html index 6722888..1fe6e86 100644 --- a/docs/structfmt_1_1v5_1_1buffer__context.html +++ b/docs/structfmt_1_1v5_1_1buffer__context.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1char__t.html b/docs/structfmt_1_1v5_1_1char__t.html index 478404e..7966c67 100644 --- a/docs/structfmt_1_1v5_1_1char__t.html +++ b/docs/structfmt_1_1v5_1_1char__t.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1compile__string.html b/docs/structfmt_1_1v5_1_1compile__string.html index e8d5ca6..0c17454 100644 --- a/docs/structfmt_1_1v5_1_1compile__string.html +++ b/docs/structfmt_1_1v5_1_1compile__string.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1convert__to__int.html b/docs/structfmt_1_1v5_1_1convert__to__int.html index 0b7e860..8e46b5c 100644 --- a/docs/structfmt_1_1v5_1_1convert__to__int.html +++ b/docs/structfmt_1_1v5_1_1convert__to__int.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4-members.html b/docs/structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4-members.html index 9614148..0f46ade 100644 --- a/docs/structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4-members.html +++ b/docs/structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html b/docs/structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html index e763f59..390a16e 100644 --- a/docs/structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html +++ b/docs/structfmt_1_1v5_1_1convert__to__int_3_01_t_00_01_char_00_01void_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1core__format__specs-members.html b/docs/structfmt_1_1v5_1_1core__format__specs-members.html index 6a928c1..9a241c6 100644 --- a/docs/structfmt_1_1v5_1_1core__format__specs-members.html +++ b/docs/structfmt_1_1v5_1_1core__format__specs-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1core__format__specs.html b/docs/structfmt_1_1v5_1_1core__format__specs.html index 6ab9015..7b78b85 100644 --- a/docs/structfmt_1_1v5_1_1core__format__specs.html +++ b/docs/structfmt_1_1v5_1_1core__format__specs.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1float__spec__handler-members.html b/docs/structfmt_1_1v5_1_1float__spec__handler-members.html index f4050f8..f0ba44d 100644 --- a/docs/structfmt_1_1v5_1_1float__spec__handler-members.html +++ b/docs/structfmt_1_1v5_1_1float__spec__handler-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1float__spec__handler.html b/docs/structfmt_1_1v5_1_1float__spec__handler.html index 81a2d2d..789cef2 100644 --- a/docs/structfmt_1_1v5_1_1float__spec__handler.html +++ b/docs/structfmt_1_1v5_1_1float__spec__handler.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__args-members.html b/docs/structfmt_1_1v5_1_1format__args-members.html index 2516082..0b0ee9e 100644 --- a/docs/structfmt_1_1v5_1_1format__args-members.html +++ b/docs/structfmt_1_1v5_1_1format__args-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__args.html b/docs/structfmt_1_1v5_1_1format__args.html index 4a55ba2..38bc16f 100644 --- a/docs/structfmt_1_1v5_1_1format__args.html +++ b/docs/structfmt_1_1v5_1_1format__args.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__args__t-members.html b/docs/structfmt_1_1v5_1_1format__args__t-members.html index 1d23b36..c64f6bd 100644 --- a/docs/structfmt_1_1v5_1_1format__args__t-members.html +++ b/docs/structfmt_1_1v5_1_1format__args__t-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__args__t.html b/docs/structfmt_1_1v5_1_1format__args__t.html index 356f9bf..b16ff8c 100644 --- a/docs/structfmt_1_1v5_1_1format__args__t.html +++ b/docs/structfmt_1_1v5_1_1format__args__t.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__context__t-members.html b/docs/structfmt_1_1v5_1_1format__context__t-members.html index 3755a0d..85ec70d 100644 --- a/docs/structfmt_1_1v5_1_1format__context__t-members.html +++ b/docs/structfmt_1_1v5_1_1format__context__t-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__context__t.html b/docs/structfmt_1_1v5_1_1format__context__t.html index 431177c..6f1ace7 100644 --- a/docs/structfmt_1_1v5_1_1format__context__t.html +++ b/docs/structfmt_1_1v5_1_1format__context__t.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__handler-members.html b/docs/structfmt_1_1v5_1_1format__handler-members.html index be79d93..675f4a2 100644 --- a/docs/structfmt_1_1v5_1_1format__handler-members.html +++ b/docs/structfmt_1_1v5_1_1format__handler-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__handler.html b/docs/structfmt_1_1v5_1_1format__handler.html index b64f58d..4c4ce0e 100644 --- a/docs/structfmt_1_1v5_1_1format__handler.html +++ b/docs/structfmt_1_1v5_1_1format__handler.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__to__n__args-members.html b/docs/structfmt_1_1v5_1_1format__to__n__args-members.html index adcf5d1..e94062a 100644 --- a/docs/structfmt_1_1v5_1_1format__to__n__args-members.html +++ b/docs/structfmt_1_1v5_1_1format__to__n__args-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__to__n__args.html b/docs/structfmt_1_1v5_1_1format__to__n__args.html index ef0917c..72f42b0 100644 --- a/docs/structfmt_1_1v5_1_1format__to__n__args.html +++ b/docs/structfmt_1_1v5_1_1format__to__n__args.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__to__n__context-members.html b/docs/structfmt_1_1v5_1_1format__to__n__context-members.html index 3ec1072..3118483 100644 --- a/docs/structfmt_1_1v5_1_1format__to__n__context-members.html +++ b/docs/structfmt_1_1v5_1_1format__to__n__context-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__to__n__context.html b/docs/structfmt_1_1v5_1_1format__to__n__context.html index 786fbf1..13cf75b 100644 --- a/docs/structfmt_1_1v5_1_1format__to__n__context.html +++ b/docs/structfmt_1_1v5_1_1format__to__n__context.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__to__n__result-members.html b/docs/structfmt_1_1v5_1_1format__to__n__result-members.html index 1a446ec..ed6f475 100644 --- a/docs/structfmt_1_1v5_1_1format__to__n__result-members.html +++ b/docs/structfmt_1_1v5_1_1format__to__n__result-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1format__to__n__result.html b/docs/structfmt_1_1v5_1_1format__to__n__result.html index e89722e..acd3021 100644 --- a/docs/structfmt_1_1v5_1_1format__to__n__result.html +++ b/docs/structfmt_1_1v5_1_1format__to__n__result.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter-members.html b/docs/structfmt_1_1v5_1_1formatter-members.html index 00757bd..120dca8 100644 --- a/docs/structfmt_1_1v5_1_1formatter-members.html +++ b/docs/structfmt_1_1v5_1_1formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter.html b/docs/structfmt_1_1v5_1_1formatter.html index 894b6c0..40164e3 100644 --- a/docs/structfmt_1_1v5_1_1formatter.html +++ b/docs/structfmt_1_1v5_1_1formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html b/docs/structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html index e29cb79..b13d848 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_129f3c94877dea4ec3d39c173a7bba127.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_165831b345301abd8a34fe63a7b6bd976.html b/docs/structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_165831b345301abd8a34fe63a7b6bd976.html index e4c577d..1fe7c92 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_165831b345301abd8a34fe63a7b6bd976.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01_range_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_165831b345301abd8a34fe63a7b6bd976.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_1f973664f75bfeb268a178cca3627036.html b/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_1f973664f75bfeb268a178cca3627036.html index 621adb3..efb0f8a 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_1f973664f75bfeb268a178cca3627036.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_1f973664f75bfeb268a178cca3627036.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html b/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html index 9b21fd6..3488665 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_8f67657c5a3f8dbcc6236217f928ccb5.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_911fdfea5f2db8de801caa1552f2e4ef.html b/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_911fdfea5f2db8de801caa1552f2e4ef.html index 5727998..3e47cd0 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_911fdfea5f2db8de801caa1552f2e4ef.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_911fdfea5f2db8de801caa1552f2e4ef.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html b/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html index 4838274..022eb4e 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01_t_00_01_char_00_01typename_01std_1_1enable__if_3_01internal_1_a6b64300f4f7ee1d24250c7c28e1fdc2.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html b/docs/structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html index 79cc2bc..6898905 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_102216fc8d8be12d4442006c3947ddce9.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_1973a2aadb951058c325e7f27789142aa.html b/docs/structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_1973a2aadb951058c325e7f27789142aa.html index ca7d483..bb44a9d 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_1973a2aadb951058c325e7f27789142aa.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01_tuple_t_00_01_char_00_01typename_01std_1_1enable__if_3_01fmt_1973a2aadb951058c325e7f27789142aa.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4-members.html b/docs/structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4-members.html index 897c2cc..0ebec73 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4-members.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html b/docs/structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html index b168c7d..acfc65a 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01arg__join_3_01_it_00_01_char_01_4_00_01_char_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4-members.html b/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4-members.html index 8c08609..38a8047 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4-members.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html b/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html index e6480db..b871cda 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1chrono_1_1duration_3_01_rep_00_01_period_01_4_00_01_char_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4-members.html b/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4-members.html index cff0a7a..bb11ce0 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4-members.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html b/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html index fc232e5..d76b17a 100644 --- a/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html +++ b/docs/structfmt_1_1v5_1_1formatter_3_01std_1_1tm_00_01_char_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatting__base-members.html b/docs/structfmt_1_1v5_1_1formatting__base-members.html index a6552aa..d4e536b 100644 --- a/docs/structfmt_1_1v5_1_1formatting__base-members.html +++ b/docs/structfmt_1_1v5_1_1formatting__base-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatting__base.html b/docs/structfmt_1_1v5_1_1formatting__base.html index 885cd95..83efa9d 100644 --- a/docs/structfmt_1_1v5_1_1formatting__base.html +++ b/docs/structfmt_1_1v5_1_1formatting__base.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatting__range-members.html b/docs/structfmt_1_1v5_1_1formatting__range-members.html index f251243..e4d3c59 100644 --- a/docs/structfmt_1_1v5_1_1formatting__range-members.html +++ b/docs/structfmt_1_1v5_1_1formatting__range-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatting__range.html b/docs/structfmt_1_1v5_1_1formatting__range.html index 6d72526..fbbe084 100644 --- a/docs/structfmt_1_1v5_1_1formatting__range.html +++ b/docs/structfmt_1_1v5_1_1formatting__range.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatting__tuple-members.html b/docs/structfmt_1_1v5_1_1formatting__tuple-members.html index 5e7bd34..eb89015 100644 --- a/docs/structfmt_1_1v5_1_1formatting__tuple-members.html +++ b/docs/structfmt_1_1v5_1_1formatting__tuple-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1formatting__tuple.html b/docs/structfmt_1_1v5_1_1formatting__tuple.html index 4fda7c5..4d01ee5 100644 --- a/docs/structfmt_1_1v5_1_1formatting__tuple.html +++ b/docs/structfmt_1_1v5_1_1formatting__tuple.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1ansi__color__escape-members.html b/docs/structfmt_1_1v5_1_1internal_1_1ansi__color__escape-members.html index 4cc1feb..88a654a 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1ansi__color__escape-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1ansi__color__escape-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html b/docs/structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html index 426f8e0..6ad0aed 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1ansi__color__escape.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler-members.html b/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler-members.html index 604ccb7..3110807 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html b/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html index fa29038..7fbe921 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1char__spec__handler.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler-members.html b/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler-members.html index 0f4befc..6a9dbd9 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html b/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html index 3a54629..bc396d7 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1arg__formatter__base_1_1cstring__spec__handler.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1arg__ref-members.html b/docs/structfmt_1_1v5_1_1internal_1_1arg__ref-members.html index da224ce..217dc86 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1arg__ref-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1arg__ref-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1arg__ref.html b/docs/structfmt_1_1v5_1_1internal_1_1arg__ref.html index 33c4f9a..bdb2ea5 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1arg__ref.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1arg__ref.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1auto__id.html b/docs/structfmt_1_1v5_1_1internal_1_1auto__id.html index 38be489..e6e2c55 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1auto__id.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1auto__id.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1basic__data-members.html b/docs/structfmt_1_1v5_1_1internal_1_1basic__data-members.html index 4b29a42..36675be 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1basic__data-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1basic__data-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1basic__data.html b/docs/structfmt_1_1v5_1_1internal_1_1basic__data.html index 0c9b219..1d7128e 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1basic__data.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1basic__data.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1char__counter-members.html b/docs/structfmt_1_1v5_1_1internal_1_1char__counter-members.html index d8dc994..30d9117 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1char__counter-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1char__counter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1char__counter.html b/docs/structfmt_1_1v5_1_1internal_1_1char__counter.html index 413216c..ff1c1b3 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1char__counter.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1char__counter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1char__t-members.html b/docs/structfmt_1_1v5_1_1internal_1_1char__t-members.html index 96745ed..1458504 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1char__t-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1char__t-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1char__t.html b/docs/structfmt_1_1v5_1_1internal_1_1char__t.html index 2c9e06e..072fbcd 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1char__t.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1char__t.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1char__traits.html b/docs/structfmt_1_1v5_1_1internal_1_1char__traits.html index 113aab7..ddc5f69 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1char__traits.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1char__traits.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4-members.html b/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4-members.html index 9390dd9..1294b5b 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html b/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html index 5a7461e..8b76119 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01char_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4-members.html b/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4-members.html index b20ae68..2fc162a 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html b/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html index 830ffea..a40c472 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1char__traits_3_01wchar__t_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1checked-members.html b/docs/structfmt_1_1v5_1_1internal_1_1checked-members.html index 8e57df5..a6fe614 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1checked-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1checked-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1checked.html b/docs/structfmt_1_1v5_1_1internal_1_1checked.html index 9abba6a..f7951c4 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1checked.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1checked.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1checked__args-members.html b/docs/structfmt_1_1v5_1_1internal_1_1checked__args-members.html index 46a0baa..f9627de 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1checked__args-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1checked__args-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1checked__args.html b/docs/structfmt_1_1v5_1_1internal_1_1checked__args.html index 46a39ed..53c8a73 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1checked__args.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1checked__args.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1chrono__format__checker-members.html b/docs/structfmt_1_1v5_1_1internal_1_1chrono__format__checker-members.html index c626b4b..ec5bd61 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1chrono__format__checker-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1chrono__format__checker-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html b/docs/structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html index 5fc39e4..0fd5861 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1chrono__format__checker.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1chrono__formatter-members.html b/docs/structfmt_1_1v5_1_1internal_1_1chrono__formatter-members.html index 5e83b1d..53d1bff 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1chrono__formatter-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1chrono__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1chrono__formatter.html b/docs/structfmt_1_1v5_1_1internal_1_1chrono__formatter.html index d81922d..16cbcc1 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1chrono__formatter.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1chrono__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1color__type-members.html b/docs/structfmt_1_1v5_1_1internal_1_1color__type-members.html index 2677bca..e2184ad 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1color__type-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1color__type-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1color__type.html b/docs/structfmt_1_1v5_1_1internal_1_1color__type.html index 177d95f..1d1d60e 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1color__type.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1color__type.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1conditional__helper.html b/docs/structfmt_1_1v5_1_1internal_1_1conditional__helper.html index e68b8d8..1c98e3d 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1conditional__helper.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1conditional__helper.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1custom__value-members.html b/docs/structfmt_1_1v5_1_1internal_1_1custom__value-members.html index 0892065..d37cc1b 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1custom__value-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1custom__value-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1custom__value.html b/docs/structfmt_1_1v5_1_1internal_1_1custom__value.html index 62bc3da..73742ec 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1custom__value.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1custom__value.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1dummy__int-members.html b/docs/structfmt_1_1v5_1_1internal_1_1dummy__int-members.html index 1cc40f0..aaac576 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1dummy__int-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1dummy__int-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1dummy__int.html b/docs/structfmt_1_1v5_1_1internal_1_1dummy__int.html index 8146f21..d8a7d1a 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1dummy__int.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1dummy__int.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1dummy__string__view-members.html b/docs/structfmt_1_1v5_1_1internal_1_1dummy__string__view-members.html index bc59402..e568f0e 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1dummy__string__view-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1dummy__string__view-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1dummy__string__view.html b/docs/structfmt_1_1v5_1_1internal_1_1dummy__string__view.html index 6368b80..9b2e3e6 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1dummy__string__view.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1dummy__string__view.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1dynamic__format__specs-members.html b/docs/structfmt_1_1v5_1_1internal_1_1dynamic__format__specs-members.html index 8a6662d..d9cebff 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1dynamic__format__specs-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1dynamic__format__specs-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html b/docs/structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html index d56dd8c..2ed7196 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1dynamic__format__specs.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1error__handler-members.html b/docs/structfmt_1_1v5_1_1internal_1_1error__handler-members.html index 0d6438c..169bb34 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1error__handler-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1error__handler-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1error__handler.html b/docs/structfmt_1_1v5_1_1internal_1_1error__handler.html index 751b2a1..96a84f1 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1error__handler.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1error__handler.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1fill-members.html b/docs/structfmt_1_1v5_1_1internal_1_1fill-members.html index 3de0516..a11d5fa 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1fill-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1fill-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1fill.html b/docs/structfmt_1_1v5_1_1internal_1_1fill.html index 5caeea1..4b97d63 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1fill.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1fill.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1format__type.html b/docs/structfmt_1_1v5_1_1internal_1_1format__type.html index a359fc3..da438b4 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1format__type.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1format__type.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1function.html b/docs/structfmt_1_1v5_1_1internal_1_1function.html index 7386278..f6ed271 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1function.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1function.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1function_1_1result-members.html b/docs/structfmt_1_1v5_1_1internal_1_1function_1_1result-members.html index 201fa4a..b2a7d87 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1function_1_1result-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1function_1_1result-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1function_1_1result.html b/docs/structfmt_1_1v5_1_1internal_1_1function_1_1result.html index 23d7f57..0fd16b2 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1function_1_1result.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1function_1_1result.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1gen__digits__params-members.html b/docs/structfmt_1_1v5_1_1internal_1_1gen__digits__params-members.html index d9e1995..cac3088 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1gen__digits__params-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1gen__digits__params-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1gen__digits__params.html b/docs/structfmt_1_1v5_1_1internal_1_1gen__digits__params.html index ede0e0f..733f84e 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1gen__digits__params.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1gen__digits__params.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1get__type-members.html b/docs/structfmt_1_1v5_1_1internal_1_1get__type-members.html index e52f1dc..25fbd93 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1get__type-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1get__type-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1get__type.html b/docs/structfmt_1_1v5_1_1internal_1_1get__type.html index cef4d10..2b44245 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1get__type.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1get__type.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1id__adapter-members.html b/docs/structfmt_1_1v5_1_1internal_1_1id__adapter-members.html index c5f2e50..2b7f65e 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1id__adapter-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1id__adapter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1id__adapter.html b/docs/structfmt_1_1v5_1_1internal_1_1id__adapter.html index 536806a..e7efc5a 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1id__adapter.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1id__adapter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1init-members.html b/docs/structfmt_1_1v5_1_1internal_1_1init-members.html index ffcdf5e..045c4a5 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1init-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1init-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1init.html b/docs/structfmt_1_1v5_1_1internal_1_1init.html index 85cfa02..e92c48c 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1init.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1init.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1int__checker-members.html b/docs/structfmt_1_1v5_1_1internal_1_1int__checker-members.html index 8017d75..5f26910 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1int__checker-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1int__checker-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1int__checker.html b/docs/structfmt_1_1v5_1_1internal_1_1int__checker.html index 51061f5..9cd9cde 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1int__checker.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1int__checker.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4-members.html b/docs/structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4-members.html index 88f9ad5..025ecfe 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html b/docs/structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html index c85acc3..381b7d5 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1int__checker_3_01true_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1int__traits.html b/docs/structfmt_1_1v5_1_1internal_1_1int__traits.html index 76b9c03..2b2fe4d 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1int__traits.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1int__traits.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1integer__sequence-members.html b/docs/structfmt_1_1v5_1_1internal_1_1integer__sequence-members.html index fe5935c..5b610c5 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1integer__sequence-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1integer__sequence-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1integer__sequence.html b/docs/structfmt_1_1v5_1_1internal_1_1integer__sequence.html index 08ac6bc..d1a786b 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1integer__sequence.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1integer__sequence.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1is__integer-members.html b/docs/structfmt_1_1v5_1_1internal_1_1is__integer-members.html index a648ed9..28231de 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1is__integer-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1is__integer-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1is__integer.html b/docs/structfmt_1_1v5_1_1internal_1_1is__integer.html index 31fec39..26dcb54 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1is__integer.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1is__integer.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1is__like__std__string_3_01fmt_1_1basic__string__view_3_01_char_01_4_01_4.html b/docs/structfmt_1_1v5_1_1internal_1_1is__like__std__string_3_01fmt_1_1basic__string__view_3_01_char_01_4_01_4.html index aa41c7f..99dcbf1 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1is__like__std__string_3_01fmt_1_1basic__string__view_3_01_char_01_4_01_4.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1is__like__std__string_3_01fmt_1_1basic__string__view_3_01_char_01_4_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1is__range__.html b/docs/structfmt_1_1v5_1_1internal_1_1is__range__.html index ab87013..fbf9692 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1is__range__.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1is__range__.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1is__range___3_01_t_00_01typename_01std_1_1conditional_3_01false_00543cac082ebea7893cc13a711f6eb2b.html b/docs/structfmt_1_1v5_1_1internal_1_1is__range___3_01_t_00_01typename_01std_1_1conditional_3_01false_00543cac082ebea7893cc13a711f6eb2b.html index c75c099..c1623b1 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1is__range___3_01_t_00_01typename_01std_1_1conditional_3_01false_00543cac082ebea7893cc13a711f6eb2b.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1is__range___3_01_t_00_01typename_01std_1_1conditional_3_01false_00543cac082ebea7893cc13a711f6eb2b.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1is__string.html b/docs/structfmt_1_1v5_1_1internal_1_1is__string.html index a327e0e..4e90dbc 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1is__string.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1is__string.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1is__string_3_01const_01std_1_1_f_i_l_e_01_5_01_4.html b/docs/structfmt_1_1v5_1_1internal_1_1is__string_3_01const_01std_1_1_f_i_l_e_01_5_01_4.html index 3d7e224..a9b426f 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1is__string_3_01const_01std_1_1_f_i_l_e_01_5_01_4.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1is__string_3_01const_01std_1_1_f_i_l_e_01_5_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1is__string_3_01std_1_1_f_i_l_e_01_5_01_4.html b/docs/structfmt_1_1v5_1_1internal_1_1is__string_3_01std_1_1_f_i_l_e_01_5_01_4.html index 2c85582..89d0baf 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1is__string_3_01std_1_1_f_i_l_e_01_5_01_4.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1is__string_3_01std_1_1_f_i_l_e_01_5_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1it__category.html b/docs/structfmt_1_1v5_1_1internal_1_1it__category.html index 5412ad8..665d48d 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1it__category.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1it__category.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1i55f37030f49edbf93d30ce405dc090ef.html b/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1i55f37030f49edbf93d30ce405dc090ef.html index 776d88f..74aa267 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1i55f37030f49edbf93d30ce405dc090ef.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1i55f37030f49edbf93d30ce405dc090ef.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html b/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html index fd46103..5dd6b91 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_00_01typename_01void___3_01typename_01_t_1_1id61388ae7521fb5f9bdb01fd14083b7f.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4-members.html b/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4-members.html index 22c1af3..2425930 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html b/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html index a2e8fdb..69132c9 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1it__category_3_01_t_01_5_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence.html b/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence.html index 2d26491..f22fa50 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4-members.html b/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4-members.html index 52a7d7b..558bdae 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4.html b/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4.html index f73bd9c..0bee2be 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1make__integer__sequence_3_01_t_00_010_00_01_ns_8_8_8_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool.html b/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool.html index 4c13c6a..e268088 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4-members.html b/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4-members.html index 33c69c1..84291e0 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html b/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html index 49e24c5..30876fa 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1make__unsigned__or__bool_3_01bool_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1named__arg-members.html b/docs/structfmt_1_1v5_1_1internal_1_1named__arg-members.html index 6262e86..ea9d402 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1named__arg-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1named__arg-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1named__arg.html b/docs/structfmt_1_1v5_1_1internal_1_1named__arg.html index 8d86f4e..5d121dd 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1named__arg.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1named__arg.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1named__arg__base-members.html b/docs/structfmt_1_1v5_1_1internal_1_1named__arg__base-members.html index 636b792..d526314 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1named__arg__base-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1named__arg__base-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1named__arg__base.html b/docs/structfmt_1_1v5_1_1internal_1_1named__arg__base.html index 0f4c274..1573001 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1named__arg__base.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1named__arg__base.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1needs__conversion.html b/docs/structfmt_1_1v5_1_1internal_1_1needs__conversion.html index aa375d0..aed2c34 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1needs__conversion.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1needs__conversion.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1no__formatter__error.html b/docs/structfmt_1_1v5_1_1internal_1_1no__formatter__error.html index 557a740..b8464c3 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1no__formatter__error.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1no__formatter__error.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1no__thousands__sep-members.html b/docs/structfmt_1_1v5_1_1internal_1_1no__thousands__sep-members.html index f9cf063..7579dd9 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1no__thousands__sep-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1no__thousands__sep-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html b/docs/structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html index 88091f3..e2b3104 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1no__thousands__sep.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1null.html b/docs/structfmt_1_1v5_1_1internal_1_1null.html index 55f5ef1..4086706 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1null.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1null.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1precision__adapter-members.html b/docs/structfmt_1_1v5_1_1internal_1_1precision__adapter-members.html index b80cfd2..de5a5ac 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1precision__adapter-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1precision__adapter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1precision__adapter.html b/docs/structfmt_1_1v5_1_1internal_1_1precision__adapter.html index e8cb956..b9173d0 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1precision__adapter.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1precision__adapter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1prettify__handler-members.html b/docs/structfmt_1_1v5_1_1internal_1_1prettify__handler-members.html index 8b0171a..83e0731 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1prettify__handler-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1prettify__handler-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1prettify__handler.html b/docs/structfmt_1_1v5_1_1internal_1_1prettify__handler.html index 8449fef..3f45917 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1prettify__handler.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1prettify__handler.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1result__of.html b/docs/structfmt_1_1v5_1_1internal_1_1result__of.html index fca8ca6..b3b0635 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1result__of.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1result__of.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4-members.html b/docs/structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4-members.html index 8ea3b77..37de869 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html b/docs/structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html index 52e1208..03ace34 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1result__of_3_01_f_07_args_8_8_8_08_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1string__value-members.html b/docs/structfmt_1_1v5_1_1internal_1_1string__value-members.html index 58db618..895b402 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1string__value-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1string__value-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1string__value.html b/docs/structfmt_1_1v5_1_1internal_1_1string__value.html index afe615d..86ddeeb 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1string__value.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1string__value.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1test__stream-members.html b/docs/structfmt_1_1v5_1_1internal_1_1test__stream-members.html index c6b549c..18842dd 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1test__stream-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1test__stream-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1test__stream.html b/docs/structfmt_1_1v5_1_1internal_1_1test__stream.html index 88eb3e1..ed02f3e 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1test__stream.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1test__stream.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1void__-members.html b/docs/structfmt_1_1v5_1_1internal_1_1void__-members.html index a32f00b..58d7d75 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1void__-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1void__-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1void__.html b/docs/structfmt_1_1v5_1_1internal_1_1void__.html index 567f694..b76e6de 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1void__.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1void__.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1width__adapter-members.html b/docs/structfmt_1_1v5_1_1internal_1_1width__adapter-members.html index 4d56680..a8269d0 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1width__adapter-members.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1width__adapter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1internal_1_1width__adapter.html b/docs/structfmt_1_1v5_1_1internal_1_1width__adapter.html index 4080d49..d02e674 100644 --- a/docs/structfmt_1_1v5_1_1internal_1_1width__adapter.html +++ b/docs/structfmt_1_1v5_1_1internal_1_1width__adapter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1is__compile__string.html b/docs/structfmt_1_1v5_1_1is__compile__string.html index be59d8f..521960f 100644 --- a/docs/structfmt_1_1v5_1_1is__compile__string.html +++ b/docs/structfmt_1_1v5_1_1is__compile__string.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1is__constructible.html b/docs/structfmt_1_1v5_1_1is__constructible.html index 91ade64..98d3af8 100644 --- a/docs/structfmt_1_1v5_1_1is__constructible.html +++ b/docs/structfmt_1_1v5_1_1is__constructible.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1is__contiguous.html b/docs/structfmt_1_1v5_1_1is__contiguous.html index 5a8eac1..161dcdb 100644 --- a/docs/structfmt_1_1v5_1_1is__contiguous.html +++ b/docs/structfmt_1_1v5_1_1is__contiguous.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1is__contiguous_3_01internal_1_1basic__buffer_3_01_char_01_4_01_4.html b/docs/structfmt_1_1v5_1_1is__contiguous_3_01internal_1_1basic__buffer_3_01_char_01_4_01_4.html index b61efbd..032f98d 100644 --- a/docs/structfmt_1_1v5_1_1is__contiguous_3_01internal_1_1basic__buffer_3_01_char_01_4_01_4.html +++ b/docs/structfmt_1_1v5_1_1is__contiguous_3_01internal_1_1basic__buffer_3_01_char_01_4_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1is__contiguous_3_01std_1_1basic__string_3_01_char_01_4_01_4.html b/docs/structfmt_1_1v5_1_1is__contiguous_3_01std_1_1basic__string_3_01_char_01_4_01_4.html index 88effe9..124fe12 100644 --- a/docs/structfmt_1_1v5_1_1is__contiguous_3_01std_1_1basic__string_3_01_char_01_4_01_4.html +++ b/docs/structfmt_1_1v5_1_1is__contiguous_3_01std_1_1basic__string_3_01_char_01_4_01_4.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1is__range-members.html b/docs/structfmt_1_1v5_1_1is__range-members.html index 83adbec..a8584a8 100644 --- a/docs/structfmt_1_1v5_1_1is__range-members.html +++ b/docs/structfmt_1_1v5_1_1is__range-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1is__range.html b/docs/structfmt_1_1v5_1_1is__range.html index f622409..8b13709 100644 --- a/docs/structfmt_1_1v5_1_1is__range.html +++ b/docs/structfmt_1_1v5_1_1is__range.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1is__tuple__like-members.html b/docs/structfmt_1_1v5_1_1is__tuple__like-members.html index 98cc859..2a710bf 100644 --- a/docs/structfmt_1_1v5_1_1is__tuple__like-members.html +++ b/docs/structfmt_1_1v5_1_1is__tuple__like-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1is__tuple__like.html b/docs/structfmt_1_1v5_1_1is__tuple__like.html index dc568fe..cee7dec 100644 --- a/docs/structfmt_1_1v5_1_1is__tuple__like.html +++ b/docs/structfmt_1_1v5_1_1is__tuple__like.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1monostate.html b/docs/structfmt_1_1v5_1_1monostate.html index 91d3611..770efcc 100644 --- a/docs/structfmt_1_1v5_1_1monostate.html +++ b/docs/structfmt_1_1v5_1_1monostate.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1printf__formatter-members.html b/docs/structfmt_1_1v5_1_1printf__formatter-members.html index 2ea5a21..086db30 100644 --- a/docs/structfmt_1_1v5_1_1printf__formatter-members.html +++ b/docs/structfmt_1_1v5_1_1printf__formatter-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1printf__formatter.html b/docs/structfmt_1_1v5_1_1printf__formatter.html index 0286ce7..ea3d85d 100644 --- a/docs/structfmt_1_1v5_1_1printf__formatter.html +++ b/docs/structfmt_1_1v5_1_1printf__formatter.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1rgb-members.html b/docs/structfmt_1_1v5_1_1rgb-members.html index ac39e10..301283a 100644 --- a/docs/structfmt_1_1v5_1_1rgb-members.html +++ b/docs/structfmt_1_1v5_1_1rgb-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1rgb.html b/docs/structfmt_1_1v5_1_1rgb.html index 0e98e93..8391c67 100644 --- a/docs/structfmt_1_1v5_1_1rgb.html +++ b/docs/structfmt_1_1v5_1_1rgb.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1wformat__args-members.html b/docs/structfmt_1_1v5_1_1wformat__args-members.html index 13148dc..9e8cbbb 100644 --- a/docs/structfmt_1_1v5_1_1wformat__args-members.html +++ b/docs/structfmt_1_1v5_1_1wformat__args-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structfmt_1_1v5_1_1wformat__args.html b/docs/structfmt_1_1v5_1_1wformat__args.html index 93ae01c..0b48fac 100644 --- a/docs/structfmt_1_1v5_1_1wformat__args.html +++ b/docs/structfmt_1_1v5_1_1wformat__args.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structlivox_1_1_comm_packet-members.html b/docs/structlivox_1_1_comm_packet-members.html index 4ede18c..7867ad6 100644 --- a/docs/structlivox_1_1_comm_packet-members.html +++ b/docs/structlivox_1_1_comm_packet-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structlivox_1_1_comm_packet.html b/docs/structlivox_1_1_comm_packet.html index bf8d734..c47d2b6 100644 --- a/docs/structlivox_1_1_comm_packet.html +++ b/docs/structlivox_1_1_comm_packet.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structlivox_1_1_port_cache-members.html b/docs/structlivox_1_1_port_cache-members.html index 7652911..537d66a 100644 --- a/docs/structlivox_1_1_port_cache-members.html +++ b/docs/structlivox_1_1_port_cache-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structlivox_1_1_port_cache.html b/docs/structlivox_1_1_port_cache.html index da951b8..36c6f89 100644 --- a/docs/structlivox_1_1_port_cache.html +++ b/docs/structlivox_1_1_port_cache.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1async__factory__impl-members.html b/docs/structspdlog_1_1async__factory__impl-members.html index 717475c..48fee75 100644 --- a/docs/structspdlog_1_1async__factory__impl-members.html +++ b/docs/structspdlog_1_1async__factory__impl-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1async__factory__impl.html b/docs/structspdlog_1_1async__factory__impl.html index 7c85a0f..e2017fb 100644 --- a/docs/structspdlog_1_1async__factory__impl.html +++ b/docs/structspdlog_1_1async__factory__impl.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1async__msg-members.html b/docs/structspdlog_1_1details_1_1async__msg-members.html index 91c574f..5945246 100644 --- a/docs/structspdlog_1_1details_1_1async__msg-members.html +++ b/docs/structspdlog_1_1details_1_1async__msg-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1async__msg.html b/docs/structspdlog_1_1details_1_1async__msg.html index 3403b95..64f2a9f 100644 --- a/docs/structspdlog_1_1details_1_1async__msg.html +++ b/docs/structspdlog_1_1details_1_1async__msg.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1console__mutex-members.html b/docs/structspdlog_1_1details_1_1console__mutex-members.html index 25e7d8a..fc513f4 100644 --- a/docs/structspdlog_1_1details_1_1console__mutex-members.html +++ b/docs/structspdlog_1_1details_1_1console__mutex-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1console__mutex.html b/docs/structspdlog_1_1details_1_1console__mutex.html index 5974120..8a5845e 100644 --- a/docs/structspdlog_1_1details_1_1console__mutex.html +++ b/docs/structspdlog_1_1details_1_1console__mutex.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1console__nullmutex-members.html b/docs/structspdlog_1_1details_1_1console__nullmutex-members.html index fcd2f2e..35870ab 100644 --- a/docs/structspdlog_1_1details_1_1console__nullmutex-members.html +++ b/docs/structspdlog_1_1details_1_1console__nullmutex-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1console__nullmutex.html b/docs/structspdlog_1_1details_1_1console__nullmutex.html index ab08a06..2d135a5 100644 --- a/docs/structspdlog_1_1details_1_1console__nullmutex.html +++ b/docs/structspdlog_1_1details_1_1console__nullmutex.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1console__stderr-members.html b/docs/structspdlog_1_1details_1_1console__stderr-members.html index 2e0d358..6c3c1d3 100644 --- a/docs/structspdlog_1_1details_1_1console__stderr-members.html +++ b/docs/structspdlog_1_1details_1_1console__stderr-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1console__stderr.html b/docs/structspdlog_1_1details_1_1console__stderr.html index 3e2de68..7f8ef8d 100644 --- a/docs/structspdlog_1_1details_1_1console__stderr.html +++ b/docs/structspdlog_1_1details_1_1console__stderr.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1console__stdout-members.html b/docs/structspdlog_1_1details_1_1console__stdout-members.html index 3bc9ce6..429fdd6 100644 --- a/docs/structspdlog_1_1details_1_1console__stdout-members.html +++ b/docs/structspdlog_1_1details_1_1console__stdout-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1console__stdout.html b/docs/structspdlog_1_1details_1_1console__stdout.html index be4e8ac..a9e90e0 100644 --- a/docs/structspdlog_1_1details_1_1console__stdout.html +++ b/docs/structspdlog_1_1details_1_1console__stdout.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1log__msg-members.html b/docs/structspdlog_1_1details_1_1log__msg-members.html index d8891ae..207ab4e 100644 --- a/docs/structspdlog_1_1details_1_1log__msg-members.html +++ b/docs/structspdlog_1_1details_1_1log__msg-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1log__msg.html b/docs/structspdlog_1_1details_1_1log__msg.html index 9d9f5aa..1acaa59 100644 --- a/docs/structspdlog_1_1details_1_1log__msg.html +++ b/docs/structspdlog_1_1details_1_1log__msg.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1null__atomic__int-members.html b/docs/structspdlog_1_1details_1_1null__atomic__int-members.html index 384864e..2b9ba25 100644 --- a/docs/structspdlog_1_1details_1_1null__atomic__int-members.html +++ b/docs/structspdlog_1_1details_1_1null__atomic__int-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1null__atomic__int.html b/docs/structspdlog_1_1details_1_1null__atomic__int.html index fb285a6..9c37d33 100644 --- a/docs/structspdlog_1_1details_1_1null__atomic__int.html +++ b/docs/structspdlog_1_1details_1_1null__atomic__int.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1null__mutex-members.html b/docs/structspdlog_1_1details_1_1null__mutex-members.html index 3a7b695..91ae9f0 100644 --- a/docs/structspdlog_1_1details_1_1null__mutex-members.html +++ b/docs/structspdlog_1_1details_1_1null__mutex-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1null__mutex.html b/docs/structspdlog_1_1details_1_1null__mutex.html index 193942e..6d31d96 100644 --- a/docs/structspdlog_1_1details_1_1null__mutex.html +++ b/docs/structspdlog_1_1details_1_1null__mutex.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1padding__info-members.html b/docs/structspdlog_1_1details_1_1padding__info-members.html index cec8ead..4b6b094 100644 --- a/docs/structspdlog_1_1details_1_1padding__info-members.html +++ b/docs/structspdlog_1_1details_1_1padding__info-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1details_1_1padding__info.html b/docs/structspdlog_1_1details_1_1padding__info.html index ed947f2..c8aa394 100644 --- a/docs/structspdlog_1_1details_1_1padding__info.html +++ b/docs/structspdlog_1_1details_1_1padding__info.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1sinks_1_1daily__filename__calculator-members.html b/docs/structspdlog_1_1sinks_1_1daily__filename__calculator-members.html index 58ea0a6..e0315f0 100644 --- a/docs/structspdlog_1_1sinks_1_1daily__filename__calculator-members.html +++ b/docs/structspdlog_1_1sinks_1_1daily__filename__calculator-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1sinks_1_1daily__filename__calculator.html b/docs/structspdlog_1_1sinks_1_1daily__filename__calculator.html index 67f3903..d5ffdf2 100644 --- a/docs/structspdlog_1_1sinks_1_1daily__filename__calculator.html +++ b/docs/structspdlog_1_1sinks_1_1daily__filename__calculator.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1source__loc-members.html b/docs/structspdlog_1_1source__loc-members.html index f39569e..3523454 100644 --- a/docs/structspdlog_1_1source__loc-members.html +++ b/docs/structspdlog_1_1source__loc-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1source__loc.html b/docs/structspdlog_1_1source__loc.html index d9c2514..6aa3c50 100644 --- a/docs/structspdlog_1_1source__loc.html +++ b/docs/structspdlog_1_1source__loc.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1synchronous__factory-members.html b/docs/structspdlog_1_1synchronous__factory-members.html index 235eb76..6c98e3f 100644 --- a/docs/structspdlog_1_1synchronous__factory-members.html +++ b/docs/structspdlog_1_1synchronous__factory-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/structspdlog_1_1synchronous__factory.html b/docs/structspdlog_1_1synchronous__factory.html index d4b0590..e80aae1 100644 --- a/docs/structspdlog_1_1synchronous__factory.html +++ b/docs/structspdlog_1_1synchronous__factory.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/syslog__sink_8h.html b/docs/syslog__sink_8h.html index 639b820..e00c6c4 100644 --- a/docs/syslog__sink_8h.html +++ b/docs/syslog__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/syslog__sink_8h_source.html b/docs/syslog__sink_8h_source.html index 4e6696d..11e730b 100644 --- a/docs/syslog__sink_8h_source.html +++ b/docs/syslog__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/thread__pool_8h.html b/docs/thread__pool_8h.html index 3fda1bc..5d74b6d 100644 --- a/docs/thread__pool_8h.html +++ b/docs/thread__pool_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/thread__pool_8h_source.html b/docs/thread__pool_8h_source.html index 672de6d..a69f16b 100644 --- a/docs/thread__pool_8h_source.html +++ b/docs/thread__pool_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/time_8h.html b/docs/time_8h.html index cae35c6..6e8096f 100644 --- a/docs/time_8h.html +++ b/docs/time_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/time_8h_source.html b/docs/time_8h_source.html index f9d5b14..079bef9 100644 --- a/docs/time_8h_source.html +++ b/docs/time_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/tweakme_8h.html b/docs/tweakme_8h.html index 4fe695b..ff0116c 100644 --- a/docs/tweakme_8h.html +++ b/docs/tweakme_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/tweakme_8h_source.html b/docs/tweakme_8h_source.html index b476496..23508a8 100644 --- a/docs/tweakme_8h_source.html +++ b/docs/tweakme_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/union_status_union-members.html b/docs/union_status_union-members.html index cd2bbb1..250615d 100644 --- a/docs/union_status_union-members.html +++ b/docs/union_status_union-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/union_status_union.html b/docs/union_status_union.html index d45bff1..32ecc87 100644 --- a/docs/union_status_union.html +++ b/docs/union_status_union.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union-members.html b/docs/unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union-members.html index b298b40..805739e 100644 --- a/docs/unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union-members.html +++ b/docs/unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union-members.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html b/docs/unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html index 72765b0..e5d3670 100644 --- a/docs/unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html +++ b/docs/unionfmt_1_1v5_1_1internal_1_1color__type_1_1color__union.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/version_8h.html b/docs/version_8h.html index 53dc535..00b3923 100644 --- a/docs/version_8h.html +++ b/docs/version_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/version_8h_source.html b/docs/version_8h_source.html index 9562daf..7b56add 100644 --- a/docs/version_8h_source.html +++ b/docs/version_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/wincolor__sink_8h.html b/docs/wincolor__sink_8h.html index eb4c953..c6c4dd7 100644 --- a/docs/wincolor__sink_8h.html +++ b/docs/wincolor__sink_8h.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/docs/wincolor__sink_8h_source.html b/docs/wincolor__sink_8h_source.html index 583d404..63bd83c 100644 --- a/docs/wincolor__sink_8h_source.html +++ b/docs/wincolor__sink_8h_source.html @@ -31,7 +31,7 @@ Logo
Livox SDK API -  v1.0.0 +  V1.1.0
diff --git a/sample/hub/main.c b/sample/hub/main.c index d62c853..58afb9c 100644 --- a/sample/hub/main.c +++ b/sample/hub/main.c @@ -59,16 +59,16 @@ char broadcast_code_list[BROADCAST_CODE_LIST_SIZE][kBroadcastCodeSize] = { "00000000000001" };*/ -void GetLidarData(uint8_t handle, LivoxEthPacket *data, uint32_t data_num) { +void GetLidarData(uint8_t handle, LivoxEthPacket *data, uint32_t data_num, void *client_data) { static uint32_t receive_packet_count = 0; if (data) { ++receive_packet_count; if (0 == (receive_packet_count % 10000)) { printf("receive packet count %d %d\n", data->id, receive_packet_count); - /** Parsing the timestamp and the point cloud data. */ - uint64_t cur_timestamp = *((uint64_t *)(data->timestamp)); - LivoxRawPoint *p_point_data = (LivoxRawPoint *)data->data; + /** Parsing the timestamp and the point cloud data. */ + uint64_t cur_timestamp = *((uint64_t *)(data->timestamp)); + LivoxRawPoint *p_point_data = (LivoxRawPoint *)data->data; } printf("receive packet from %d \n", (uint16_t) HubGetLidarHandle(data->slot, data->id)); } @@ -198,7 +198,7 @@ void OnDeviceBroadcast(const BroadcastDeviceInfo *info) { uint8_t handle = 0; result = AddHubToConnect(info->broadcast_code, &handle); if (result == kStatusSuccess && handle < kMaxLidarCount) { - SetDataCallback(handle, GetLidarData); + SetDataCallback(handle, GetLidarData, NULL); devices[handle].handle = handle; devices[handle].device_state = kDeviceStateDisconnect; } @@ -221,8 +221,14 @@ int SetProgramOption(int argc, const char *argv[]) { int optch = 0; const char *optarg = NULL; - apr_initialize(); - apr_pool_create(&mp, NULL); + if (apr_initialize() != APR_SUCCESS) { + return -1; + } + + if (apr_pool_create(&mp, NULL) != APR_SUCCESS) { + return -1; + } + rv = apr_getopt_init(&opt, mp, argc, argv); if (rv != APR_SUCCESS) { printf("Program options initialization failed.\n"); diff --git a/sample/hub_lvx_file/CMakeLists.txt b/sample/hub_lvx_file/CMakeLists.txt new file mode 100644 index 0000000..3431e26 --- /dev/null +++ b/sample/hub_lvx_file/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.0) + +set(DEMO_NAME hub_lvx_sample) +add_executable(${DEMO_NAME} main.cpp lvx_file.cpp) +target_link_libraries(${DEMO_NAME} + PRIVATE + ${PROJECT_NAME}_static + ) diff --git a/sample/hub_lvx_file/lvx_file.cpp b/sample/hub_lvx_file/lvx_file.cpp new file mode 100644 index 0000000..7a8d50a --- /dev/null +++ b/sample/hub_lvx_file/lvx_file.cpp @@ -0,0 +1,155 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2019 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include +#include +#include "lvx_file.h" + +#define WRITE_BUFFER_LEN 1024 * 1024 +#define MAGIC_CODE (0xac0ea767) +#define PACK_POINT_NUM 100 +#define M_PI 3.14159265358979323846 + +LvxFileHandle::LvxFileHandle() : cur_offset_(0), cur_frame_index_(0) { +} + +bool LvxFileHandle::InitLvxFile() { + time_t curtime = time(nullptr); + char filename[30] = { 0 }; + + tm* local_time = localtime(&curtime); + sprintf(filename, "%d-%02d-%02d_%02d-%02d-%02d.lvx", local_time->tm_year + 1900, + local_time->tm_mon + 1, + local_time->tm_mday, + local_time->tm_hour, + local_time->tm_min, + local_time->tm_sec); + + lvx_file_.open(filename, std::ios::out | std::ios::binary); + + if (!lvx_file_.is_open()) { + return false; + } + return true; +} + +void LvxFileHandle::InitLvxFileHeader() { + LvxFileHeader lvx_file_header = { 0 }; + std::unique_ptr write_buffer(new char[WRITE_BUFFER_LEN]); + std::string signature = "livox_tech"; + memcpy(lvx_file_header.signature, signature.c_str(), signature.size()); + + lvx_file_header.version[0] = 1; + lvx_file_header.version[1] = 0; + lvx_file_header.version[2] = 0; + lvx_file_header.version[3] = 0; + + lvx_file_header.magic_code = MAGIC_CODE; + + memcpy(write_buffer.get() + cur_offset_, (void *)&lvx_file_header, sizeof(LvxFileHeader)); + cur_offset_ += sizeof(LvxFileHeader); + + uint8_t device_count = static_cast(device_info_list_.size()); + memcpy(write_buffer.get() + cur_offset_, (void *)&device_count, sizeof(uint8_t)); + cur_offset_ += sizeof(uint8_t); + + for (int i = 0; i < device_count; i++) { + memcpy(write_buffer.get() + cur_offset_, (void *)&device_info_list_[i], sizeof(LvxDeviceInfo)); + cur_offset_ += sizeof(LvxDeviceInfo); + } + + lvx_file_.write((char *)write_buffer.get(), cur_offset_); +} + +void LvxFileHandle::SaveFrameToLvxFile(std::list &point_packet_list_temp) { + uint64_t cur_pos = 0; + FrameHeader frame_header = { 0 }; + std::unique_ptr write_buffer(new char[WRITE_BUFFER_LEN]); + + int pack_num = point_packet_list_temp.size(); + frame_header.current_offset = cur_offset_; + frame_header.next_offset = cur_offset_ + (int64_t)pack_num * sizeof(LvxBasePackDetail) + sizeof(FrameHeader); + frame_header.package_count = pack_num; + frame_header.frame_index = cur_frame_index_; + + memcpy(write_buffer.get() + cur_pos, (void*)&frame_header, sizeof(FrameHeader)); + cur_pos += sizeof(FrameHeader); + + auto iter = point_packet_list_temp.begin(); + for (; iter != point_packet_list_temp.end(); iter++) { + if (cur_pos + sizeof(LvxBasePackDetail) >= WRITE_BUFFER_LEN) { + lvx_file_.write((char*)write_buffer.get(), cur_pos); + cur_pos = 0; + memcpy(write_buffer.get() + cur_pos, (void*)&(*iter), sizeof(LvxBasePackDetail)); + cur_pos += sizeof(LvxBasePackDetail); + } + else { + memcpy(write_buffer.get() + cur_pos, (void*)&(*iter), sizeof(LvxBasePackDetail)); + cur_pos += sizeof(LvxBasePackDetail); + } + } + lvx_file_.write((char*)write_buffer.get(), cur_pos); + + cur_offset_ = frame_header.next_offset; + cur_frame_index_++; +} + +void LvxFileHandle::CloseLvxFile() { + if (lvx_file_.is_open()) + lvx_file_.close(); +} + +void LvxFileHandle::BasePointsHandle(LivoxEthPacket *data, LvxBasePackDetail &packet) { + packet.version = data->version; + packet.port_id = data->slot; + packet.lidar_index = data->id; + packet.rsvd = data->rsvd; + packet.error_code = data->err_code; + packet.timestamp_type = data->timestamp_type; + packet.data_type = data->data_type; + memcpy(packet.timestamp, data->timestamp, 8 * sizeof(uint8_t)); + + if (packet.data_type == 0) { + LivoxRawPoint tmp[PACK_POINT_NUM]; + memcpy(tmp, (void *)data->data, PACK_POINT_NUM * sizeof(LivoxRawPoint)); + for (int i = 0; i < PACK_POINT_NUM; i++) { + packet.point[i].x = static_cast(tmp[i].x / 1000.0); + packet.point[i].y = static_cast(tmp[i].y / 1000.0); + packet.point[i].z = static_cast(tmp[i].z / 1000.0); + packet.point[i].reflectivity = tmp[i].reflectivity; + } + } + else if (packet.data_type == 1) { + LivoxSpherPoint tmp[PACK_POINT_NUM]; + memcpy(tmp, (void *)data->data, PACK_POINT_NUM * sizeof(LivoxSpherPoint)); + for (int i = 0; i < PACK_POINT_NUM; i++) { + packet.point[i].x = static_cast(tmp[i].depth / 1000.0); + packet.point[i].y = static_cast(tmp[i].theta); + packet.point[i].z = static_cast(tmp[i].phi); + packet.point[i].reflectivity = tmp[i].reflectivity; + LivoxPoint temp = { packet.point[i].x * sin(packet.point[i].y) * cos(packet.point[i].z), packet.point[i].x * sin(packet.point[i].y) * sin(packet.point[i].z), packet.point[i].x * cos(packet.point[i].y) };; + packet.point[i] = temp; + } + } +} \ No newline at end of file diff --git a/sample/hub_lvx_file/lvx_file.h b/sample/hub_lvx_file/lvx_file.h new file mode 100644 index 0000000..bc84576 --- /dev/null +++ b/sample/hub_lvx_file/lvx_file.h @@ -0,0 +1,110 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2019 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "livox_sdk.h" + +typedef enum { + kDeviceStateDisconnect = 0, + kDeviceStateConnect = 1, + kDeviceStateSampling = 2, +} DeviceState; + +typedef struct { + uint8_t handle; + DeviceState device_state; + DeviceInfo info; +} DeviceItem; + +#pragma pack(1) + +typedef struct { + uint8_t signature[16]; + uint8_t version[4]; + uint32_t magic_code; +}LvxFileHeader; + +typedef struct { + uint8_t lidar_broadcast_code[16]; + uint8_t hub_broadcast_code[16]; + uint8_t device_index; + uint8_t device_type; + float roll; + float pitch; + float yaw; + float x; + float y; + float z; +} LvxDeviceInfo; + +typedef struct { + uint8_t device_index; + uint8_t version; + uint8_t port_id; + uint8_t lidar_index; + uint8_t rsvd; + uint32_t error_code; + uint8_t timestamp_type; + uint8_t data_type; + uint8_t timestamp[8]; + LivoxPoint point[100]; +}LvxBasePackDetail; + +typedef struct { + uint64_t current_offset; + uint64_t next_offset; + uint64_t frame_index; + uint64_t package_count; +}FrameHeader; + +#pragma pack() + +class LvxFileHandle { +public: + LvxFileHandle(); + + bool InitLvxFile(); + void InitLvxFileHeader(); + void SaveFrameToLvxFile(std::list &point_packet_list_temp); + void CloseLvxFile(); + + void AddDeviceInfo(LvxDeviceInfo &info) { device_info_list_.push_back(info); }; + int GetDeviceInfoListSize() { return device_info_list_.size(); } + + void BasePointsHandle(LivoxEthPacket *data, LvxBasePackDetail &packet); + +private: + std::ofstream lvx_file_; + std::vector device_info_list_; + uint32_t cur_frame_index_; + uint64_t cur_offset_; +}; \ No newline at end of file diff --git a/sample/hub_lvx_file/main.cpp b/sample/hub_lvx_file/main.cpp new file mode 100644 index 0000000..ef656cd --- /dev/null +++ b/sample/hub_lvx_file/main.cpp @@ -0,0 +1,354 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2019 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifdef WIN32 +#include +#else +#include +#endif +#include +#include +#include +#include +#include "lvx_file.h" + +DeviceItem devices[kMaxLidarCount]; +LvxFileHandle lvx_file_handler; +std::list point_packet_list; +std::condition_variable condition_variable; +std::mutex mtx; +int lidar_units_index[32]; +int lvx_file_save_time = 10; +bool is_finish_extrinsic_parameter = false; + +#define FRAME_RATE 20 + +/** Connect the first broadcast hub in default and connect specific device when use program options or broadcast_code_list is not empty. */ +std::vector broadcast_code_list = { + //"000000000000001" +}; + +/** Receiving point cloud data from Livox Hub. */ +void GetHubData(uint8_t handle, LivoxEthPacket *data, uint32_t data_num, void *client_data) { + if (data) { + if (is_finish_extrinsic_parameter) { + std::lock_guard lock(mtx); + LvxBasePackDetail packet; + packet.device_index = lidar_units_index[HubGetLidarHandle(data->slot, data->id)]; + lvx_file_handler.BasePointsHandle(data, packet); + point_packet_list.push_back(packet); + + if (point_packet_list.size() % (50 * broadcast_code_list.size()) == 0) { + condition_variable.notify_one(); + } + } + } +} + +/** Callback function of starting sampling. */ +void OnSampleCallback(uint8_t status, uint8_t handle, uint8_t response, void *data) { + printf("OnSampleCallback statue %d handle %d response %d \n", status, handle, response); + if (status == kStatusSuccess) { + if (response != 0) { + devices[handle].device_state = kDeviceStateConnect; + } + } else if (status == kStatusTimeout) { + devices[handle].device_state = kDeviceStateConnect; + } +} + +/** Callback function of stopping sampling. */ +void OnStopSampleCallback(uint8_t status, uint8_t handle, uint8_t response, void *data) { +} + +/** Callback function of get LiDAR units' extrinsic parameter. */ +void OnGetLidarUnitsExtrinsicParameter(uint8_t status, uint8_t handle, HubGetExtrinsicParameterResponse *response, void *data) { + if (status == kStatusSuccess) { + if (response != 0) { + printf("OnGetLidarUnitsExtrinsicParameter statue %d handle %d response %d \n", status, handle, response->ret_code); + std::lock_guard lock(mtx); + LvxDeviceInfo lidar_info; + for (int i = 0; i < response->count; i++) { + ExtrinsicParameterResponseItem temp; + memcpy(&temp, (void *)(response->parameter_list + i), sizeof(ExtrinsicParameterResponseItem)); + strncpy((char *)lidar_info.lidar_broadcast_code, temp.broadcast_code, kBroadcastCodeSize); + strncpy((char *)lidar_info.hub_broadcast_code, broadcast_code_list[0].c_str(), kBroadcastCodeSize); + + std::unique_ptr device_list(new DeviceInfo[kMaxLidarCount]); + std::unique_ptr size(new uint8_t); + GetConnectedDevices(device_list.get(), size.get()); + for (int j = 0; j < kMaxLidarCount; j++) { + if (strncmp(device_list[j].broadcast_code, temp.broadcast_code, kBroadcastCodeSize) == 0) { + lidar_units_index[device_list[j].handle] = i; + lidar_info.device_index = i; + break; + } + } + + lidar_info.device_type = devices[handle].info.type; + lidar_info.pitch = temp.pitch; + lidar_info.roll = temp.roll; + lidar_info.yaw = temp.yaw; + lidar_info.x = static_cast(temp.x / 1000.0); + lidar_info.y = static_cast(temp.y / 1000.0); + lidar_info.z = static_cast(temp.z / 1000.0); + lvx_file_handler.AddDeviceInfo(lidar_info); + } + is_finish_extrinsic_parameter = true; + condition_variable.notify_one(); + } + } + else if (status == kStatusTimeout) { + printf("GetLidarUnitsExtrinsicParameter timeout! \n"); + } +} + +void OnHubLidarInfo(uint8_t status, uint8_t handle, HubQueryLidarInformationResponse *response, void *client_data) { + if (status != kStatusSuccess) { + printf("Device Query Informations Failed %d\n", status); + } + if (response) { + int i = 0; + for (i = 0; i < response->count; ++i) { + printf("Hub Lidar Info broadcast code %s id %d slot %d \n ", + response->device_info_list[i].broadcast_code, + response->device_info_list[i].id, + response->device_info_list[i].slot); + } + } +} + +/** Callback function of changing of device state. */ +void OnDeviceChange(const DeviceInfo *info, DeviceEvent type) { + if (info == nullptr) { + return; + } + printf("OnDeviceChange broadcast code %s update type %d\n", info->broadcast_code, type); + uint8_t handle = info->handle; + if (handle >= kMaxLidarCount) { + return; + } + if (type == kEventConnect) { + HubQueryLidarInformation(OnHubLidarInfo, nullptr); + if (devices[handle].device_state == kDeviceStateDisconnect) { + devices[handle].device_state = kDeviceStateConnect; + devices[handle].info = *info; + } + } else if (type == kEventDisconnect) { + devices[handle].device_state = kDeviceStateDisconnect; + } else if (type == kEventStateChange) { + devices[handle].info = *info; + } + + if (devices[handle].device_state == kDeviceStateConnect) { + printf("Device State error_code %d\n", devices[handle].info.status.status_code); + printf("Device State working state %d\n", devices[handle].info.state); + printf("Device feature %d\n", devices[handle].info.feature); + if (devices[handle].info.state == kLidarStateNormal) { + if (devices[handle].info.type == kDeviceTypeHub) { + HubGetExtrinsicParameter(OnGetLidarUnitsExtrinsicParameter, nullptr); + HubStartSampling(OnSampleCallback, nullptr); + devices[handle].device_state = kDeviceStateSampling; + } + } + } +} + +/** Callback function when broadcast message received. + * You need to add listening device broadcast code and set the point cloud data callback in this function. + */ +void OnDeviceBroadcast(const BroadcastDeviceInfo *info) { + if (info == nullptr) { + return; + } + + printf("Receive Broadcast Code %s\n", info->broadcast_code); + + if (broadcast_code_list.size() > 0) { + bool found = false; + uint8_t i = 0; + for (i = 0; i < broadcast_code_list.size(); ++i) { + if (strncmp(info->broadcast_code, broadcast_code_list[i].c_str(), kBroadcastCodeSize) == 0) { + found = true; + break; + } + } + if (!found) { + return; + } + } + else { + broadcast_code_list.push_back(info->broadcast_code); + return; + } + + bool result = false; + uint8_t handle = 0; + result = AddHubToConnect(info->broadcast_code, &handle); + if (result == kStatusSuccess) { + SetDataCallback(handle, GetHubData, nullptr); + devices[handle].handle = handle; + devices[handle].device_state = kDeviceStateDisconnect; + } +} + +/** Set the program options. +* You can input the registered device broadcast code and decide whether to save the log file. +*/ +int SetProgramOption(int argc, const char *argv[]) { + apr_status_t rv; + apr_pool_t *mp = nullptr; + static const apr_getopt_option_t opt_option[] = { + /** Long-option, short-option, has-arg flag, description */ + { "code", 'c', 1, "Register device broadcast code" }, + { "log", 'l', 0, "Save the log file" }, + { "time", 't', 1, "Time to save point cloud to the lvx file" }, + { "help", 'h', 0, "Show help" }, + { nullptr, 0, 0, nullptr }, + }; + apr_getopt_t *opt = nullptr; + int optch = 0; + const char *optarg = nullptr; + + if (apr_initialize() != APR_SUCCESS) { + return -1; + } + + if (apr_pool_create(&mp, NULL) != APR_SUCCESS) { + return -1; + } + + rv = apr_getopt_init(&opt, mp, argc, argv); + if (rv != APR_SUCCESS) { + printf("Program options initialization failed.\n"); + return -1; + } + + /** Parse the all options based on opt_option[] */ + bool is_help = false; + while ((rv = apr_getopt_long(opt, opt_option, &optch, &optarg)) == APR_SUCCESS) { + switch (optch) { + case 'c': { + printf("Register broadcast code: %s\n", optarg); + broadcast_code_list.push_back(optarg); + break; + } + case 'l': { + printf("Save the log file.\n"); + SaveLoggerFile(); + break; + } + case 't': { + printf("Time to save point cloud to the lvx file:%s.\n", optarg); + lvx_file_save_time = atoi(optarg); + break; + } + case 'h': { + printf( + " [-c] Register device broadcast code\n" + " [-l] Save the log file\n" + " [-t] Time to save point cloud to the lvx file\n" + " [-h] Show help\n" + ); + is_help = true; + break; + } + } + } + if (rv != APR_EOF) { + printf("Invalid options.\n"); + } + + apr_pool_destroy(mp); + mp = nullptr; + if (is_help) + return 1; + return 0; +} + +int main(int argc, const char *argv[]) { +/** Set the program options. */ + if (SetProgramOption(argc, argv)) + return 0; + + printf("Livox SDK initializing.\n"); +/** Initialize Livox-SDK. */ + if (!Init()) { + return -1; + } + printf("Livox SDK has been initialized.\n"); + + LivoxSdkVersion _sdkversion; + GetLivoxSdkVersion(&_sdkversion); + printf("Livox SDK version %d.%d.%d .\n", _sdkversion.major, _sdkversion.minor, _sdkversion.patch); + + memset(devices, 0, sizeof(devices)); + +/** Set the callback function receiving broadcast message from Livox LiDAR. */ + SetBroadcastCallback(OnDeviceBroadcast); + +/** Set the callback function called when device state change, + * which means connection/disconnection and changing of LiDAR state. + */ + SetDeviceStateUpdateCallback(OnDeviceChange); + +/** Start the device discovering routine. */ + if (!Start()) { + Uninit(); + return -1; + } + printf("Start discovering device.\n"); + + { + std::unique_lock lock(mtx); + condition_variable.wait(lock); + } + + printf("Start initialize lvx file.\n"); + if (!lvx_file_handler.InitLvxFile()) { + Uninit(); + return -1; + } + lvx_file_handler.InitLvxFileHeader(); + + int i = 0; + for (i = 0; i < lvx_file_save_time * FRAME_RATE; ++i) { + std::list point_packet_list_temp; + { + std::unique_lock lock(mtx); + condition_variable.wait(lock); + point_packet_list_temp.swap(point_packet_list); + } + + printf("Finish save %d frame to lvx file.\n", i); + lvx_file_handler.SaveFrameToLvxFile(point_packet_list_temp); + } + + lvx_file_handler.CloseLvxFile(); + + HubStopSampling(OnStopSampleCallback, NULL); + printf("stop sample\n"); + + Uninit(); +} diff --git a/sample/lidar/main.c b/sample/lidar/main.c index a76a969..962d0db 100644 --- a/sample/lidar/main.c +++ b/sample/lidar/main.c @@ -63,15 +63,15 @@ char broadcast_code_list[kMaxLidarCount][kBroadcastCodeSize] = { };*/ /** Receiving point cloud data from Livox LiDAR. */ -void GetLidarData(uint8_t handle, LivoxEthPacket *data, uint32_t data_num) { +void GetLidarData(uint8_t handle, LivoxEthPacket *data, uint32_t data_num, void *client_data) { if (data) { data_recveive_count[handle] += data_num; if (data_recveive_count[handle] % 10000 == 0) { printf("receive packet count %d %d\n", handle, data_recveive_count[handle]); - /** Parsing the timestamp and the point cloud data. */ - uint64_t cur_timestamp = *((uint64_t *)(data->timestamp)); - LivoxRawPoint *p_point_data = (LivoxRawPoint *)data->data; + /** Parsing the timestamp and the point cloud data. */ + uint64_t cur_timestamp = *((uint64_t *)(data->timestamp)); + LivoxRawPoint *p_point_data = (LivoxRawPoint *)data->data; } } } @@ -172,7 +172,7 @@ void OnDeviceBroadcast(const BroadcastDeviceInfo *info) { result = AddLidarToConnect(info->broadcast_code, &handle); if (result == kStatusSuccess) { /** Set the point cloud data for a specific Livox LiDAR. */ - SetDataCallback(handle, GetLidarData); + SetDataCallback(handle, GetLidarData, NULL); devices[handle].handle = handle; devices[handle].device_state = kDeviceStateDisconnect; } @@ -195,8 +195,14 @@ int SetProgramOption(int argc, const char *argv[]) { int optch = 0; const char *optarg = NULL; - apr_initialize(); - apr_pool_create(&mp, NULL); + if (apr_initialize() != APR_SUCCESS) { + return -1; + } + + if (apr_pool_create(&mp, NULL) != APR_SUCCESS) { + return -1; + } + rv = apr_getopt_init(&opt, mp, argc, argv); if (rv != APR_SUCCESS) { printf("Program options initialization failed.\n"); diff --git a/sample/lidar_lvx_file/CMakeLists.txt b/sample/lidar_lvx_file/CMakeLists.txt new file mode 100644 index 0000000..3bf0a78 --- /dev/null +++ b/sample/lidar_lvx_file/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.0) + +set(DEMO_NAME lidar_lvx_sample) +add_executable(${DEMO_NAME} main.cpp lvx_file.cpp) +target_link_libraries(${DEMO_NAME} + PRIVATE + ${PROJECT_NAME}_static + ) diff --git a/sample/lidar_lvx_file/lvx_file.cpp b/sample/lidar_lvx_file/lvx_file.cpp new file mode 100644 index 0000000..553ed0c --- /dev/null +++ b/sample/lidar_lvx_file/lvx_file.cpp @@ -0,0 +1,208 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2019 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include +#include +#include "lvx_file.h" +#include "third_party/rapidxml/rapidxml.hpp" +#include "third_party/rapidxml/rapidxml_utils.hpp" + +#define WRITE_BUFFER_LEN 1024 * 1024 +#define MAGIC_CODE (0xac0ea767) +#define PACK_POINT_NUM 100 +#define M_PI 3.14159265358979323846 + +LvxFileHandle::LvxFileHandle() : cur_offset_(0), cur_frame_index_(0) { +} + +bool LvxFileHandle::InitLvxFile() { + time_t curtime = time(nullptr); + char filename[30] = { 0 }; + + tm* local_time = localtime(&curtime); + sprintf(filename, "%d-%02d-%02d_%02d-%02d-%02d.lvx", local_time->tm_year + 1900, + local_time->tm_mon + 1, + local_time->tm_mday, + local_time->tm_hour, + local_time->tm_min, + local_time->tm_sec); + + lvx_file_.open(filename, std::ios::out | std::ios::binary); + + if (!lvx_file_.is_open()) { + return false; + } + return true; +} + +void LvxFileHandle::InitLvxFileHeader() { + LvxFileHeader lvx_file_header = { 0 }; + std::unique_ptr write_buffer(new char[WRITE_BUFFER_LEN]); + std::string signature = "livox_tech"; + memcpy(lvx_file_header.signature, signature.c_str(), signature.size()); + + lvx_file_header.version[0] = 1; + lvx_file_header.version[1] = 0; + lvx_file_header.version[2] = 0; + lvx_file_header.version[3] = 0; + + lvx_file_header.magic_code = MAGIC_CODE; + + memcpy(write_buffer.get() + cur_offset_, (void *)&lvx_file_header, sizeof(LvxFileHeader)); + cur_offset_ += sizeof(LvxFileHeader); + + uint8_t device_count = static_cast(device_info_list_.size()); + memcpy(write_buffer.get() + cur_offset_, (void *)&device_count, sizeof(uint8_t)); + cur_offset_ += sizeof(uint8_t); + + for (int i = 0; i < device_count; i++) { + memcpy(write_buffer.get() + cur_offset_, (void *)&device_info_list_[i], sizeof(LvxDeviceInfo)); + cur_offset_ += sizeof(LvxDeviceInfo); + } + + lvx_file_.write((char *)write_buffer.get(), cur_offset_); +} + +void LvxFileHandle::SaveFrameToLvxFile(std::list &point_packet_list_temp) { + uint64_t cur_pos = 0; + FrameHeader frame_header = { 0 }; + std::unique_ptr write_buffer(new char[WRITE_BUFFER_LEN]); + + int pack_num = point_packet_list_temp.size(); + frame_header.current_offset = cur_offset_; + frame_header.next_offset = cur_offset_ + (int64_t)pack_num * sizeof(LvxBasePackDetail) + sizeof(FrameHeader); + frame_header.package_count = pack_num; + frame_header.frame_index = cur_frame_index_; + + memcpy(write_buffer.get() + cur_pos, (void*)&frame_header, sizeof(FrameHeader)); + cur_pos += sizeof(FrameHeader); + + auto iter = point_packet_list_temp.begin(); + for (; iter != point_packet_list_temp.end(); iter++) { + if (cur_pos + sizeof(LvxBasePackDetail) >= WRITE_BUFFER_LEN) { + lvx_file_.write((char*)write_buffer.get(), cur_pos); + cur_pos = 0; + memcpy(write_buffer.get() + cur_pos, (void*)&(*iter), sizeof(LvxBasePackDetail)); + cur_pos += sizeof(LvxBasePackDetail); + } + else { + memcpy(write_buffer.get() + cur_pos, (void*)&(*iter), sizeof(LvxBasePackDetail)); + cur_pos += sizeof(LvxBasePackDetail); + } + } + lvx_file_.write((char*)write_buffer.get(), cur_pos); + + cur_offset_ = frame_header.next_offset; + cur_frame_index_++; +} + +void LvxFileHandle::CloseLvxFile() { + if (lvx_file_.is_open()) + lvx_file_.close(); +} + +void LvxFileHandle::BasePointsHandle(LivoxEthPacket *data, LvxBasePackDetail &packet) { + packet.version = data->version; + packet.port_id = data->slot; + packet.lidar_index = data->id; + packet.rsvd = data->rsvd; + packet.error_code = data->err_code; + packet.timestamp_type = data->timestamp_type; + packet.data_type = data->data_type; + memcpy(packet.timestamp, data->timestamp, 8 * sizeof(uint8_t)); + + if (packet.data_type == 0) { + LivoxRawPoint tmp[PACK_POINT_NUM]; + memcpy(tmp, (void *)data->data, PACK_POINT_NUM * sizeof(LivoxRawPoint)); + for (int i = 0; i < PACK_POINT_NUM; i++) { + packet.point[i].x = static_cast(tmp[i].x / 1000.0); + packet.point[i].y = static_cast(tmp[i].y / 1000.0); + packet.point[i].z = static_cast(tmp[i].z / 1000.0); + packet.point[i].reflectivity = tmp[i].reflectivity; + } + } + else if (packet.data_type == 1) { + LivoxSpherPoint tmp[PACK_POINT_NUM]; + memcpy(tmp, (void *)data->data, PACK_POINT_NUM * sizeof(LivoxSpherPoint)); + for (int i = 0; i < PACK_POINT_NUM; i++) { + packet.point[i].x = static_cast(tmp[i].depth / 1000.0); + packet.point[i].y = static_cast(tmp[i].theta); + packet.point[i].z = static_cast(tmp[i].phi); + packet.point[i].reflectivity = tmp[i].reflectivity; + } + } +} + +void LvxFileHandle::CalcExtrinsicPoints(LvxBasePackDetail &packet) { + LvxDeviceInfo info = device_info_list_[packet.device_index]; + info.roll = static_cast(info.roll * M_PI / 180.0); + info.pitch = static_cast(info.pitch * M_PI / 180.0); + info.yaw = static_cast(info.yaw * M_PI / 180.0); + float rotate[3][3] = { { cos(info.pitch) * cos(info.yaw), sin(info.roll) * sin(info.pitch) * cos(info.yaw) - cos(info.roll) * sin(info.yaw), cos(info.roll) * sin(info.pitch) * cos(info.yaw) + sin(info.roll) * sin(info.yaw) }, + { cos(info.pitch) * sin(info.yaw), sin(info.roll) * sin(info.pitch) * sin(info.yaw) + cos(info.roll) * cos(info.yaw), cos(info.roll) * sin(info.pitch) * sin(info.yaw) - sin(info.roll) * cos(info.yaw) }, + { -sin(info.pitch), sin(info.roll) * cos(info.pitch), cos(info.roll) * cos(info.pitch) } }; + + float trans[3] = { static_cast(info.x), static_cast(info.y), static_cast(info.z) }; + if (packet.data_type == 0) { + for (int i = 0; i < PACK_POINT_NUM; i++) { + LivoxPoint temp = packet.point[i]; + packet.point[i].x = temp.x * rotate[0][0] + temp.y * rotate[0][1] + temp.z * rotate[0][2] + trans[0]; + packet.point[i].y = temp.x * rotate[1][0] + temp.y * rotate[1][1] + temp.z * rotate[1][2] + trans[1]; + packet.point[i].z = temp.x * rotate[2][0] + temp.y * rotate[2][1] + temp.z * rotate[2][2] + trans[2]; + } + } + else { + for (int i = 0; i < PACK_POINT_NUM; i++) { + LivoxPoint temp = { packet.point[i].x * sin(packet.point[i].y) * cos(packet.point[i].z), packet.point[i].x * sin(packet.point[i].y) * sin(packet.point[i].z), packet.point[i].x * cos(packet.point[i].y) };; + packet.point[i].x = temp.x * rotate[0][0] + temp.y * rotate[0][1] + temp.z * rotate[0][2] + trans[0]; + packet.point[i].y = temp.x * rotate[1][0] + temp.y * rotate[1][1] + temp.z * rotate[1][2] + trans[1]; + packet.point[i].z = temp.x * rotate[2][0] + temp.y * rotate[2][1] + temp.z * rotate[2][2] + trans[2]; + } + } +} + +void ParseExtrinsicXml(DeviceItem &item, LvxDeviceInfo &info) { + rapidxml::file<> extrinsic_param("extrinsic.xml"); + rapidxml::xml_document<> doc; + doc.parse<0>(extrinsic_param.data()); + rapidxml::xml_node<>* root = doc.first_node(); + if ("Livox" == (std::string)root->name()) { + for (rapidxml::xml_node<>* device = root->first_node(); device; device = device->next_sibling()) { + if ("Device" == (std::string)device->name() && (strncmp(item.info.broadcast_code, device->value(), kBroadcastCodeSize) == 0)) { + memcpy(info.lidar_broadcast_code, device->value(), kBroadcastCodeSize); + memset(info.hub_broadcast_code, 0, kBroadcastCodeSize); + info.device_type = item.info.type; + info.device_index = item.handle; + for (rapidxml::xml_attribute<>* param = device->first_attribute(); param; param = param->next_attribute()) { + if ("roll" == (std::string)param->name()) info.roll = static_cast(atof(param->value())); + if ("pitch" == (std::string)param->name()) info.pitch = static_cast(atof(param->value())); + if ("yaw" == (std::string)param->name()) info.yaw = static_cast(atof(param->value())); + if ("x" == (std::string)param->name()) info.x = static_cast(atof(param->value())); + if ("y" == (std::string)param->name()) info.y = static_cast(atof(param->value())); + if ("z" == (std::string)param->name()) info.z = static_cast(atof(param->value())); + } + } + } + } +} diff --git a/sample/lidar_lvx_file/lvx_file.h b/sample/lidar_lvx_file/lvx_file.h new file mode 100644 index 0000000..f77143e --- /dev/null +++ b/sample/lidar_lvx_file/lvx_file.h @@ -0,0 +1,113 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2019 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "livox_sdk.h" + +typedef enum { + kDeviceStateDisconnect = 0, + kDeviceStateConnect = 1, + kDeviceStateSampling = 2, +} DeviceState; + +typedef struct { + uint8_t handle; + DeviceState device_state; + DeviceInfo info; +} DeviceItem; + +#pragma pack(1) + +typedef struct { + uint8_t signature[16]; + uint8_t version[4]; + uint32_t magic_code; +}LvxFileHeader; + +typedef struct { + uint8_t lidar_broadcast_code[16]; + uint8_t hub_broadcast_code[16]; + uint8_t device_index; + uint8_t device_type; + float roll; + float pitch; + float yaw; + float x; + float y; + float z; +} LvxDeviceInfo; + +typedef struct { + uint8_t device_index; + uint8_t version; + uint8_t port_id; + uint8_t lidar_index; + uint8_t rsvd; + uint32_t error_code; + uint8_t timestamp_type; + uint8_t data_type; + uint8_t timestamp[8]; + LivoxPoint point[100]; +}LvxBasePackDetail; + +typedef struct { + uint64_t current_offset; + uint64_t next_offset; + uint64_t frame_index; + uint64_t package_count; +}FrameHeader; + +#pragma pack() + +class LvxFileHandle { +public: + LvxFileHandle(); + + bool InitLvxFile(); + void InitLvxFileHeader(); + void SaveFrameToLvxFile(std::list &point_packet_list_temp); + void CloseLvxFile(); + + void AddDeviceInfo(LvxDeviceInfo &info) { device_info_list_.push_back(info); }; + int GetDeviceInfoListSize() { return device_info_list_.size(); } + + void BasePointsHandle(LivoxEthPacket *data, LvxBasePackDetail &packet); + void CalcExtrinsicPoints(LvxBasePackDetail &packet); + +private: + std::ofstream lvx_file_; + std::vector device_info_list_; + uint32_t cur_frame_index_; + uint64_t cur_offset_; +}; + +void ParseExtrinsicXml(DeviceItem &item, LvxDeviceInfo &info); \ No newline at end of file diff --git a/sample/lidar_lvx_file/main.cpp b/sample/lidar_lvx_file/main.cpp new file mode 100644 index 0000000..2611fcf --- /dev/null +++ b/sample/lidar_lvx_file/main.cpp @@ -0,0 +1,395 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2019 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifdef WIN32 +#include +#else +#include +#endif +#include +#include +#include +#include +#include "lvx_file.h" + +DeviceItem devices[kMaxLidarCount]; +LvxFileHandle lvx_file_handler; +std::list point_packet_list; +std::vector broadcast_code_rev; +std::condition_variable condition_variable; +std::mutex mtx; +int lvx_file_save_time = 10; +bool is_finish_extrinsic_parameter = false; +bool is_read_extrinsic_from_xml = false; + +#define FRAME_RATE 20 + +/** Connect all the broadcast device in default and connect specific device when use program options or broadcast_code_list is not empty. */ +std::vector broadcast_code_list = { + //"000000000000002", + //"000000000000003", + //"000000000000004" +}; + +/** Receiving point cloud data from Livox LiDAR. */ +void GetLidarData(uint8_t handle, LivoxEthPacket *data, uint32_t data_num, void *client_data) { + if (data) { + if (handle < broadcast_code_list.size() && is_finish_extrinsic_parameter) { + std::lock_guard lock(mtx); + LvxBasePackDetail packet; + packet.device_index = handle; + lvx_file_handler.BasePointsHandle(data, packet); + lvx_file_handler.CalcExtrinsicPoints(packet); + point_packet_list.push_back(packet); + + if (point_packet_list.size() % (50 * broadcast_code_list.size()) == 0) { + condition_variable.notify_one(); + } + } + } +} + +/** Callback function of starting sampling. */ +void OnSampleCallback(uint8_t status, uint8_t handle, uint8_t response, void *data) { + printf("OnSampleCallback statue %d handle %d response %d \n", status, handle, response); + if (status == kStatusSuccess) { + if (response != 0) { + devices[handle].device_state = kDeviceStateConnect; + } + } else if (status == kStatusTimeout) { + devices[handle].device_state = kDeviceStateConnect; + } +} + +/** Callback function of stopping sampling. */ +void OnStopSampleCallback(uint8_t status, uint8_t handle, uint8_t response, void *data) { +} + +/** Callback function of get LiDARs' extrinsic parameter. */ +void OnGetLidarExtrinsicParameter(uint8_t status, uint8_t handle, LidarGetExtrinsicParameterResponse *response, void *data) { + if (status == kStatusSuccess) { + if (response != 0) { + printf("OnGetLidarExtrinsicParameter statue %d handle %d response %d \n", status, handle, response->ret_code); + std::lock_guard lock(mtx); + LvxDeviceInfo lidar_info; + strncpy((char *)lidar_info.lidar_broadcast_code, devices[handle].info.broadcast_code, kBroadcastCodeSize); + memset(lidar_info.hub_broadcast_code, 0, kBroadcastCodeSize); + lidar_info.device_index = handle; + lidar_info.device_type = devices[handle].info.type; + lidar_info.pitch = response->pitch; + lidar_info.roll = response->roll; + lidar_info.yaw = response->yaw; + lidar_info.x = static_cast(response->x / 1000.0); + lidar_info.y = static_cast(response->y / 1000.0); + lidar_info.z = static_cast(response->z / 1000.0); + lvx_file_handler.AddDeviceInfo(lidar_info); + if (lvx_file_handler.GetDeviceInfoListSize() == broadcast_code_list.size()) { + is_finish_extrinsic_parameter = true; + condition_variable.notify_one(); + } + } + } + else if (status == kStatusTimeout) { + printf("GetLidarExtrinsicParameter timeout! \n"); + } +} + +/** Get LiDARs' extrinsic parameter from file named "extrinsic.xml". */ +void LidarGetExtrinsicFromXml(uint8_t handle) { + LvxDeviceInfo lidar_info; + ParseExtrinsicXml(devices[handle], lidar_info); + lvx_file_handler.AddDeviceInfo(lidar_info); + if (lvx_file_handler.GetDeviceInfoListSize() == broadcast_code_list.size()) { + is_finish_extrinsic_parameter = true; + condition_variable.notify_one(); + } +} + +/** Query the firmware version of Livox LiDAR. */ +void OnDeviceInformation(uint8_t status, uint8_t handle, DeviceInformationResponse *ack, void *data) { + if (status != kStatusSuccess) { + printf("Device Query Informations Failed %d\n", status); + } + if (ack) { + printf("firm ver: %d.%d.%d.%d\n", + ack->firmware_version[0], + ack->firmware_version[1], + ack->firmware_version[2], + ack->firmware_version[3]); + } +} + +/** Callback function of changing of device state. */ +void OnDeviceChange(const DeviceInfo *info, DeviceEvent type) { + if (info == nullptr) { + return; + } + printf("OnDeviceChange broadcast code %s update type %d\n", info->broadcast_code, type); + uint8_t handle = info->handle; + if (handle >= kMaxLidarCount) { + return; + } + if (type == kEventConnect) { + QueryDeviceInformation(handle, OnDeviceInformation, nullptr); + if (devices[handle].device_state == kDeviceStateDisconnect) { + devices[handle].device_state = kDeviceStateConnect; + devices[handle].info = *info; + } + } else if (type == kEventDisconnect) { + devices[handle].device_state = kDeviceStateDisconnect; + } else if (type == kEventStateChange) { + devices[handle].info = *info; + } + + if (devices[handle].device_state == kDeviceStateConnect) { + printf("Device State error_code %d\n", devices[handle].info.status.status_code); + printf("Device State working state %d\n", devices[handle].info.state); + printf("Device feature %d\n", devices[handle].info.feature); + if (devices[handle].info.state == kLidarStateNormal) { + if (devices[handle].info.type != kDeviceTypeHub) { + if (!is_read_extrinsic_from_xml) { + LidarGetExtrinsicParameter(handle, OnGetLidarExtrinsicParameter, nullptr); + } + else { + LidarGetExtrinsicFromXml(handle); + } + LidarStartSampling(handle, OnSampleCallback, nullptr); + devices[handle].device_state = kDeviceStateSampling; + } + } + } +} + +/** Callback function when broadcast message received. + * You need to add listening device broadcast code and set the point cloud data callback in this function. + */ +void OnDeviceBroadcast(const BroadcastDeviceInfo *info) { + if (info == nullptr) { + return; + } + + printf("Receive Broadcast Code %s\n", info->broadcast_code); + + if (broadcast_code_list.size() > 0) { + bool found = false; + uint8_t i = 0; + for (i = 0; i < broadcast_code_list.size(); ++i) { + if (strncmp(info->broadcast_code, broadcast_code_list[i].c_str(), kBroadcastCodeSize) == 0) { + found = true; + break; + } + } + if (!found) { + return; + } + } + else { + if ((broadcast_code_rev.size() == 0) || (std::find(broadcast_code_rev.begin(), broadcast_code_rev.end(), info->broadcast_code) == broadcast_code_rev.end())) + broadcast_code_rev.push_back(info->broadcast_code); + return; + } + + bool result = false; + uint8_t handle = 0; + result = AddLidarToConnect(info->broadcast_code, &handle); + if (result == kStatusSuccess) { + /** Set the point cloud data for a specific Livox LiDAR. */ + SetDataCallback(handle, GetLidarData, nullptr); + devices[handle].handle = handle; + devices[handle].device_state = kDeviceStateDisconnect; + } +} + +/** Set the program options. +* You can input the registered device broadcast code and decide whether to save the log file. +*/ +int SetProgramOption(int argc, const char *argv[]) { + apr_status_t rv; + apr_pool_t *mp = nullptr; + static const apr_getopt_option_t opt_option[] = { + /** Long-option, short-option, has-arg flag, description */ + { "code", 'c', 1, "Register device broadcast code" }, + { "log", 'l', 0, "Save the log file" }, + { "time", 't', 1, "Time to save point cloud to the lvx file" }, + { "param", 'p', 0, "Get the extrinsic parameter from extrinsic.xml file" }, + { "help", 'h', 0, "Show help" }, + { nullptr, 0, 0, nullptr }, + }; + apr_getopt_t *opt = nullptr; + int optch = 0; + const char *optarg = nullptr; + + if (apr_initialize() != APR_SUCCESS) { + return -1; + } + + if (apr_pool_create(&mp, NULL) != APR_SUCCESS) { + return -1; + } + + rv = apr_getopt_init(&opt, mp, argc, argv); + if (rv != APR_SUCCESS) { + printf("Program options initialization failed.\n"); + return -1; + } + + /** Parse the all options based on opt_option[] */ + bool is_help = false; + while ((rv = apr_getopt_long(opt, opt_option, &optch, &optarg)) == APR_SUCCESS) { + switch (optch) { + case 'c': { + printf("Register broadcast code: %s\n", optarg); + char *sn_list = (char *)malloc(sizeof(char)*(strlen(optarg) + 1)); + strncpy(sn_list, optarg, sizeof(char)*(strlen(optarg) + 1)); + char *sn_list_head = sn_list; + sn_list = strtok(sn_list, "&"); + int i = 0; + broadcast_code_list.clear(); + while (sn_list) { + broadcast_code_list.push_back(sn_list); + sn_list = strtok(nullptr, "&"); + i++; + } + free(sn_list_head); + sn_list_head = nullptr; + break; + } + case 'l': { + printf("Save the log file.\n"); + SaveLoggerFile(); + break; + } + case 't': { + printf("Time to save point cloud to the lvx file:%s.\n", optarg); + lvx_file_save_time = atoi(optarg); + break; + } + case 'p': { + printf("Get the extrinsic parameter from extrinsic.xml file.\n"); + is_read_extrinsic_from_xml = true; + break; + } + case 'h': { + printf( + " [-c] Register device broadcast code\n" + " [-l] Save the log file\n" + " [-t] Time to save point cloud to the lvx file\n" + " [-p] Get the extrinsic parameter from extrinsic.xml file\n" + " [-h] Show help\n" + ); + is_help = true; + break; + } + } + } + if (rv != APR_EOF) { + printf("Invalid options.\n"); + } + + apr_pool_destroy(mp); + mp = nullptr; + if (is_help) + return 1; + return 0; +} + +int main(int argc, const char *argv[]) { +/** Set the program options. */ + if (SetProgramOption(argc, argv)) + return 0; + + printf("Livox SDK initializing.\n"); +/** Initialize Livox-SDK. */ + if (!Init()) { + return -1; + } + printf("Livox SDK has been initialized.\n"); + + LivoxSdkVersion _sdkversion; + GetLivoxSdkVersion(&_sdkversion); + printf("Livox SDK version %d.%d.%d .\n", _sdkversion.major, _sdkversion.minor, _sdkversion.patch); + + memset(devices, 0, sizeof(devices)); + +/** Set the callback function receiving broadcast message from Livox LiDAR. */ + SetBroadcastCallback(OnDeviceBroadcast); + +/** Set the callback function called when device state change, + * which means connection/disconnection and changing of LiDAR state. + */ + SetDeviceStateUpdateCallback(OnDeviceChange); + +/** Start the device discovering routine. */ + if (!Start()) { + Uninit(); + return -1; + } + printf("Start discovering device.\n"); + +#ifdef WIN32 + Sleep(2000); +#else + sleep(2); +#endif + + if (broadcast_code_rev.size() != 0) + broadcast_code_list = broadcast_code_rev; + + { + std::unique_lock lock(mtx); + condition_variable.wait(lock); + } + + printf("Start initialize lvx file.\n"); + if (!lvx_file_handler.InitLvxFile()) { + Uninit(); + return -1; + } + lvx_file_handler.InitLvxFileHeader(); + + int i = 0; + for (i = 0; i < lvx_file_save_time * FRAME_RATE; ++i) { + std::list point_packet_list_temp; + { + std::unique_lock lock(mtx); + condition_variable.wait(lock); + point_packet_list_temp.swap(point_packet_list); + } + + printf("Finish save %d frame to lvx file.\n", i); + lvx_file_handler.SaveFrameToLvxFile(point_packet_list_temp); + } + + lvx_file_handler.CloseLvxFile(); + + for (i = 0; i < kMaxLidarCount; ++i) { + if (devices[i].device_state == kDeviceStateSampling) { +/** Stop the sampling of Livox LiDAR. */ + LidarStopSampling(devices[i].handle, OnStopSampleCallback, nullptr); + } + } + +/** Uninitialize Livox-SDK. */ + Uninit(); +} diff --git a/sample/lidar_lvx_file/third_party/rapidxml/rapidxml.hpp b/sample/lidar_lvx_file/third_party/rapidxml/rapidxml.hpp new file mode 100644 index 0000000..ae91e08 --- /dev/null +++ b/sample/lidar_lvx_file/third_party/rapidxml/rapidxml.hpp @@ -0,0 +1,2596 @@ +#ifndef RAPIDXML_HPP_INCLUDED +#define RAPIDXML_HPP_INCLUDED + +// Copyright (C) 2006, 2009 Marcin Kalicinski +// Version 1.13 +// Revision $DateTime: 2009/05/13 01:46:17 $ +//! \file rapidxml.hpp This file contains rapidxml parser and DOM implementation + +// If standard library is disabled, user must provide implementations of required functions and typedefs +#if !defined(RAPIDXML_NO_STDLIB) + #include // For std::size_t + #include // For assert + #include // For placement new +#endif + +// On MSVC, disable "conditional expression is constant" warning (level 4). +// This warning is almost impossible to avoid with certain types of templated code +#ifdef _MSC_VER + #pragma warning(push) + #pragma warning(disable:4127) // Conditional expression is constant +#endif + +/////////////////////////////////////////////////////////////////////////// +// RAPIDXML_PARSE_ERROR + +#if defined(RAPIDXML_NO_EXCEPTIONS) + +#define RAPIDXML_PARSE_ERROR(what, where) { parse_error_handler(what, where); assert(0); } + +namespace rapidxml +{ + //! When exceptions are disabled by defining RAPIDXML_NO_EXCEPTIONS, + //! this function is called to notify user about the error. + //! It must be defined by the user. + //!

+ //! This function cannot return. If it does, the results are undefined. + //!

+ //! A very simple definition might look like that: + //!
+    //! void %rapidxml::%parse_error_handler(const char *what, void *where)
+    //! {
+    //!     std::cout << "Parse error: " << what << "\n";
+    //!     std::abort();
+    //! }
+    //! 
+ //! \param what Human readable description of the error. + //! \param where Pointer to character data where error was detected. + void parse_error_handler(const char *what, void *where); +} + +#else + +#include // For std::exception + +#define RAPIDXML_PARSE_ERROR(what, where) throw parse_error(what, where) + +namespace rapidxml +{ + + //! Parse error exception. + //! This exception is thrown by the parser when an error occurs. + //! Use what() function to get human-readable error message. + //! Use where() function to get a pointer to position within source text where error was detected. + //!

+ //! If throwing exceptions by the parser is undesirable, + //! it can be disabled by defining RAPIDXML_NO_EXCEPTIONS macro before rapidxml.hpp is included. + //! This will cause the parser to call rapidxml::parse_error_handler() function instead of throwing an exception. + //! This function must be defined by the user. + //!

+ //! This class derives from std::exception class. + class parse_error: public std::exception + { + + public: + + //! Constructs parse error + parse_error(const char *what, void *where) + : m_what(what) + , m_where(where) + { + } + + //! Gets human readable description of error. + //! \return Pointer to null terminated description of the error. + virtual const char *what() const throw() + { + return m_what; + } + + //! Gets pointer to character data where error happened. + //! Ch should be the same as char type of xml_document that produced the error. + //! \return Pointer to location within the parsed string where error occured. + template + Ch *where() const + { + return reinterpret_cast(m_where); + } + + private: + + const char *m_what; + void *m_where; + + }; +} + +#endif + +/////////////////////////////////////////////////////////////////////////// +// Pool sizes + +#ifndef RAPIDXML_STATIC_POOL_SIZE + // Size of static memory block of memory_pool. + // Define RAPIDXML_STATIC_POOL_SIZE before including rapidxml.hpp if you want to override the default value. + // No dynamic memory allocations are performed by memory_pool until static memory is exhausted. + #define RAPIDXML_STATIC_POOL_SIZE (64 * 1024) +#endif + +#ifndef RAPIDXML_DYNAMIC_POOL_SIZE + // Size of dynamic memory block of memory_pool. + // Define RAPIDXML_DYNAMIC_POOL_SIZE before including rapidxml.hpp if you want to override the default value. + // After the static block is exhausted, dynamic blocks with approximately this size are allocated by memory_pool. + #define RAPIDXML_DYNAMIC_POOL_SIZE (64 * 1024) +#endif + +#ifndef RAPIDXML_ALIGNMENT + // Memory allocation alignment. + // Define RAPIDXML_ALIGNMENT before including rapidxml.hpp if you want to override the default value, which is the size of pointer. + // All memory allocations for nodes, attributes and strings will be aligned to this value. + // This must be a power of 2 and at least 1, otherwise memory_pool will not work. + #define RAPIDXML_ALIGNMENT sizeof(void *) +#endif + +namespace rapidxml +{ + // Forward declarations + template class xml_node; + template class xml_attribute; + template class xml_document; + + //! Enumeration listing all node types produced by the parser. + //! Use xml_node::type() function to query node type. + enum node_type + { + node_document, //!< A document node. Name and value are empty. + node_element, //!< An element node. Name contains element name. Value contains text of first data node. + node_data, //!< A data node. Name is empty. Value contains data text. + node_cdata, //!< A CDATA node. Name is empty. Value contains data text. + node_comment, //!< A comment node. Name is empty. Value contains comment text. + node_declaration, //!< A declaration node. Name and value are empty. Declaration parameters (version, encoding and standalone) are in node attributes. + node_doctype, //!< A DOCTYPE node. Name is empty. Value contains DOCTYPE text. + node_pi //!< A PI node. Name contains target. Value contains instructions. + }; + + /////////////////////////////////////////////////////////////////////// + // Parsing flags + + //! Parse flag instructing the parser to not create data nodes. + //! Text of first data node will still be placed in value of parent element, unless rapidxml::parse_no_element_values flag is also specified. + //! Can be combined with other flags by use of | operator. + //!

+ //! See xml_document::parse() function. + const int parse_no_data_nodes = 0x1; + + //! Parse flag instructing the parser to not use text of first data node as a value of parent element. + //! Can be combined with other flags by use of | operator. + //! Note that child data nodes of element node take precendence over its value when printing. + //! That is, if element has one or more child data nodes and a value, the value will be ignored. + //! Use rapidxml::parse_no_data_nodes flag to prevent creation of data nodes if you want to manipulate data using values of elements. + //!

+ //! See xml_document::parse() function. + const int parse_no_element_values = 0x2; + + //! Parse flag instructing the parser to not place zero terminators after strings in the source text. + //! By default zero terminators are placed, modifying source text. + //! Can be combined with other flags by use of | operator. + //!

+ //! See xml_document::parse() function. + const int parse_no_string_terminators = 0x4; + + //! Parse flag instructing the parser to not translate entities in the source text. + //! By default entities are translated, modifying source text. + //! Can be combined with other flags by use of | operator. + //!

+ //! See xml_document::parse() function. + const int parse_no_entity_translation = 0x8; + + //! Parse flag instructing the parser to disable UTF-8 handling and assume plain 8 bit characters. + //! By default, UTF-8 handling is enabled. + //! Can be combined with other flags by use of | operator. + //!

+ //! See xml_document::parse() function. + const int parse_no_utf8 = 0x10; + + //! Parse flag instructing the parser to create XML declaration node. + //! By default, declaration node is not created. + //! Can be combined with other flags by use of | operator. + //!

+ //! See xml_document::parse() function. + const int parse_declaration_node = 0x20; + + //! Parse flag instructing the parser to create comments nodes. + //! By default, comment nodes are not created. + //! Can be combined with other flags by use of | operator. + //!

+ //! See xml_document::parse() function. + const int parse_comment_nodes = 0x40; + + //! Parse flag instructing the parser to create DOCTYPE node. + //! By default, doctype node is not created. + //! Although W3C specification allows at most one DOCTYPE node, RapidXml will silently accept documents with more than one. + //! Can be combined with other flags by use of | operator. + //!

+ //! See xml_document::parse() function. + const int parse_doctype_node = 0x80; + + //! Parse flag instructing the parser to create PI nodes. + //! By default, PI nodes are not created. + //! Can be combined with other flags by use of | operator. + //!

+ //! See xml_document::parse() function. + const int parse_pi_nodes = 0x100; + + //! Parse flag instructing the parser to validate closing tag names. + //! If not set, name inside closing tag is irrelevant to the parser. + //! By default, closing tags are not validated. + //! Can be combined with other flags by use of | operator. + //!

+ //! See xml_document::parse() function. + const int parse_validate_closing_tags = 0x200; + + //! Parse flag instructing the parser to trim all leading and trailing whitespace of data nodes. + //! By default, whitespace is not trimmed. + //! This flag does not cause the parser to modify source text. + //! Can be combined with other flags by use of | operator. + //!

+ //! See xml_document::parse() function. + const int parse_trim_whitespace = 0x400; + + //! Parse flag instructing the parser to condense all whitespace runs of data nodes to a single space character. + //! Trimming of leading and trailing whitespace of data is controlled by rapidxml::parse_trim_whitespace flag. + //! By default, whitespace is not normalized. + //! If this flag is specified, source text will be modified. + //! Can be combined with other flags by use of | operator. + //!

+ //! See xml_document::parse() function. + const int parse_normalize_whitespace = 0x800; + + // Compound flags + + //! Parse flags which represent default behaviour of the parser. + //! This is always equal to 0, so that all other flags can be simply ored together. + //! Normally there is no need to inconveniently disable flags by anding with their negated (~) values. + //! This also means that meaning of each flag is a negation of the default setting. + //! For example, if flag name is rapidxml::parse_no_utf8, it means that utf-8 is enabled by default, + //! and using the flag will disable it. + //!

+ //! See xml_document::parse() function. + const int parse_default = 0; + + //! A combination of parse flags that forbids any modifications of the source text. + //! This also results in faster parsing. However, note that the following will occur: + //!
    + //!
  • names and values of nodes will not be zero terminated, you have to use xml_base::name_size() and xml_base::value_size() functions to determine where name and value ends
  • + //!
  • entities will not be translated
  • + //!
  • whitespace will not be normalized
  • + //!
+ //! See xml_document::parse() function. + const int parse_non_destructive = parse_no_string_terminators | parse_no_entity_translation; + + //! A combination of parse flags resulting in fastest possible parsing, without sacrificing important data. + //!

+ //! See xml_document::parse() function. + const int parse_fastest = parse_non_destructive | parse_no_data_nodes; + + //! A combination of parse flags resulting in largest amount of data being extracted. + //! This usually results in slowest parsing. + //!

+ //! See xml_document::parse() function. + const int parse_full = parse_declaration_node | parse_comment_nodes | parse_doctype_node | parse_pi_nodes | parse_validate_closing_tags; + + /////////////////////////////////////////////////////////////////////// + // Internals + + //! \cond internal + namespace internal + { + + // Struct that contains lookup tables for the parser + // It must be a template to allow correct linking (because it has static data members, which are defined in a header file). + template + struct lookup_tables + { + static const unsigned char lookup_whitespace[256]; // Whitespace table + static const unsigned char lookup_node_name[256]; // Node name table + static const unsigned char lookup_text[256]; // Text table + static const unsigned char lookup_text_pure_no_ws[256]; // Text table + static const unsigned char lookup_text_pure_with_ws[256]; // Text table + static const unsigned char lookup_attribute_name[256]; // Attribute name table + static const unsigned char lookup_attribute_data_1[256]; // Attribute data table with single quote + static const unsigned char lookup_attribute_data_1_pure[256]; // Attribute data table with single quote + static const unsigned char lookup_attribute_data_2[256]; // Attribute data table with double quotes + static const unsigned char lookup_attribute_data_2_pure[256]; // Attribute data table with double quotes + static const unsigned char lookup_digits[256]; // Digits + static const unsigned char lookup_upcase[256]; // To uppercase conversion table for ASCII characters + }; + + // Find length of the string + template + inline std::size_t measure(const Ch *p) + { + const Ch *tmp = p; + while (*tmp) + ++tmp; + return tmp - p; + } + + // Compare strings for equality + template + inline bool compare(const Ch *p1, std::size_t size1, const Ch *p2, std::size_t size2, bool case_sensitive) + { + if (size1 != size2) + return false; + if (case_sensitive) + { + for (const Ch *end = p1 + size1; p1 < end; ++p1, ++p2) + if (*p1 != *p2) + return false; + } + else + { + for (const Ch *end = p1 + size1; p1 < end; ++p1, ++p2) + if (lookup_tables<0>::lookup_upcase[static_cast(*p1)] != lookup_tables<0>::lookup_upcase[static_cast(*p2)]) + return false; + } + return true; + } + } + //! \endcond + + /////////////////////////////////////////////////////////////////////// + // Memory pool + + //! This class is used by the parser to create new nodes and attributes, without overheads of dynamic memory allocation. + //! In most cases, you will not need to use this class directly. + //! However, if you need to create nodes manually or modify names/values of nodes, + //! you are encouraged to use memory_pool of relevant xml_document to allocate the memory. + //! Not only is this faster than allocating them by using new operator, + //! but also their lifetime will be tied to the lifetime of document, + //! possibly simplyfing memory management. + //!

+ //! Call allocate_node() or allocate_attribute() functions to obtain new nodes or attributes from the pool. + //! You can also call allocate_string() function to allocate strings. + //! Such strings can then be used as names or values of nodes without worrying about their lifetime. + //! Note that there is no free() function -- all allocations are freed at once when clear() function is called, + //! or when the pool is destroyed. + //!

+ //! It is also possible to create a standalone memory_pool, and use it + //! to allocate nodes, whose lifetime will not be tied to any document. + //!

+ //! Pool maintains RAPIDXML_STATIC_POOL_SIZE bytes of statically allocated memory. + //! Until static memory is exhausted, no dynamic memory allocations are done. + //! When static memory is exhausted, pool allocates additional blocks of memory of size RAPIDXML_DYNAMIC_POOL_SIZE each, + //! by using global new[] and delete[] operators. + //! This behaviour can be changed by setting custom allocation routines. + //! Use set_allocator() function to set them. + //!

+ //! Allocations for nodes, attributes and strings are aligned at RAPIDXML_ALIGNMENT bytes. + //! This value defaults to the size of pointer on target architecture. + //!

+ //! To obtain absolutely top performance from the parser, + //! it is important that all nodes are allocated from a single, contiguous block of memory. + //! Otherwise, cache misses when jumping between two (or more) disjoint blocks of memory can slow down parsing quite considerably. + //! If required, you can tweak RAPIDXML_STATIC_POOL_SIZE, RAPIDXML_DYNAMIC_POOL_SIZE and RAPIDXML_ALIGNMENT + //! to obtain best wasted memory to performance compromise. + //! To do it, define their values before rapidxml.hpp file is included. + //! \param Ch Character type of created nodes. + template + class memory_pool + { + + public: + + //! \cond internal + typedef void *(alloc_func)(std::size_t); // Type of user-defined function used to allocate memory + typedef void (free_func)(void *); // Type of user-defined function used to free memory + //! \endcond + + //! Constructs empty pool with default allocator functions. + memory_pool() + : m_alloc_func(0) + , m_free_func(0) + { + init(); + } + + //! Destroys pool and frees all the memory. + //! This causes memory occupied by nodes allocated by the pool to be freed. + //! Nodes allocated from the pool are no longer valid. + ~memory_pool() + { + clear(); + } + + //! Allocates a new node from the pool, and optionally assigns name and value to it. + //! If the allocation request cannot be accomodated, this function will throw std::bad_alloc. + //! If exceptions are disabled by defining RAPIDXML_NO_EXCEPTIONS, this function + //! will call rapidxml::parse_error_handler() function. + //! \param type Type of node to create. + //! \param name Name to assign to the node, or 0 to assign no name. + //! \param value Value to assign to the node, or 0 to assign no value. + //! \param name_size Size of name to assign, or 0 to automatically calculate size from name string. + //! \param value_size Size of value to assign, or 0 to automatically calculate size from value string. + //! \return Pointer to allocated node. This pointer will never be NULL. + xml_node *allocate_node(node_type type, + const Ch *name = 0, const Ch *value = 0, + std::size_t name_size = 0, std::size_t value_size = 0) + { + void *memory = allocate_aligned(sizeof(xml_node)); + xml_node *node = new(memory) xml_node(type); + if (name) + { + if (name_size > 0) + node->name(name, name_size); + else + node->name(name); + } + if (value) + { + if (value_size > 0) + node->value(value, value_size); + else + node->value(value); + } + return node; + } + + //! Allocates a new attribute from the pool, and optionally assigns name and value to it. + //! If the allocation request cannot be accomodated, this function will throw std::bad_alloc. + //! If exceptions are disabled by defining RAPIDXML_NO_EXCEPTIONS, this function + //! will call rapidxml::parse_error_handler() function. + //! \param name Name to assign to the attribute, or 0 to assign no name. + //! \param value Value to assign to the attribute, or 0 to assign no value. + //! \param name_size Size of name to assign, or 0 to automatically calculate size from name string. + //! \param value_size Size of value to assign, or 0 to automatically calculate size from value string. + //! \return Pointer to allocated attribute. This pointer will never be NULL. + xml_attribute *allocate_attribute(const Ch *name = 0, const Ch *value = 0, + std::size_t name_size = 0, std::size_t value_size = 0) + { + void *memory = allocate_aligned(sizeof(xml_attribute)); + xml_attribute *attribute = new(memory) xml_attribute; + if (name) + { + if (name_size > 0) + attribute->name(name, name_size); + else + attribute->name(name); + } + if (value) + { + if (value_size > 0) + attribute->value(value, value_size); + else + attribute->value(value); + } + return attribute; + } + + //! Allocates a char array of given size from the pool, and optionally copies a given string to it. + //! If the allocation request cannot be accomodated, this function will throw std::bad_alloc. + //! If exceptions are disabled by defining RAPIDXML_NO_EXCEPTIONS, this function + //! will call rapidxml::parse_error_handler() function. + //! \param source String to initialize the allocated memory with, or 0 to not initialize it. + //! \param size Number of characters to allocate, or zero to calculate it automatically from source string length; if size is 0, source string must be specified and null terminated. + //! \return Pointer to allocated char array. This pointer will never be NULL. + Ch *allocate_string(const Ch *source = 0, std::size_t size = 0) + { + assert(source || size); // Either source or size (or both) must be specified + if (size == 0) + size = internal::measure(source) + 1; + Ch *result = static_cast(allocate_aligned(size * sizeof(Ch))); + if (source) + for (std::size_t i = 0; i < size; ++i) + result[i] = source[i]; + return result; + } + + //! Clones an xml_node and its hierarchy of child nodes and attributes. + //! Nodes and attributes are allocated from this memory pool. + //! Names and values are not cloned, they are shared between the clone and the source. + //! Result node can be optionally specified as a second parameter, + //! in which case its contents will be replaced with cloned source node. + //! This is useful when you want to clone entire document. + //! \param source Node to clone. + //! \param result Node to put results in, or 0 to automatically allocate result node + //! \return Pointer to cloned node. This pointer will never be NULL. + xml_node *clone_node(const xml_node *source, xml_node *result = 0) + { + // Prepare result node + if (result) + { + result->remove_all_attributes(); + result->remove_all_nodes(); + result->type(source->type()); + } + else + result = allocate_node(source->type()); + + // Clone name and value + result->name(source->name(), source->name_size()); + result->value(source->value(), source->value_size()); + + // Clone child nodes and attributes + for (xml_node *child = source->first_node(); child; child = child->next_sibling()) + result->append_node(clone_node(child)); + for (xml_attribute *attr = source->first_attribute(); attr; attr = attr->next_attribute()) + result->append_attribute(allocate_attribute(attr->name(), attr->value(), attr->name_size(), attr->value_size())); + + return result; + } + + //! Clears the pool. + //! This causes memory occupied by nodes allocated by the pool to be freed. + //! Any nodes or strings allocated from the pool will no longer be valid. + void clear() + { + while (m_begin != m_static_memory) + { + char *previous_begin = reinterpret_cast
(align(m_begin))->previous_begin; + if (m_free_func) + m_free_func(m_begin); + else + delete[] m_begin; + m_begin = previous_begin; + } + init(); + } + + //! Sets or resets the user-defined memory allocation functions for the pool. + //! This can only be called when no memory is allocated from the pool yet, otherwise results are undefined. + //! Allocation function must not return invalid pointer on failure. It should either throw, + //! stop the program, or use longjmp() function to pass control to other place of program. + //! If it returns invalid pointer, results are undefined. + //!

+ //! User defined allocation functions must have the following forms: + //!
+ //!
void *allocate(std::size_t size); + //!
void free(void *pointer); + //!

+ //! \param af Allocation function, or 0 to restore default function + //! \param ff Free function, or 0 to restore default function + void set_allocator(alloc_func *af, free_func *ff) + { + assert(m_begin == m_static_memory && m_ptr == align(m_begin)); // Verify that no memory is allocated yet + m_alloc_func = af; + m_free_func = ff; + } + + private: + + struct header + { + char *previous_begin; + }; + + void init() + { + m_begin = m_static_memory; + m_ptr = align(m_begin); + m_end = m_static_memory + sizeof(m_static_memory); + } + + char *align(char *ptr) + { + std::size_t alignment = ((RAPIDXML_ALIGNMENT - (std::size_t(ptr) & (RAPIDXML_ALIGNMENT - 1))) & (RAPIDXML_ALIGNMENT - 1)); + return ptr + alignment; + } + + char *allocate_raw(std::size_t size) + { + // Allocate + void *memory; + if (m_alloc_func) // Allocate memory using either user-specified allocation function or global operator new[] + { + memory = m_alloc_func(size); + assert(memory); // Allocator is not allowed to return 0, on failure it must either throw, stop the program or use longjmp + } + else + { + memory = new char[size]; +#ifdef RAPIDXML_NO_EXCEPTIONS + if (!memory) // If exceptions are disabled, verify memory allocation, because new will not be able to throw bad_alloc + RAPIDXML_PARSE_ERROR("out of memory", 0); +#endif + } + return static_cast(memory); + } + + void *allocate_aligned(std::size_t size) + { + // Calculate aligned pointer + char *result = align(m_ptr); + + // If not enough memory left in current pool, allocate a new pool + if (result + size > m_end) + { + // Calculate required pool size (may be bigger than RAPIDXML_DYNAMIC_POOL_SIZE) + std::size_t pool_size = RAPIDXML_DYNAMIC_POOL_SIZE; + if (pool_size < size) + pool_size = size; + + // Allocate + std::size_t alloc_size = sizeof(header) + (2 * RAPIDXML_ALIGNMENT - 2) + pool_size; // 2 alignments required in worst case: one for header, one for actual allocation + char *raw_memory = allocate_raw(alloc_size); + + // Setup new pool in allocated memory + char *pool = align(raw_memory); + header *new_header = reinterpret_cast
(pool); + new_header->previous_begin = m_begin; + m_begin = raw_memory; + m_ptr = pool + sizeof(header); + m_end = raw_memory + alloc_size; + + // Calculate aligned pointer again using new pool + result = align(m_ptr); + } + + // Update pool and return aligned pointer + m_ptr = result + size; + return result; + } + + char *m_begin; // Start of raw memory making up current pool + char *m_ptr; // First free byte in current pool + char *m_end; // One past last available byte in current pool + char m_static_memory[RAPIDXML_STATIC_POOL_SIZE]; // Static raw memory + alloc_func *m_alloc_func; // Allocator function, or 0 if default is to be used + free_func *m_free_func; // Free function, or 0 if default is to be used + }; + + /////////////////////////////////////////////////////////////////////////// + // XML base + + //! Base class for xml_node and xml_attribute implementing common functions: + //! name(), name_size(), value(), value_size() and parent(). + //! \param Ch Character type to use + template + class xml_base + { + + public: + + /////////////////////////////////////////////////////////////////////////// + // Construction & destruction + + // Construct a base with empty name, value and parent + xml_base() + : m_name(0) + , m_value(0) + , m_parent(0) + { + } + + /////////////////////////////////////////////////////////////////////////// + // Node data access + + //! Gets name of the node. + //! Interpretation of name depends on type of node. + //! Note that name will not be zero-terminated if rapidxml::parse_no_string_terminators option was selected during parse. + //!

+ //! Use name_size() function to determine length of the name. + //! \return Name of node, or empty string if node has no name. + Ch *name() const + { + return m_name ? m_name : nullstr(); + } + + //! Gets size of node name, not including terminator character. + //! This function works correctly irrespective of whether name is or is not zero terminated. + //! \return Size of node name, in characters. + std::size_t name_size() const + { + return m_name ? m_name_size : 0; + } + + //! Gets value of node. + //! Interpretation of value depends on type of node. + //! Note that value will not be zero-terminated if rapidxml::parse_no_string_terminators option was selected during parse. + //!

+ //! Use value_size() function to determine length of the value. + //! \return Value of node, or empty string if node has no value. + Ch *value() const + { + return m_value ? m_value : nullstr(); + } + + //! Gets size of node value, not including terminator character. + //! This function works correctly irrespective of whether value is or is not zero terminated. + //! \return Size of node value, in characters. + std::size_t value_size() const + { + return m_value ? m_value_size : 0; + } + + /////////////////////////////////////////////////////////////////////////// + // Node modification + + //! Sets name of node to a non zero-terminated string. + //! See \ref ownership_of_strings. + //!

+ //! Note that node does not own its name or value, it only stores a pointer to it. + //! It will not delete or otherwise free the pointer on destruction. + //! It is reponsibility of the user to properly manage lifetime of the string. + //! The easiest way to achieve it is to use memory_pool of the document to allocate the string - + //! on destruction of the document the string will be automatically freed. + //!

+ //! Size of name must be specified separately, because name does not have to be zero terminated. + //! Use name(const Ch *) function to have the length automatically calculated (string must be zero terminated). + //! \param name Name of node to set. Does not have to be zero terminated. + //! \param size Size of name, in characters. This does not include zero terminator, if one is present. + void name(const Ch *name, std::size_t size) + { + m_name = const_cast(name); + m_name_size = size; + } + + //! Sets name of node to a zero-terminated string. + //! See also \ref ownership_of_strings and xml_node::name(const Ch *, std::size_t). + //! \param name Name of node to set. Must be zero terminated. + void name(const Ch *name) + { + this->name(name, internal::measure(name)); + } + + //! Sets value of node to a non zero-terminated string. + //! See \ref ownership_of_strings. + //!

+ //! Note that node does not own its name or value, it only stores a pointer to it. + //! It will not delete or otherwise free the pointer on destruction. + //! It is reponsibility of the user to properly manage lifetime of the string. + //! The easiest way to achieve it is to use memory_pool of the document to allocate the string - + //! on destruction of the document the string will be automatically freed. + //!

+ //! Size of value must be specified separately, because it does not have to be zero terminated. + //! Use value(const Ch *) function to have the length automatically calculated (string must be zero terminated). + //!

+ //! If an element has a child node of type node_data, it will take precedence over element value when printing. + //! If you want to manipulate data of elements using values, use parser flag rapidxml::parse_no_data_nodes to prevent creation of data nodes by the parser. + //! \param value value of node to set. Does not have to be zero terminated. + //! \param size Size of value, in characters. This does not include zero terminator, if one is present. + void value(const Ch *value, std::size_t size) + { + m_value = const_cast(value); + m_value_size = size; + } + + //! Sets value of node to a zero-terminated string. + //! See also \ref ownership_of_strings and xml_node::value(const Ch *, std::size_t). + //! \param value Vame of node to set. Must be zero terminated. + void value(const Ch *value) + { + this->value(value, internal::measure(value)); + } + + /////////////////////////////////////////////////////////////////////////// + // Related nodes access + + //! Gets node parent. + //! \return Pointer to parent node, or 0 if there is no parent. + xml_node *parent() const + { + return m_parent; + } + + protected: + + // Return empty string + static Ch *nullstr() + { + static Ch zero = Ch('\0'); + return &zero; + } + + Ch *m_name; // Name of node, or 0 if no name + Ch *m_value; // Value of node, or 0 if no value + std::size_t m_name_size; // Length of node name, or undefined of no name + std::size_t m_value_size; // Length of node value, or undefined if no value + xml_node *m_parent; // Pointer to parent node, or 0 if none + + }; + + //! Class representing attribute node of XML document. + //! Each attribute has name and value strings, which are available through name() and value() functions (inherited from xml_base). + //! Note that after parse, both name and value of attribute will point to interior of source text used for parsing. + //! Thus, this text must persist in memory for the lifetime of attribute. + //! \param Ch Character type to use. + template + class xml_attribute: public xml_base + { + + friend class xml_node; + + public: + + /////////////////////////////////////////////////////////////////////////// + // Construction & destruction + + //! Constructs an empty attribute with the specified type. + //! Consider using memory_pool of appropriate xml_document if allocating attributes manually. + xml_attribute() + { + } + + /////////////////////////////////////////////////////////////////////////// + // Related nodes access + + //! Gets document of which attribute is a child. + //! \return Pointer to document that contains this attribute, or 0 if there is no parent document. + xml_document *document() const + { + if (xml_node *node = this->parent()) + { + while (node->parent()) + node = node->parent(); + return node->type() == node_document ? static_cast *>(node) : 0; + } + else + return 0; + } + + //! Gets previous attribute, optionally matching attribute name. + //! \param name Name of attribute to find, or 0 to return previous attribute regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero + //! \param name_size Size of name, in characters, or 0 to have size calculated automatically from string + //! \param case_sensitive Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters + //! \return Pointer to found attribute, or 0 if not found. + xml_attribute *previous_attribute(const Ch *name = 0, std::size_t name_size = 0, bool case_sensitive = true) const + { + if (name) + { + if (name_size == 0) + name_size = internal::measure(name); + for (xml_attribute *attribute = m_prev_attribute; attribute; attribute = attribute->m_prev_attribute) + if (internal::compare(attribute->name(), attribute->name_size(), name, name_size, case_sensitive)) + return attribute; + return 0; + } + else + return this->m_parent ? m_prev_attribute : 0; + } + + //! Gets next attribute, optionally matching attribute name. + //! \param name Name of attribute to find, or 0 to return next attribute regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero + //! \param name_size Size of name, in characters, or 0 to have size calculated automatically from string + //! \param case_sensitive Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters + //! \return Pointer to found attribute, or 0 if not found. + xml_attribute *next_attribute(const Ch *name = 0, std::size_t name_size = 0, bool case_sensitive = true) const + { + if (name) + { + if (name_size == 0) + name_size = internal::measure(name); + for (xml_attribute *attribute = m_next_attribute; attribute; attribute = attribute->m_next_attribute) + if (internal::compare(attribute->name(), attribute->name_size(), name, name_size, case_sensitive)) + return attribute; + return 0; + } + else + return this->m_parent ? m_next_attribute : 0; + } + + private: + + xml_attribute *m_prev_attribute; // Pointer to previous sibling of attribute, or 0 if none; only valid if parent is non-zero + xml_attribute *m_next_attribute; // Pointer to next sibling of attribute, or 0 if none; only valid if parent is non-zero + + }; + + /////////////////////////////////////////////////////////////////////////// + // XML node + + //! Class representing a node of XML document. + //! Each node may have associated name and value strings, which are available through name() and value() functions. + //! Interpretation of name and value depends on type of the node. + //! Type of node can be determined by using type() function. + //!

+ //! Note that after parse, both name and value of node, if any, will point interior of source text used for parsing. + //! Thus, this text must persist in the memory for the lifetime of node. + //! \param Ch Character type to use. + template + class xml_node: public xml_base + { + + public: + + /////////////////////////////////////////////////////////////////////////// + // Construction & destruction + + //! Constructs an empty node with the specified type. + //! Consider using memory_pool of appropriate document to allocate nodes manually. + //! \param type Type of node to construct. + xml_node(node_type type) + : m_type(type) + , m_first_node(0) + , m_first_attribute(0) + { + } + + /////////////////////////////////////////////////////////////////////////// + // Node data access + + //! Gets type of node. + //! \return Type of node. + node_type type() const + { + return m_type; + } + + /////////////////////////////////////////////////////////////////////////// + // Related nodes access + + //! Gets document of which node is a child. + //! \return Pointer to document that contains this node, or 0 if there is no parent document. + xml_document *document() const + { + xml_node *node = const_cast *>(this); + while (node->parent()) + node = node->parent(); + return node->type() == node_document ? static_cast *>(node) : 0; + } + + //! Gets first child node, optionally matching node name. + //! \param name Name of child to find, or 0 to return first child regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero + //! \param name_size Size of name, in characters, or 0 to have size calculated automatically from string + //! \param case_sensitive Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters + //! \return Pointer to found child, or 0 if not found. + xml_node *first_node(const Ch *name = 0, std::size_t name_size = 0, bool case_sensitive = true) const + { + if (name) + { + if (name_size == 0) + name_size = internal::measure(name); + for (xml_node *child = m_first_node; child; child = child->next_sibling()) + if (internal::compare(child->name(), child->name_size(), name, name_size, case_sensitive)) + return child; + return 0; + } + else + return m_first_node; + } + + //! Gets last child node, optionally matching node name. + //! Behaviour is undefined if node has no children. + //! Use first_node() to test if node has children. + //! \param name Name of child to find, or 0 to return last child regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero + //! \param name_size Size of name, in characters, or 0 to have size calculated automatically from string + //! \param case_sensitive Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters + //! \return Pointer to found child, or 0 if not found. + xml_node *last_node(const Ch *name = 0, std::size_t name_size = 0, bool case_sensitive = true) const + { + assert(m_first_node); // Cannot query for last child if node has no children + if (name) + { + if (name_size == 0) + name_size = internal::measure(name); + for (xml_node *child = m_last_node; child; child = child->previous_sibling()) + if (internal::compare(child->name(), child->name_size(), name, name_size, case_sensitive)) + return child; + return 0; + } + else + return m_last_node; + } + + //! Gets previous sibling node, optionally matching node name. + //! Behaviour is undefined if node has no parent. + //! Use parent() to test if node has a parent. + //! \param name Name of sibling to find, or 0 to return previous sibling regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero + //! \param name_size Size of name, in characters, or 0 to have size calculated automatically from string + //! \param case_sensitive Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters + //! \return Pointer to found sibling, or 0 if not found. + xml_node *previous_sibling(const Ch *name = 0, std::size_t name_size = 0, bool case_sensitive = true) const + { + assert(this->m_parent); // Cannot query for siblings if node has no parent + if (name) + { + if (name_size == 0) + name_size = internal::measure(name); + for (xml_node *sibling = m_prev_sibling; sibling; sibling = sibling->m_prev_sibling) + if (internal::compare(sibling->name(), sibling->name_size(), name, name_size, case_sensitive)) + return sibling; + return 0; + } + else + return m_prev_sibling; + } + + //! Gets next sibling node, optionally matching node name. + //! Behaviour is undefined if node has no parent. + //! Use parent() to test if node has a parent. + //! \param name Name of sibling to find, or 0 to return next sibling regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero + //! \param name_size Size of name, in characters, or 0 to have size calculated automatically from string + //! \param case_sensitive Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters + //! \return Pointer to found sibling, or 0 if not found. + xml_node *next_sibling(const Ch *name = 0, std::size_t name_size = 0, bool case_sensitive = true) const + { + assert(this->m_parent); // Cannot query for siblings if node has no parent + if (name) + { + if (name_size == 0) + name_size = internal::measure(name); + for (xml_node *sibling = m_next_sibling; sibling; sibling = sibling->m_next_sibling) + if (internal::compare(sibling->name(), sibling->name_size(), name, name_size, case_sensitive)) + return sibling; + return 0; + } + else + return m_next_sibling; + } + + //! Gets first attribute of node, optionally matching attribute name. + //! \param name Name of attribute to find, or 0 to return first attribute regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero + //! \param name_size Size of name, in characters, or 0 to have size calculated automatically from string + //! \param case_sensitive Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters + //! \return Pointer to found attribute, or 0 if not found. + xml_attribute *first_attribute(const Ch *name = 0, std::size_t name_size = 0, bool case_sensitive = true) const + { + if (name) + { + if (name_size == 0) + name_size = internal::measure(name); + for (xml_attribute *attribute = m_first_attribute; attribute; attribute = attribute->m_next_attribute) + if (internal::compare(attribute->name(), attribute->name_size(), name, name_size, case_sensitive)) + return attribute; + return 0; + } + else + return m_first_attribute; + } + + //! Gets last attribute of node, optionally matching attribute name. + //! \param name Name of attribute to find, or 0 to return last attribute regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero + //! \param name_size Size of name, in characters, or 0 to have size calculated automatically from string + //! \param case_sensitive Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters + //! \return Pointer to found attribute, or 0 if not found. + xml_attribute *last_attribute(const Ch *name = 0, std::size_t name_size = 0, bool case_sensitive = true) const + { + if (name) + { + if (name_size == 0) + name_size = internal::measure(name); + for (xml_attribute *attribute = m_last_attribute; attribute; attribute = attribute->m_prev_attribute) + if (internal::compare(attribute->name(), attribute->name_size(), name, name_size, case_sensitive)) + return attribute; + return 0; + } + else + return m_first_attribute ? m_last_attribute : 0; + } + + /////////////////////////////////////////////////////////////////////////// + // Node modification + + //! Sets type of node. + //! \param type Type of node to set. + void type(node_type type) + { + m_type = type; + } + + /////////////////////////////////////////////////////////////////////////// + // Node manipulation + + //! Prepends a new child node. + //! The prepended child becomes the first child, and all existing children are moved one position back. + //! \param child Node to prepend. + void prepend_node(xml_node *child) + { + assert(child && !child->parent() && child->type() != node_document); + if (first_node()) + { + child->m_next_sibling = m_first_node; + m_first_node->m_prev_sibling = child; + } + else + { + child->m_next_sibling = 0; + m_last_node = child; + } + m_first_node = child; + child->m_parent = this; + child->m_prev_sibling = 0; + } + + //! Appends a new child node. + //! The appended child becomes the last child. + //! \param child Node to append. + void append_node(xml_node *child) + { + assert(child && !child->parent() && child->type() != node_document); + if (first_node()) + { + child->m_prev_sibling = m_last_node; + m_last_node->m_next_sibling = child; + } + else + { + child->m_prev_sibling = 0; + m_first_node = child; + } + m_last_node = child; + child->m_parent = this; + child->m_next_sibling = 0; + } + + //! Inserts a new child node at specified place inside the node. + //! All children after and including the specified node are moved one position back. + //! \param where Place where to insert the child, or 0 to insert at the back. + //! \param child Node to insert. + void insert_node(xml_node *where, xml_node *child) + { + assert(!where || where->parent() == this); + assert(child && !child->parent() && child->type() != node_document); + if (where == m_first_node) + prepend_node(child); + else if (where == 0) + append_node(child); + else + { + child->m_prev_sibling = where->m_prev_sibling; + child->m_next_sibling = where; + where->m_prev_sibling->m_next_sibling = child; + where->m_prev_sibling = child; + child->m_parent = this; + } + } + + //! Removes first child node. + //! If node has no children, behaviour is undefined. + //! Use first_node() to test if node has children. + void remove_first_node() + { + assert(first_node()); + xml_node *child = m_first_node; + m_first_node = child->m_next_sibling; + if (child->m_next_sibling) + child->m_next_sibling->m_prev_sibling = 0; + else + m_last_node = 0; + child->m_parent = 0; + } + + //! Removes last child of the node. + //! If node has no children, behaviour is undefined. + //! Use first_node() to test if node has children. + void remove_last_node() + { + assert(first_node()); + xml_node *child = m_last_node; + if (child->m_prev_sibling) + { + m_last_node = child->m_prev_sibling; + child->m_prev_sibling->m_next_sibling = 0; + } + else + m_first_node = 0; + child->m_parent = 0; + } + + //! Removes specified child from the node + // \param where Pointer to child to be removed. + void remove_node(xml_node *where) + { + assert(where && where->parent() == this); + assert(first_node()); + if (where == m_first_node) + remove_first_node(); + else if (where == m_last_node) + remove_last_node(); + else + { + where->m_prev_sibling->m_next_sibling = where->m_next_sibling; + where->m_next_sibling->m_prev_sibling = where->m_prev_sibling; + where->m_parent = 0; + } + } + + //! Removes all child nodes (but not attributes). + void remove_all_nodes() + { + for (xml_node *node = first_node(); node; node = node->m_next_sibling) + node->m_parent = 0; + m_first_node = 0; + } + + //! Prepends a new attribute to the node. + //! \param attribute Attribute to prepend. + void prepend_attribute(xml_attribute *attribute) + { + assert(attribute && !attribute->parent()); + if (first_attribute()) + { + attribute->m_next_attribute = m_first_attribute; + m_first_attribute->m_prev_attribute = attribute; + } + else + { + attribute->m_next_attribute = 0; + m_last_attribute = attribute; + } + m_first_attribute = attribute; + attribute->m_parent = this; + attribute->m_prev_attribute = 0; + } + + //! Appends a new attribute to the node. + //! \param attribute Attribute to append. + void append_attribute(xml_attribute *attribute) + { + assert(attribute && !attribute->parent()); + if (first_attribute()) + { + attribute->m_prev_attribute = m_last_attribute; + m_last_attribute->m_next_attribute = attribute; + } + else + { + attribute->m_prev_attribute = 0; + m_first_attribute = attribute; + } + m_last_attribute = attribute; + attribute->m_parent = this; + attribute->m_next_attribute = 0; + } + + //! Inserts a new attribute at specified place inside the node. + //! All attributes after and including the specified attribute are moved one position back. + //! \param where Place where to insert the attribute, or 0 to insert at the back. + //! \param attribute Attribute to insert. + void insert_attribute(xml_attribute *where, xml_attribute *attribute) + { + assert(!where || where->parent() == this); + assert(attribute && !attribute->parent()); + if (where == m_first_attribute) + prepend_attribute(attribute); + else if (where == 0) + append_attribute(attribute); + else + { + attribute->m_prev_attribute = where->m_prev_attribute; + attribute->m_next_attribute = where; + where->m_prev_attribute->m_next_attribute = attribute; + where->m_prev_attribute = attribute; + attribute->m_parent = this; + } + } + + //! Removes first attribute of the node. + //! If node has no attributes, behaviour is undefined. + //! Use first_attribute() to test if node has attributes. + void remove_first_attribute() + { + assert(first_attribute()); + xml_attribute *attribute = m_first_attribute; + if (attribute->m_next_attribute) + { + attribute->m_next_attribute->m_prev_attribute = 0; + } + else + m_last_attribute = 0; + attribute->m_parent = 0; + m_first_attribute = attribute->m_next_attribute; + } + + //! Removes last attribute of the node. + //! If node has no attributes, behaviour is undefined. + //! Use first_attribute() to test if node has attributes. + void remove_last_attribute() + { + assert(first_attribute()); + xml_attribute *attribute = m_last_attribute; + if (attribute->m_prev_attribute) + { + attribute->m_prev_attribute->m_next_attribute = 0; + m_last_attribute = attribute->m_prev_attribute; + } + else + m_first_attribute = 0; + attribute->m_parent = 0; + } + + //! Removes specified attribute from node. + //! \param where Pointer to attribute to be removed. + void remove_attribute(xml_attribute *where) + { + assert(first_attribute() && where->parent() == this); + if (where == m_first_attribute) + remove_first_attribute(); + else if (where == m_last_attribute) + remove_last_attribute(); + else + { + where->m_prev_attribute->m_next_attribute = where->m_next_attribute; + where->m_next_attribute->m_prev_attribute = where->m_prev_attribute; + where->m_parent = 0; + } + } + + //! Removes all attributes of node. + void remove_all_attributes() + { + for (xml_attribute *attribute = first_attribute(); attribute; attribute = attribute->m_next_attribute) + attribute->m_parent = 0; + m_first_attribute = 0; + } + + private: + + /////////////////////////////////////////////////////////////////////////// + // Restrictions + + // No copying + xml_node(const xml_node &); + void operator =(const xml_node &); + + /////////////////////////////////////////////////////////////////////////// + // Data members + + // Note that some of the pointers below have UNDEFINED values if certain other pointers are 0. + // This is required for maximum performance, as it allows the parser to omit initialization of + // unneded/redundant values. + // + // The rules are as follows: + // 1. first_node and first_attribute contain valid pointers, or 0 if node has no children/attributes respectively + // 2. last_node and last_attribute are valid only if node has at least one child/attribute respectively, otherwise they contain garbage + // 3. prev_sibling and next_sibling are valid only if node has a parent, otherwise they contain garbage + + node_type m_type; // Type of node; always valid + xml_node *m_first_node; // Pointer to first child node, or 0 if none; always valid + xml_node *m_last_node; // Pointer to last child node, or 0 if none; this value is only valid if m_first_node is non-zero + xml_attribute *m_first_attribute; // Pointer to first attribute of node, or 0 if none; always valid + xml_attribute *m_last_attribute; // Pointer to last attribute of node, or 0 if none; this value is only valid if m_first_attribute is non-zero + xml_node *m_prev_sibling; // Pointer to previous sibling of node, or 0 if none; this value is only valid if m_parent is non-zero + xml_node *m_next_sibling; // Pointer to next sibling of node, or 0 if none; this value is only valid if m_parent is non-zero + + }; + + /////////////////////////////////////////////////////////////////////////// + // XML document + + //! This class represents root of the DOM hierarchy. + //! It is also an xml_node and a memory_pool through public inheritance. + //! Use parse() function to build a DOM tree from a zero-terminated XML text string. + //! parse() function allocates memory for nodes and attributes by using functions of xml_document, + //! which are inherited from memory_pool. + //! To access root node of the document, use the document itself, as if it was an xml_node. + //! \param Ch Character type to use. + template + class xml_document: public xml_node, public memory_pool + { + + public: + + //! Constructs empty XML document + xml_document() + : xml_node(node_document) + { + } + + //! Parses zero-terminated XML string according to given flags. + //! Passed string will be modified by the parser, unless rapidxml::parse_non_destructive flag is used. + //! The string must persist for the lifetime of the document. + //! In case of error, rapidxml::parse_error exception will be thrown. + //!

+ //! If you want to parse contents of a file, you must first load the file into the memory, and pass pointer to its beginning. + //! Make sure that data is zero-terminated. + //!

+ //! Document can be parsed into multiple times. + //! Each new call to parse removes previous nodes and attributes (if any), but does not clear memory pool. + //! \param text XML data to parse; pointer is non-const to denote fact that this data may be modified by the parser. + template + void parse(Ch *text) + { + assert(text); + + // Remove current contents + this->remove_all_nodes(); + this->remove_all_attributes(); + + // Parse BOM, if any + parse_bom(text); + + // Parse children + while (1) + { + // Skip whitespace before node + skip(text); + if (*text == 0) + break; + + // Parse and append new child + if (*text == Ch('<')) + { + ++text; // Skip '<' + if (xml_node *node = parse_node(text)) + this->append_node(node); + } + else + RAPIDXML_PARSE_ERROR("expected <", text); + } + + } + + //! Clears the document by deleting all nodes and clearing the memory pool. + //! All nodes owned by document pool are destroyed. + void clear() + { + this->remove_all_nodes(); + this->remove_all_attributes(); + memory_pool::clear(); + } + + private: + + /////////////////////////////////////////////////////////////////////// + // Internal character utility functions + + // Detect whitespace character + struct whitespace_pred + { + static unsigned char test(Ch ch) + { + return internal::lookup_tables<0>::lookup_whitespace[static_cast(ch)]; + } + }; + + // Detect node name character + struct node_name_pred + { + static unsigned char test(Ch ch) + { + return internal::lookup_tables<0>::lookup_node_name[static_cast(ch)]; + } + }; + + // Detect attribute name character + struct attribute_name_pred + { + static unsigned char test(Ch ch) + { + return internal::lookup_tables<0>::lookup_attribute_name[static_cast(ch)]; + } + }; + + // Detect text character (PCDATA) + struct text_pred + { + static unsigned char test(Ch ch) + { + return internal::lookup_tables<0>::lookup_text[static_cast(ch)]; + } + }; + + // Detect text character (PCDATA) that does not require processing + struct text_pure_no_ws_pred + { + static unsigned char test(Ch ch) + { + return internal::lookup_tables<0>::lookup_text_pure_no_ws[static_cast(ch)]; + } + }; + + // Detect text character (PCDATA) that does not require processing + struct text_pure_with_ws_pred + { + static unsigned char test(Ch ch) + { + return internal::lookup_tables<0>::lookup_text_pure_with_ws[static_cast(ch)]; + } + }; + + // Detect attribute value character + template + struct attribute_value_pred + { + static unsigned char test(Ch ch) + { + if (Quote == Ch('\'')) + return internal::lookup_tables<0>::lookup_attribute_data_1[static_cast(ch)]; + if (Quote == Ch('\"')) + return internal::lookup_tables<0>::lookup_attribute_data_2[static_cast(ch)]; + return 0; // Should never be executed, to avoid warnings on Comeau + } + }; + + // Detect attribute value character + template + struct attribute_value_pure_pred + { + static unsigned char test(Ch ch) + { + if (Quote == Ch('\'')) + return internal::lookup_tables<0>::lookup_attribute_data_1_pure[static_cast(ch)]; + if (Quote == Ch('\"')) + return internal::lookup_tables<0>::lookup_attribute_data_2_pure[static_cast(ch)]; + return 0; // Should never be executed, to avoid warnings on Comeau + } + }; + + // Insert coded character, using UTF8 or 8-bit ASCII + template + static void insert_coded_character(Ch *&text, unsigned long code) + { + if (Flags & parse_no_utf8) + { + // Insert 8-bit ASCII character + // Todo: possibly verify that code is less than 256 and use replacement char otherwise? + text[0] = static_cast(code); + text += 1; + } + else + { + // Insert UTF8 sequence + if (code < 0x80) // 1 byte sequence + { + text[0] = static_cast(code); + text += 1; + } + else if (code < 0x800) // 2 byte sequence + { + text[1] = static_cast((code | 0x80) & 0xBF); code >>= 6; + text[0] = static_cast(code | 0xC0); + text += 2; + } + else if (code < 0x10000) // 3 byte sequence + { + text[2] = static_cast((code | 0x80) & 0xBF); code >>= 6; + text[1] = static_cast((code | 0x80) & 0xBF); code >>= 6; + text[0] = static_cast(code | 0xE0); + text += 3; + } + else if (code < 0x110000) // 4 byte sequence + { + text[3] = static_cast((code | 0x80) & 0xBF); code >>= 6; + text[2] = static_cast((code | 0x80) & 0xBF); code >>= 6; + text[1] = static_cast((code | 0x80) & 0xBF); code >>= 6; + text[0] = static_cast(code | 0xF0); + text += 4; + } + else // Invalid, only codes up to 0x10FFFF are allowed in Unicode + { + RAPIDXML_PARSE_ERROR("invalid numeric character entity", text); + } + } + } + + // Skip characters until predicate evaluates to true + template + static void skip(Ch *&text) + { + Ch *tmp = text; + while (StopPred::test(*tmp)) + ++tmp; + text = tmp; + } + + // Skip characters until predicate evaluates to true while doing the following: + // - replacing XML character entity references with proper characters (' & " < > &#...;) + // - condensing whitespace sequences to single space character + template + static Ch *skip_and_expand_character_refs(Ch *&text) + { + // If entity translation, whitespace condense and whitespace trimming is disabled, use plain skip + if (Flags & parse_no_entity_translation && + !(Flags & parse_normalize_whitespace) && + !(Flags & parse_trim_whitespace)) + { + skip(text); + return text; + } + + // Use simple skip until first modification is detected + skip(text); + + // Use translation skip + Ch *src = text; + Ch *dest = src; + while (StopPred::test(*src)) + { + // If entity translation is enabled + if (!(Flags & parse_no_entity_translation)) + { + // Test if replacement is needed + if (src[0] == Ch('&')) + { + switch (src[1]) + { + + // & ' + case Ch('a'): + if (src[2] == Ch('m') && src[3] == Ch('p') && src[4] == Ch(';')) + { + *dest = Ch('&'); + ++dest; + src += 5; + continue; + } + if (src[2] == Ch('p') && src[3] == Ch('o') && src[4] == Ch('s') && src[5] == Ch(';')) + { + *dest = Ch('\''); + ++dest; + src += 6; + continue; + } + break; + + // " + case Ch('q'): + if (src[2] == Ch('u') && src[3] == Ch('o') && src[4] == Ch('t') && src[5] == Ch(';')) + { + *dest = Ch('"'); + ++dest; + src += 6; + continue; + } + break; + + // > + case Ch('g'): + if (src[2] == Ch('t') && src[3] == Ch(';')) + { + *dest = Ch('>'); + ++dest; + src += 4; + continue; + } + break; + + // < + case Ch('l'): + if (src[2] == Ch('t') && src[3] == Ch(';')) + { + *dest = Ch('<'); + ++dest; + src += 4; + continue; + } + break; + + // &#...; - assumes ASCII + case Ch('#'): + if (src[2] == Ch('x')) + { + unsigned long code = 0; + src += 3; // Skip &#x + while (1) + { + unsigned char digit = internal::lookup_tables<0>::lookup_digits[static_cast(*src)]; + if (digit == 0xFF) + break; + code = code * 16 + digit; + ++src; + } + insert_coded_character(dest, code); // Put character in output + } + else + { + unsigned long code = 0; + src += 2; // Skip &# + while (1) + { + unsigned char digit = internal::lookup_tables<0>::lookup_digits[static_cast(*src)]; + if (digit == 0xFF) + break; + code = code * 10 + digit; + ++src; + } + insert_coded_character(dest, code); // Put character in output + } + if (*src == Ch(';')) + ++src; + else + RAPIDXML_PARSE_ERROR("expected ;", src); + continue; + + // Something else + default: + // Ignore, just copy '&' verbatim + break; + + } + } + } + + // If whitespace condensing is enabled + if (Flags & parse_normalize_whitespace) + { + // Test if condensing is needed + if (whitespace_pred::test(*src)) + { + *dest = Ch(' '); ++dest; // Put single space in dest + ++src; // Skip first whitespace char + // Skip remaining whitespace chars + while (whitespace_pred::test(*src)) + ++src; + continue; + } + } + + // No replacement, only copy character + *dest++ = *src++; + + } + + // Return new end + text = src; + return dest; + + } + + /////////////////////////////////////////////////////////////////////// + // Internal parsing functions + + // Parse BOM, if any + template + void parse_bom(Ch *&text) + { + // UTF-8? + if (static_cast(text[0]) == 0xEF && + static_cast(text[1]) == 0xBB && + static_cast(text[2]) == 0xBF) + { + text += 3; // Skup utf-8 bom + } + } + + // Parse XML declaration ( + xml_node *parse_xml_declaration(Ch *&text) + { + // If parsing of declaration is disabled + if (!(Flags & parse_declaration_node)) + { + // Skip until end of declaration + while (text[0] != Ch('?') || text[1] != Ch('>')) + { + if (!text[0]) + RAPIDXML_PARSE_ERROR("unexpected end of data", text); + ++text; + } + text += 2; // Skip '?>' + return 0; + } + + // Create declaration + xml_node *declaration = this->allocate_node(node_declaration); + + // Skip whitespace before attributes or ?> + skip(text); + + // Parse declaration attributes + parse_node_attributes(text, declaration); + + // Skip ?> + if (text[0] != Ch('?') || text[1] != Ch('>')) + RAPIDXML_PARSE_ERROR("expected ?>", text); + text += 2; + + return declaration; + } + + // Parse XML comment (' + return 0; // Do not produce comment node + } + + // Remember value start + Ch *value = text; + + // Skip until end of comment + while (text[0] != Ch('-') || text[1] != Ch('-') || text[2] != Ch('>')) + { + if (!text[0]) + RAPIDXML_PARSE_ERROR("unexpected end of data", text); + ++text; + } + + // Create comment node + xml_node *comment = this->allocate_node(node_comment); + comment->value(value, text - value); + + // Place zero terminator after comment value + if (!(Flags & parse_no_string_terminators)) + *text = Ch('\0'); + + text += 3; // Skip '-->' + return comment; + } + + // Parse DOCTYPE + template + xml_node *parse_doctype(Ch *&text) + { + // Remember value start + Ch *value = text; + + // Skip to > + while (*text != Ch('>')) + { + // Determine character type + switch (*text) + { + + // If '[' encountered, scan for matching ending ']' using naive algorithm with depth + // This works for all W3C test files except for 2 most wicked + case Ch('['): + { + ++text; // Skip '[' + int depth = 1; + while (depth > 0) + { + switch (*text) + { + case Ch('['): ++depth; break; + case Ch(']'): --depth; break; + case 0: RAPIDXML_PARSE_ERROR("unexpected end of data", text); + } + ++text; + } + break; + } + + // Error on end of text + case Ch('\0'): + RAPIDXML_PARSE_ERROR("unexpected end of data", text); + + // Other character, skip it + default: + ++text; + + } + } + + // If DOCTYPE nodes enabled + if (Flags & parse_doctype_node) + { + // Create a new doctype node + xml_node *doctype = this->allocate_node(node_doctype); + doctype->value(value, text - value); + + // Place zero terminator after value + if (!(Flags & parse_no_string_terminators)) + *text = Ch('\0'); + + text += 1; // skip '>' + return doctype; + } + else + { + text += 1; // skip '>' + return 0; + } + + } + + // Parse PI + template + xml_node *parse_pi(Ch *&text) + { + // If creation of PI nodes is enabled + if (Flags & parse_pi_nodes) + { + // Create pi node + xml_node *pi = this->allocate_node(node_pi); + + // Extract PI target name + Ch *name = text; + skip(text); + if (text == name) + RAPIDXML_PARSE_ERROR("expected PI target", text); + pi->name(name, text - name); + + // Skip whitespace between pi target and pi + skip(text); + + // Remember start of pi + Ch *value = text; + + // Skip to '?>' + while (text[0] != Ch('?') || text[1] != Ch('>')) + { + if (*text == Ch('\0')) + RAPIDXML_PARSE_ERROR("unexpected end of data", text); + ++text; + } + + // Set pi value (verbatim, no entity expansion or whitespace normalization) + pi->value(value, text - value); + + // Place zero terminator after name and value + if (!(Flags & parse_no_string_terminators)) + { + pi->name()[pi->name_size()] = Ch('\0'); + pi->value()[pi->value_size()] = Ch('\0'); + } + + text += 2; // Skip '?>' + return pi; + } + else + { + // Skip to '?>' + while (text[0] != Ch('?') || text[1] != Ch('>')) + { + if (*text == Ch('\0')) + RAPIDXML_PARSE_ERROR("unexpected end of data", text); + ++text; + } + text += 2; // Skip '?>' + return 0; + } + } + + // Parse and append data + // Return character that ends data. + // This is necessary because this character might have been overwritten by a terminating 0 + template + Ch parse_and_append_data(xml_node *node, Ch *&text, Ch *contents_start) + { + // Backup to contents start if whitespace trimming is disabled + if (!(Flags & parse_trim_whitespace)) + text = contents_start; + + // Skip until end of data + Ch *value = text, *end; + if (Flags & parse_normalize_whitespace) + end = skip_and_expand_character_refs(text); + else + end = skip_and_expand_character_refs(text); + + // Trim trailing whitespace if flag is set; leading was already trimmed by whitespace skip after > + if (Flags & parse_trim_whitespace) + { + if (Flags & parse_normalize_whitespace) + { + // Whitespace is already condensed to single space characters by skipping function, so just trim 1 char off the end + if (*(end - 1) == Ch(' ')) + --end; + } + else + { + // Backup until non-whitespace character is found + while (whitespace_pred::test(*(end - 1))) + --end; + } + } + + // If characters are still left between end and value (this test is only necessary if normalization is enabled) + // Create new data node + if (!(Flags & parse_no_data_nodes)) + { + xml_node *data = this->allocate_node(node_data); + data->value(value, end - value); + node->append_node(data); + } + + // Add data to parent node if no data exists yet + if (!(Flags & parse_no_element_values)) + if (*node->value() == Ch('\0')) + node->value(value, end - value); + + // Place zero terminator after value + if (!(Flags & parse_no_string_terminators)) + { + Ch ch = *text; + *end = Ch('\0'); + return ch; // Return character that ends data; this is required because zero terminator overwritten it + } + + // Return character that ends data + return *text; + } + + // Parse CDATA + template + xml_node *parse_cdata(Ch *&text) + { + // If CDATA is disabled + if (Flags & parse_no_data_nodes) + { + // Skip until end of cdata + while (text[0] != Ch(']') || text[1] != Ch(']') || text[2] != Ch('>')) + { + if (!text[0]) + RAPIDXML_PARSE_ERROR("unexpected end of data", text); + ++text; + } + text += 3; // Skip ]]> + return 0; // Do not produce CDATA node + } + + // Skip until end of cdata + Ch *value = text; + while (text[0] != Ch(']') || text[1] != Ch(']') || text[2] != Ch('>')) + { + if (!text[0]) + RAPIDXML_PARSE_ERROR("unexpected end of data", text); + ++text; + } + + // Create new cdata node + xml_node *cdata = this->allocate_node(node_cdata); + cdata->value(value, text - value); + + // Place zero terminator after value + if (!(Flags & parse_no_string_terminators)) + *text = Ch('\0'); + + text += 3; // Skip ]]> + return cdata; + } + + // Parse element node + template + xml_node *parse_element(Ch *&text) + { + // Create element node + xml_node *element = this->allocate_node(node_element); + + // Extract element name + Ch *name = text; + skip(text); + if (text == name) + RAPIDXML_PARSE_ERROR("expected element name", text); + element->name(name, text - name); + + // Skip whitespace between element name and attributes or > + skip(text); + + // Parse attributes, if any + parse_node_attributes(text, element); + + // Determine ending type + if (*text == Ch('>')) + { + ++text; + parse_node_contents(text, element); + } + else if (*text == Ch('/')) + { + ++text; + if (*text != Ch('>')) + RAPIDXML_PARSE_ERROR("expected >", text); + ++text; + } + else + RAPIDXML_PARSE_ERROR("expected >", text); + + // Place zero terminator after name + if (!(Flags & parse_no_string_terminators)) + element->name()[element->name_size()] = Ch('\0'); + + // Return parsed element + return element; + } + + // Determine node type, and parse it + template + xml_node *parse_node(Ch *&text) + { + // Parse proper node type + switch (text[0]) + { + + // <... + default: + // Parse and append element node + return parse_element(text); + + // (text); + } + else + { + // Parse PI + return parse_pi(text); + } + + // (text); + } + break; + + // (text); + } + break; + + // (text); + } + + } // switch + + // Attempt to skip other, unrecognized node types starting with ')) + { + if (*text == 0) + RAPIDXML_PARSE_ERROR("unexpected end of data", text); + ++text; + } + ++text; // Skip '>' + return 0; // No node recognized + + } + } + + // Parse contents of the node - children, data etc. + template + void parse_node_contents(Ch *&text, xml_node *node) + { + // For all children and text + while (1) + { + // Skip whitespace between > and node contents + Ch *contents_start = text; // Store start of node contents before whitespace is skipped + skip(text); + Ch next_char = *text; + + // After data nodes, instead of continuing the loop, control jumps here. + // This is because zero termination inside parse_and_append_data() function + // would wreak havoc with the above code. + // Also, skipping whitespace after data nodes is unnecessary. + after_data_node: + + // Determine what comes next: node closing, child node, data node, or 0? + switch (next_char) + { + + // Node closing or child node + case Ch('<'): + if (text[1] == Ch('/')) + { + // Node closing + text += 2; // Skip '(text); + if (!internal::compare(node->name(), node->name_size(), closing_name, text - closing_name, true)) + RAPIDXML_PARSE_ERROR("invalid closing tag name", text); + } + else + { + // No validation, just skip name + skip(text); + } + // Skip remaining whitespace after node name + skip(text); + if (*text != Ch('>')) + RAPIDXML_PARSE_ERROR("expected >", text); + ++text; // Skip '>' + return; // Node closed, finished parsing contents + } + else + { + // Child node + ++text; // Skip '<' + if (xml_node *child = parse_node(text)) + node->append_node(child); + } + break; + + // End of data - error + case Ch('\0'): + RAPIDXML_PARSE_ERROR("unexpected end of data", text); + + // Data node + default: + next_char = parse_and_append_data(node, text, contents_start); + goto after_data_node; // Bypass regular processing after data nodes + + } + } + } + + // Parse XML attributes of the node + template + void parse_node_attributes(Ch *&text, xml_node *node) + { + // For all attributes + while (attribute_name_pred::test(*text)) + { + // Extract attribute name + Ch *name = text; + ++text; // Skip first character of attribute name + skip(text); + if (text == name) + RAPIDXML_PARSE_ERROR("expected attribute name", name); + + // Create new attribute + xml_attribute *attribute = this->allocate_attribute(); + attribute->name(name, text - name); + node->append_attribute(attribute); + + // Skip whitespace after attribute name + skip(text); + + // Skip = + if (*text != Ch('=')) + RAPIDXML_PARSE_ERROR("expected =", text); + ++text; + + // Add terminating zero after name + if (!(Flags & parse_no_string_terminators)) + attribute->name()[attribute->name_size()] = 0; + + // Skip whitespace after = + skip(text); + + // Skip quote and remember if it was ' or " + Ch quote = *text; + if (quote != Ch('\'') && quote != Ch('"')) + RAPIDXML_PARSE_ERROR("expected ' or \"", text); + ++text; + + // Extract attribute value and expand char refs in it + Ch *value = text, *end; + const int AttFlags = Flags & ~parse_normalize_whitespace; // No whitespace normalization in attributes + if (quote == Ch('\'')) + end = skip_and_expand_character_refs, attribute_value_pure_pred, AttFlags>(text); + else + end = skip_and_expand_character_refs, attribute_value_pure_pred, AttFlags>(text); + + // Set attribute value + attribute->value(value, end - value); + + // Make sure that end quote is present + if (*text != quote) + RAPIDXML_PARSE_ERROR("expected ' or \"", text); + ++text; // Skip quote + + // Add terminating zero after value + if (!(Flags & parse_no_string_terminators)) + attribute->value()[attribute->value_size()] = 0; + + // Skip whitespace after attribute value + skip(text); + } + } + + }; + + //! \cond internal + namespace internal + { + + // Whitespace (space \n \r \t) + template + const unsigned char lookup_tables::lookup_whitespace[256] = + { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, // 0 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 1 + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 2 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 3 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 4 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 5 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 6 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 7 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 8 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 9 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // A + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // B + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // C + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // D + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // E + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 // F + }; + + // Node name (anything but space \n \r \t / > ? \0) + template + const unsigned char lookup_tables::lookup_node_name[256] = + { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, // 0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 1 + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, // 2 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, // 3 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 4 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 5 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 6 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 7 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 8 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 9 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // A + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // B + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // C + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // D + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // E + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // F + }; + + // Text (i.e. PCDATA) (anything but < \0) + template + const unsigned char lookup_tables::lookup_text[256] = + { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 1 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 2 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, // 3 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 4 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 5 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 6 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 7 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 8 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 9 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // A + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // B + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // C + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // D + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // E + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // F + }; + + // Text (i.e. PCDATA) that does not require processing when ws normalization is disabled + // (anything but < \0 &) + template + const unsigned char lookup_tables::lookup_text_pure_no_ws[256] = + { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 1 + 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 2 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, // 3 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 4 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 5 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 6 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 7 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 8 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 9 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // A + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // B + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // C + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // D + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // E + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // F + }; + + // Text (i.e. PCDATA) that does not require processing when ws normalizationis is enabled + // (anything but < \0 & space \n \r \t) + template + const unsigned char lookup_tables::lookup_text_pure_with_ws[256] = + { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, // 0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 1 + 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 2 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, // 3 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 4 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 5 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 6 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 7 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 8 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 9 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // A + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // B + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // C + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // D + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // E + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // F + }; + + // Attribute name (anything but space \n \r \t / < > = ? ! \0) + template + const unsigned char lookup_tables::lookup_attribute_name[256] = + { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, // 0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 1 + 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, // 2 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, // 3 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 4 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 5 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 6 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 7 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 8 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 9 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // A + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // B + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // C + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // D + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // E + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // F + }; + + // Attribute data with single quote (anything but ' \0) + template + const unsigned char lookup_tables::lookup_attribute_data_1[256] = + { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 1 + 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, // 2 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 3 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 4 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 5 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 6 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 7 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 8 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 9 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // A + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // B + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // C + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // D + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // E + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // F + }; + + // Attribute data with single quote that does not require processing (anything but ' \0 &) + template + const unsigned char lookup_tables::lookup_attribute_data_1_pure[256] = + { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 1 + 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, // 2 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 3 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 4 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 5 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 6 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 7 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 8 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 9 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // A + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // B + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // C + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // D + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // E + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // F + }; + + // Attribute data with double quote (anything but " \0) + template + const unsigned char lookup_tables::lookup_attribute_data_2[256] = + { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 1 + 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 2 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 3 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 4 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 5 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 6 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 7 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 8 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 9 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // A + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // B + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // C + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // D + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // E + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // F + }; + + // Attribute data with double quote that does not require processing (anything but " \0 &) + template + const unsigned char lookup_tables::lookup_attribute_data_2_pure[256] = + { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 1 + 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 2 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 3 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 4 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 5 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 6 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 7 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 8 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 9 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // A + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // B + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // C + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // D + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // E + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // F + }; + + // Digits (dec and hex, 255 denotes end of numeric character reference) + template + const unsigned char lookup_tables::lookup_digits[256] = + { + // 0 1 2 3 4 5 6 7 8 9 A B C D E F + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // 0 + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // 1 + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // 2 + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,255,255,255,255,255,255, // 3 + 255, 10, 11, 12, 13, 14, 15,255,255,255,255,255,255,255,255,255, // 4 + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // 5 + 255, 10, 11, 12, 13, 14, 15,255,255,255,255,255,255,255,255,255, // 6 + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // 7 + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // 8 + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // 9 + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // A + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // B + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // C + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // D + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, // E + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255 // F + }; + + // Upper case conversion + template + const unsigned char lookup_tables::lookup_upcase[256] = + { + // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A B C D E F + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, // 0 + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, // 1 + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, // 2 + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, // 3 + 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, // 4 + 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, // 5 + 96, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, // 6 + 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 123,124,125,126,127, // 7 + 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, // 8 + 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159, // 9 + 160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175, // A + 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191, // B + 192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207, // C + 208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223, // D + 224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239, // E + 240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255 // F + }; + } + //! \endcond + +} + +// Undefine internal macros +#undef RAPIDXML_PARSE_ERROR + +// On MSVC, restore warnings state +#ifdef _MSC_VER + #pragma warning(pop) +#endif + +#endif diff --git a/sample/lidar_lvx_file/third_party/rapidxml/rapidxml_iterators.hpp b/sample/lidar_lvx_file/third_party/rapidxml/rapidxml_iterators.hpp new file mode 100644 index 0000000..52ebc29 --- /dev/null +++ b/sample/lidar_lvx_file/third_party/rapidxml/rapidxml_iterators.hpp @@ -0,0 +1,174 @@ +#ifndef RAPIDXML_ITERATORS_HPP_INCLUDED +#define RAPIDXML_ITERATORS_HPP_INCLUDED + +// Copyright (C) 2006, 2009 Marcin Kalicinski +// Version 1.13 +// Revision $DateTime: 2009/05/13 01:46:17 $ +//! \file rapidxml_iterators.hpp This file contains rapidxml iterators + +#include "rapidxml.hpp" + +namespace rapidxml +{ + + //! Iterator of child nodes of xml_node + template + class node_iterator + { + + public: + + typedef typename xml_node value_type; + typedef typename xml_node &reference; + typedef typename xml_node *pointer; + typedef std::ptrdiff_t difference_type; + typedef std::bidirectional_iterator_tag iterator_category; + + node_iterator() + : m_node(0) + { + } + + node_iterator(xml_node *node) + : m_node(node->first_node()) + { + } + + reference operator *() const + { + assert(m_node); + return *m_node; + } + + pointer operator->() const + { + assert(m_node); + return m_node; + } + + node_iterator& operator++() + { + assert(m_node); + m_node = m_node->next_sibling(); + return *this; + } + + node_iterator operator++(int) + { + node_iterator tmp = *this; + ++this; + return tmp; + } + + node_iterator& operator--() + { + assert(m_node && m_node->previous_sibling()); + m_node = m_node->previous_sibling(); + return *this; + } + + node_iterator operator--(int) + { + node_iterator tmp = *this; + ++this; + return tmp; + } + + bool operator ==(const node_iterator &rhs) + { + return m_node == rhs.m_node; + } + + bool operator !=(const node_iterator &rhs) + { + return m_node != rhs.m_node; + } + + private: + + xml_node *m_node; + + }; + + //! Iterator of child attributes of xml_node + template + class attribute_iterator + { + + public: + + typedef typename xml_attribute value_type; + typedef typename xml_attribute &reference; + typedef typename xml_attribute *pointer; + typedef std::ptrdiff_t difference_type; + typedef std::bidirectional_iterator_tag iterator_category; + + attribute_iterator() + : m_attribute(0) + { + } + + attribute_iterator(xml_node *node) + : m_attribute(node->first_attribute()) + { + } + + reference operator *() const + { + assert(m_attribute); + return *m_attribute; + } + + pointer operator->() const + { + assert(m_attribute); + return m_attribute; + } + + attribute_iterator& operator++() + { + assert(m_attribute); + m_attribute = m_attribute->next_attribute(); + return *this; + } + + attribute_iterator operator++(int) + { + attribute_iterator tmp = *this; + ++this; + return tmp; + } + + attribute_iterator& operator--() + { + assert(m_attribute && m_attribute->previous_attribute()); + m_attribute = m_attribute->previous_attribute(); + return *this; + } + + attribute_iterator operator--(int) + { + attribute_iterator tmp = *this; + ++this; + return tmp; + } + + bool operator ==(const attribute_iterator &rhs) + { + return m_attribute == rhs.m_attribute; + } + + bool operator !=(const attribute_iterator &rhs) + { + return m_attribute != rhs.m_attribute; + } + + private: + + xml_attribute *m_attribute; + + }; + +} + +#endif diff --git a/sample/lidar_lvx_file/third_party/rapidxml/rapidxml_print.hpp b/sample/lidar_lvx_file/third_party/rapidxml/rapidxml_print.hpp new file mode 100644 index 0000000..0ae2b14 --- /dev/null +++ b/sample/lidar_lvx_file/third_party/rapidxml/rapidxml_print.hpp @@ -0,0 +1,421 @@ +#ifndef RAPIDXML_PRINT_HPP_INCLUDED +#define RAPIDXML_PRINT_HPP_INCLUDED + +// Copyright (C) 2006, 2009 Marcin Kalicinski +// Version 1.13 +// Revision $DateTime: 2009/05/13 01:46:17 $ +//! \file rapidxml_print.hpp This file contains rapidxml printer implementation + +#include "rapidxml.hpp" + +// Only include streams if not disabled +#ifndef RAPIDXML_NO_STREAMS + #include + #include +#endif + +namespace rapidxml +{ + + /////////////////////////////////////////////////////////////////////// + // Printing flags + + const int print_no_indenting = 0x1; //!< Printer flag instructing the printer to suppress indenting of XML. See print() function. + + /////////////////////////////////////////////////////////////////////// + // Internal + + //! \cond internal + namespace internal + { + + /////////////////////////////////////////////////////////////////////////// + // Internal character operations + + // Copy characters from given range to given output iterator + template + inline OutIt copy_chars(const Ch *begin, const Ch *end, OutIt out) + { + while (begin != end) + *out++ = *begin++; + return out; + } + + // Copy characters from given range to given output iterator and expand + // characters into references (< > ' " &) + template + inline OutIt copy_and_expand_chars(const Ch *begin, const Ch *end, Ch noexpand, OutIt out) + { + while (begin != end) + { + if (*begin == noexpand) + { + *out++ = *begin; // No expansion, copy character + } + else + { + switch (*begin) + { + case Ch('<'): + *out++ = Ch('&'); *out++ = Ch('l'); *out++ = Ch('t'); *out++ = Ch(';'); + break; + case Ch('>'): + *out++ = Ch('&'); *out++ = Ch('g'); *out++ = Ch('t'); *out++ = Ch(';'); + break; + case Ch('\''): + *out++ = Ch('&'); *out++ = Ch('a'); *out++ = Ch('p'); *out++ = Ch('o'); *out++ = Ch('s'); *out++ = Ch(';'); + break; + case Ch('"'): + *out++ = Ch('&'); *out++ = Ch('q'); *out++ = Ch('u'); *out++ = Ch('o'); *out++ = Ch('t'); *out++ = Ch(';'); + break; + case Ch('&'): + *out++ = Ch('&'); *out++ = Ch('a'); *out++ = Ch('m'); *out++ = Ch('p'); *out++ = Ch(';'); + break; + default: + *out++ = *begin; // No expansion, copy character + } + } + ++begin; // Step to next character + } + return out; + } + + // Fill given output iterator with repetitions of the same character + template + inline OutIt fill_chars(OutIt out, int n, Ch ch) + { + for (int i = 0; i < n; ++i) + *out++ = ch; + return out; + } + + // Find character + template + inline bool find_char(const Ch *begin, const Ch *end) + { + while (begin != end) + if (*begin++ == ch) + return true; + return false; + } + + /////////////////////////////////////////////////////////////////////////// + // Internal printing operations + + // Print node + template + inline OutIt print_node(OutIt out, const xml_node *node, int flags, int indent) + { + // Print proper node type + switch (node->type()) + { + + // Document + case node_document: + out = print_children(out, node, flags, indent); + break; + + // Element + case node_element: + out = print_element_node(out, node, flags, indent); + break; + + // Data + case node_data: + out = print_data_node(out, node, flags, indent); + break; + + // CDATA + case node_cdata: + out = print_cdata_node(out, node, flags, indent); + break; + + // Declaration + case node_declaration: + out = print_declaration_node(out, node, flags, indent); + break; + + // Comment + case node_comment: + out = print_comment_node(out, node, flags, indent); + break; + + // Doctype + case node_doctype: + out = print_doctype_node(out, node, flags, indent); + break; + + // Pi + case node_pi: + out = print_pi_node(out, node, flags, indent); + break; + + // Unknown + default: + assert(0); + break; + } + + // If indenting not disabled, add line break after node + if (!(flags & print_no_indenting)) + *out = Ch('\n'), ++out; + + // Return modified iterator + return out; + } + + // Print children of the node + template + inline OutIt print_children(OutIt out, const xml_node *node, int flags, int indent) + { + for (xml_node *child = node->first_node(); child; child = child->next_sibling()) + out = print_node(out, child, flags, indent); + return out; + } + + // Print attributes of the node + template + inline OutIt print_attributes(OutIt out, const xml_node *node, int flags) + { + for (xml_attribute *attribute = node->first_attribute(); attribute; attribute = attribute->next_attribute()) + { + if (attribute->name() && attribute->value()) + { + // Print attribute name + *out = Ch(' '), ++out; + out = copy_chars(attribute->name(), attribute->name() + attribute->name_size(), out); + *out = Ch('='), ++out; + // Print attribute value using appropriate quote type + if (find_char(attribute->value(), attribute->value() + attribute->value_size())) + { + *out = Ch('\''), ++out; + out = copy_and_expand_chars(attribute->value(), attribute->value() + attribute->value_size(), Ch('"'), out); + *out = Ch('\''), ++out; + } + else + { + *out = Ch('"'), ++out; + out = copy_and_expand_chars(attribute->value(), attribute->value() + attribute->value_size(), Ch('\''), out); + *out = Ch('"'), ++out; + } + } + } + return out; + } + + // Print data node + template + inline OutIt print_data_node(OutIt out, const xml_node *node, int flags, int indent) + { + assert(node->type() == node_data); + if (!(flags & print_no_indenting)) + out = fill_chars(out, indent, Ch('\t')); + out = copy_and_expand_chars(node->value(), node->value() + node->value_size(), Ch(0), out); + return out; + } + + // Print data node + template + inline OutIt print_cdata_node(OutIt out, const xml_node *node, int flags, int indent) + { + assert(node->type() == node_cdata); + if (!(flags & print_no_indenting)) + out = fill_chars(out, indent, Ch('\t')); + *out = Ch('<'); ++out; + *out = Ch('!'); ++out; + *out = Ch('['); ++out; + *out = Ch('C'); ++out; + *out = Ch('D'); ++out; + *out = Ch('A'); ++out; + *out = Ch('T'); ++out; + *out = Ch('A'); ++out; + *out = Ch('['); ++out; + out = copy_chars(node->value(), node->value() + node->value_size(), out); + *out = Ch(']'); ++out; + *out = Ch(']'); ++out; + *out = Ch('>'); ++out; + return out; + } + + // Print element node + template + inline OutIt print_element_node(OutIt out, const xml_node *node, int flags, int indent) + { + assert(node->type() == node_element); + + // Print element name and attributes, if any + if (!(flags & print_no_indenting)) + out = fill_chars(out, indent, Ch('\t')); + *out = Ch('<'), ++out; + out = copy_chars(node->name(), node->name() + node->name_size(), out); + out = print_attributes(out, node, flags); + + // If node is childless + if (node->value_size() == 0 && !node->first_node()) + { + // Print childless node tag ending + *out = Ch('/'), ++out; + *out = Ch('>'), ++out; + } + else + { + // Print normal node tag ending + *out = Ch('>'), ++out; + + // Test if node contains a single data node only (and no other nodes) + xml_node *child = node->first_node(); + if (!child) + { + // If node has no children, only print its value without indenting + out = copy_and_expand_chars(node->value(), node->value() + node->value_size(), Ch(0), out); + } + else if (child->next_sibling() == 0 && child->type() == node_data) + { + // If node has a sole data child, only print its value without indenting + out = copy_and_expand_chars(child->value(), child->value() + child->value_size(), Ch(0), out); + } + else + { + // Print all children with full indenting + if (!(flags & print_no_indenting)) + *out = Ch('\n'), ++out; + out = print_children(out, node, flags, indent + 1); + if (!(flags & print_no_indenting)) + out = fill_chars(out, indent, Ch('\t')); + } + + // Print node end + *out = Ch('<'), ++out; + *out = Ch('/'), ++out; + out = copy_chars(node->name(), node->name() + node->name_size(), out); + *out = Ch('>'), ++out; + } + return out; + } + + // Print declaration node + template + inline OutIt print_declaration_node(OutIt out, const xml_node *node, int flags, int indent) + { + // Print declaration start + if (!(flags & print_no_indenting)) + out = fill_chars(out, indent, Ch('\t')); + *out = Ch('<'), ++out; + *out = Ch('?'), ++out; + *out = Ch('x'), ++out; + *out = Ch('m'), ++out; + *out = Ch('l'), ++out; + + // Print attributes + out = print_attributes(out, node, flags); + + // Print declaration end + *out = Ch('?'), ++out; + *out = Ch('>'), ++out; + + return out; + } + + // Print comment node + template + inline OutIt print_comment_node(OutIt out, const xml_node *node, int flags, int indent) + { + assert(node->type() == node_comment); + if (!(flags & print_no_indenting)) + out = fill_chars(out, indent, Ch('\t')); + *out = Ch('<'), ++out; + *out = Ch('!'), ++out; + *out = Ch('-'), ++out; + *out = Ch('-'), ++out; + out = copy_chars(node->value(), node->value() + node->value_size(), out); + *out = Ch('-'), ++out; + *out = Ch('-'), ++out; + *out = Ch('>'), ++out; + return out; + } + + // Print doctype node + template + inline OutIt print_doctype_node(OutIt out, const xml_node *node, int flags, int indent) + { + assert(node->type() == node_doctype); + if (!(flags & print_no_indenting)) + out = fill_chars(out, indent, Ch('\t')); + *out = Ch('<'), ++out; + *out = Ch('!'), ++out; + *out = Ch('D'), ++out; + *out = Ch('O'), ++out; + *out = Ch('C'), ++out; + *out = Ch('T'), ++out; + *out = Ch('Y'), ++out; + *out = Ch('P'), ++out; + *out = Ch('E'), ++out; + *out = Ch(' '), ++out; + out = copy_chars(node->value(), node->value() + node->value_size(), out); + *out = Ch('>'), ++out; + return out; + } + + // Print pi node + template + inline OutIt print_pi_node(OutIt out, const xml_node *node, int flags, int indent) + { + assert(node->type() == node_pi); + if (!(flags & print_no_indenting)) + out = fill_chars(out, indent, Ch('\t')); + *out = Ch('<'), ++out; + *out = Ch('?'), ++out; + out = copy_chars(node->name(), node->name() + node->name_size(), out); + *out = Ch(' '), ++out; + out = copy_chars(node->value(), node->value() + node->value_size(), out); + *out = Ch('?'), ++out; + *out = Ch('>'), ++out; + return out; + } + + } + //! \endcond + + /////////////////////////////////////////////////////////////////////////// + // Printing + + //! Prints XML to given output iterator. + //! \param out Output iterator to print to. + //! \param node Node to be printed. Pass xml_document to print entire document. + //! \param flags Flags controlling how XML is printed. + //! \return Output iterator pointing to position immediately after last character of printed text. + template + inline OutIt print(OutIt out, const xml_node &node, int flags = 0) + { + return internal::print_node(out, &node, flags, 0); + } + +#ifndef RAPIDXML_NO_STREAMS + + //! Prints XML to given output stream. + //! \param out Output stream to print to. + //! \param node Node to be printed. Pass xml_document to print entire document. + //! \param flags Flags controlling how XML is printed. + //! \return Output stream. + template + inline std::basic_ostream &print(std::basic_ostream &out, const xml_node &node, int flags = 0) + { + print(std::ostream_iterator(out), node, flags); + return out; + } + + //! Prints formatted XML to given output stream. Uses default printing flags. Use print() function to customize printing process. + //! \param out Output stream to print to. + //! \param node Node to be printed. + //! \return Output stream. + template + inline std::basic_ostream &operator <<(std::basic_ostream &out, const xml_node &node) + { + return print(out, node); + } + +#endif + +} + +#endif diff --git a/sample/lidar_lvx_file/third_party/rapidxml/rapidxml_utils.hpp b/sample/lidar_lvx_file/third_party/rapidxml/rapidxml_utils.hpp new file mode 100644 index 0000000..37c2953 --- /dev/null +++ b/sample/lidar_lvx_file/third_party/rapidxml/rapidxml_utils.hpp @@ -0,0 +1,122 @@ +#ifndef RAPIDXML_UTILS_HPP_INCLUDED +#define RAPIDXML_UTILS_HPP_INCLUDED + +// Copyright (C) 2006, 2009 Marcin Kalicinski +// Version 1.13 +// Revision $DateTime: 2009/05/13 01:46:17 $ +//! \file rapidxml_utils.hpp This file contains high-level rapidxml utilities that can be useful +//! in certain simple scenarios. They should probably not be used if maximizing performance is the main objective. + +#include "rapidxml.hpp" +#include +#include +#include +#include + +namespace rapidxml +{ + + //! Represents data loaded from a file + template + class file + { + + public: + + //! Loads file into the memory. Data will be automatically destroyed by the destructor. + //! \param filename Filename to load. + file(const char *filename) + { + using namespace std; + + // Open stream + basic_ifstream stream(filename, ios::binary); + if (!stream) + throw runtime_error(string("cannot open file ") + filename); + stream.unsetf(ios::skipws); + + // Determine stream size + stream.seekg(0, ios::end); + size_t size = stream.tellg(); + stream.seekg(0); + + // Load data and add terminating 0 + m_data.resize(size + 1); + stream.read(&m_data.front(), static_cast(size)); + m_data[size] = 0; + } + + //! Loads file into the memory. Data will be automatically destroyed by the destructor + //! \param stream Stream to load from + file(std::basic_istream &stream) + { + using namespace std; + + // Load data and add terminating 0 + stream.unsetf(ios::skipws); + m_data.assign(istreambuf_iterator(stream), istreambuf_iterator()); + if (stream.fail() || stream.bad()) + throw runtime_error("error reading stream"); + m_data.push_back(0); + } + + //! Gets file data. + //! \return Pointer to data of file. + Ch *data() + { + return &m_data.front(); + } + + //! Gets file data. + //! \return Pointer to data of file. + const Ch *data() const + { + return &m_data.front(); + } + + //! Gets file data size. + //! \return Size of file data, in characters. + std::size_t size() const + { + return m_data.size(); + } + + private: + + std::vector m_data; // File data + + }; + + //! Counts children of node. Time complexity is O(n). + //! \return Number of children of node + template + inline std::size_t count_children(xml_node *node) + { + xml_node *child = node->first_node(); + std::size_t count = 0; + while (child) + { + ++count; + child = child->next_sibling(); + } + return count; + } + + //! Counts attributes of node. Time complexity is O(n). + //! \return Number of attributes of node + template + inline std::size_t count_attributes(xml_node *node) + { + xml_attribute *attr = node->first_attribute(); + std::size_t count = 0; + while (attr) + { + ++count; + attr = attr->next_attribute(); + } + return count; + } + +} + +#endif diff --git a/sdk_core/include/livox_def.h b/sdk_core/include/livox_def.h index c57e270..bd37e7b 100644 --- a/sdk_core/include/livox_def.h +++ b/sdk_core/include/livox_def.h @@ -90,7 +90,7 @@ typedef enum { #pragma pack(1) #define LIVOX_SDK_MAJOR_VERSION 1 -#define LIVOX_SDK_MINOR_VERSION 1 +#define LIVOX_SDK_MINOR_VERSION 2 #define LIVOX_SDK_PATCH_VERSION 0 #define kBroadcastCodeSize 16 @@ -110,6 +110,14 @@ typedef struct { uint8_t reflectivity; /**< Reflectivity */ } LivoxRawPoint; +/** Spherical coordinate format. */ +typedef struct { + uint32_t depth; /**< Radial distance, Unit:mm */ + uint16_t theta; /**< Polar angle, Unit:0.01rad */ + uint16_t phi; /**< Azimuthal angle, Unit:0.01rad */ + uint8_t reflectivity; /**< Reflectivity */ +} LivoxSpherPoint; + /** Standard point cloud format */ typedef struct { float x; /**< X axis, Unit:m */ @@ -144,7 +152,7 @@ typedef struct { uint8_t handle; /**< Device handle. */ uint8_t slot; /**< Slot number used for connecting LiDAR. */ uint8_t id; /**< LiDAR id. */ - uint32_t type; /**< Device type, refer to \ref DeviceType. */ + uint8_t type; /**< Device type, refer to \ref DeviceType. */ uint16_t data_port; /**< Point cloud data UDP port. */ uint16_t cmd_port; /**< Control command UDP port. */ char ip[16]; /**< IP address. */ @@ -389,6 +397,14 @@ typedef struct { ReturnCode ret_state_list[1]; /**< Return code */ } HubRainFogSuppressResponse; +/** +* The response body of getting hub slots' power state. +*/ +typedef struct { + uint8_t ret_code; /**< Return code. */ + uint16_t slot_power_state; /**< Slot power status. */ +} HubQuerySlotPowerStatusResponse; + #pragma pack() #endif // LIVOX_DEF_H_ diff --git a/sdk_core/include/livox_sdk.h b/sdk_core/include/livox_sdk.h index 3271c49..2052b18 100644 --- a/sdk_core/include/livox_sdk.h +++ b/sdk_core/include/livox_sdk.h @@ -146,18 +146,21 @@ uint8_t QueryDeviceInformation(uint8_t handle, DeviceInformationCallback cb, voi /** * Callback function for receiving point cloud data. - * @param handle device handle. - * @param data device's data. - * @param data_num number of points in data. + * @param handle device handle. + * @param data device's data. + * @param data_num number of points in data. + * @param client_data user data associated with the command. */ -typedef void (*DataCallback)(uint8_t handle, LivoxEthPacket *data, uint32_t data_num); +typedef void (*DataCallback)(uint8_t handle, LivoxEthPacket *data, uint32_t data_num, void *client_data); /** * Set the callback to receive point cloud data. Only one callback is supported for a specific device. Set the point * cloud data callback before beginning sampling. + * @param handle device handle. * @param cb callback to receive point cloud data. + * @param client_data user data associated with the command. */ -void SetDataCallback(uint8_t handle, DataCallback cb); +void SetDataCallback(uint8_t handle, DataCallback cb, void *client_data); /** * Function type of callback with 1 byte of response. @@ -371,16 +374,11 @@ typedef void (*HubGetExtrinsicParameterCallback)(uint8_t status, /** * Get extrinsic parameters of LiDAR units connected to the Livox Hub. - * @param req the LiDAR units broadcast code list. - * @param length the request's length. * @param cb callback for the command. * @param client_data user data associated with the command. * @return kStatusSuccess on successful return, see \ref ResponseStatus for other error code. */ -uint8_t HubGetExtrinsicParameter(HubGetExtrinsicParameterRequest *req, - uint16_t length, - HubGetExtrinsicParameterCallback cb, - void *client_data); +uint8_t HubGetExtrinsicParameter(HubGetExtrinsicParameterCallback cb, void *client_data); /** * Turn on or off the calculation of extrinsic parameters. @@ -418,6 +416,24 @@ uint8_t HubRainFogSuppress(HubRainFogSuppressRequest *req, HubRainFogSuppressCallback cb, void *client_data); +/** +* @c HubQuerySlotPowerStatus response callback function. +* @param status kStatusSuccess on successful return, kStatusTimeout on timeout, see \ref ResponseStatus for other +* error code. +* @param handle device handle. +* @param response response from the device. +* @param client_data user data associated with the command. +*/ +typedef void(*HubQuerySlotPowerStatusCallback)(uint8_t status, uint8_t handle, HubQuerySlotPowerStatusResponse *response, void *client_data); + +/** +* Get the power supply state of each hub slot. +* @param cb callback for the command. +* @param client_data user data associated with the command. +* @return kStatusSuccess on successful return, see \ref ResponseStatus for other error code. +*/ +uint8_t HubQuerySlotPowerStatus(HubQuerySlotPowerStatusCallback cb, void *client_data); + /** * Start LiDAR sampling. * @param handle device handle. diff --git a/sdk_core/src/command_handler/command_impl.cpp b/sdk_core/src/command_handler/command_impl.cpp index eed8f36..81cb968 100644 --- a/sdk_core/src/command_handler/command_impl.cpp +++ b/sdk_core/src/command_handler/command_impl.cpp @@ -75,8 +75,8 @@ uint8_t GetConnectedDevices(DeviceInfo *devices, uint8_t *size) { return kStatusSuccess; } -void SetDataCallback(uint8_t handle, DataCallback cb) { - data_handler().AddDataListener(handle, cb); +void SetDataCallback(uint8_t handle, DataCallback cb, void *client_data) { + data_handler().AddDataListener(handle, cb, client_data); } uint8_t DeviceSampleControl(uint8_t handle, bool enable, CommonCommandCallback cb, void *data) { @@ -292,18 +292,15 @@ uint8_t HubSetExtrinsicParameter(HubSetExtrinsicParameterRequest *req, return result ? kStatusSuccess : kStatusFailure; } -uint8_t HubGetExtrinsicParameter(HubGetExtrinsicParameterRequest *req, - uint16_t length, - HubGetExtrinsicParameterCallback cb, - void *client_data) { +uint8_t HubGetExtrinsicParameter(HubGetExtrinsicParameterCallback cb, void *client_data) { if (device_manager().device_mode() != kDeviceModeHub) { return kStatusNotSupported; } bool result = command_handler().SendCommand(kHubDefaultHandle, kCommandSetHub, kCommandIDHubGetExtrinsicParameter, - (uint8_t *)req, - length, + NULL, + 0, MakeCommandCallback(cb, client_data)); return result ? kStatusSuccess : kStatusFailure; } @@ -350,3 +347,16 @@ uint8_t HubRainFogSuppress(HubRainFogSuppressRequest *req, MakeCommandCallback(cb, client_data)); return result ? kStatusSuccess : kStatusFailure; } + +uint8_t HubQuerySlotPowerStatus(HubQuerySlotPowerStatusCallback cb, void *client_data) { + if (device_manager().device_mode() != kDeviceModeHub) { + return kStatusNotSupported; + } + bool result = command_handler().SendCommand(kHubDefaultHandle, + kCommandSetHub, + kCommandIDHubQuerySlotPowerStatus, + NULL, + 0, + MakeCommandCallback(cb, client_data)); + return result ? kStatusSuccess : kStatusFailure; +} \ No newline at end of file diff --git a/sdk_core/src/command_handler/command_impl.h b/sdk_core/src/command_handler/command_impl.h index 8514a61..acdb234 100644 --- a/sdk_core/src/command_handler/command_impl.h +++ b/sdk_core/src/command_handler/command_impl.h @@ -164,6 +164,10 @@ typedef enum { * Hub command set, open or close the rain and fog mode of the connected Livox LiDAR. */ kCommandIDHubRainFogSuppression = 7, + /** + * Hub command set, get the power supply state of each hub slot. + */ + kCommandIDHubQuerySlotPowerStatus = 8, /** * ****************************************************** @@ -179,6 +183,7 @@ static const uint16_t HubCommandTimeout[kCommandIDHubCommandCount] = {KDefaultTi KDefaultTimeOut, KDefaultTimeOut, KDefaultTimeOut, + KDefaultTimeOut, KDefaultTimeOut}; /** diff --git a/sdk_core/src/data_handler/data_handler.cpp b/sdk_core/src/data_handler/data_handler.cpp index 679627f..a725e98 100644 --- a/sdk_core/src/data_handler/data_handler.cpp +++ b/sdk_core/src/data_handler/data_handler.cpp @@ -38,10 +38,11 @@ DataHandler &data_handler() { return handler; } -bool DataHandler::AddDataListener(uint8_t handle, const DataCallback &cb) { +bool DataHandler::AddDataListener(uint8_t handle, const DataCallback &cb, void *client_data) { if (handle >= callbacks_.size()) { return false; } + client_data_[handle] = client_data; callbacks_[handle] = cb; return true; } @@ -107,7 +108,7 @@ void DataHandler::OnDataCallback(uint8_t handle, void *data, uint16_t size) { //LOG_INFO(" timeStampType: {}", (uint32_t) (lidar_data->timestamp_type)); //LOG_INFO(" timeStamp: {}", (uint32_t) *(lidar_data->time_stamp)); //LOG_INFO(" dataType: {}", (uint16_t) lidar_data->data_type); - cb(handle, lidar_data, size); + cb(handle, lidar_data, size, client_data_[handle]); } } diff --git a/sdk_core/src/data_handler/data_handler.h b/sdk_core/src/data_handler/data_handler.h index 95dfab3..1b792d6 100644 --- a/sdk_core/src/data_handler/data_handler.h +++ b/sdk_core/src/data_handler/data_handler.h @@ -38,7 +38,7 @@ class DataHandlerImpl; class DataHandler : public noncopyable { public: - typedef boost::function DataCallback; + typedef boost::function DataCallback; public: DataHandler() : mem_pool_(NULL) {} @@ -49,13 +49,13 @@ class DataHandler : public noncopyable { bool AddDevice(const DeviceInfo &info); void RemoveDevice(uint8_t handle); - bool AddDataListener(uint8_t handle, const DataCallback &cb); - // bool RemoveDataListener(uint8_t handle); + bool AddDataListener(uint8_t handle, const DataCallback &cb, void *client_data); void OnDataCallback(uint8_t handle, void *data, uint16_t size); private: apr_pool_t *mem_pool_; boost::array callbacks_; + boost::array client_data_; boost::scoped_ptr impl_; }; diff --git a/sdk_core/src/device_manager.cpp b/sdk_core/src/device_manager.cpp index faed1d1..924a02f 100644 --- a/sdk_core/src/device_manager.cpp +++ b/sdk_core/src/device_manager.cpp @@ -214,8 +214,6 @@ void DeviceManager::UpdateDeviceState(uint8_t handle, const HeartbeatResponse &r if (handle >= devices_.size()) { return; } - - //LOG_INFO(" Update State {}, connect {}", (uint16_t)response.state, devices_[handle].connected); bool update = false; DeviceInfo &info = devices_[handle].info; if (info.state != response.state) {